Home
last modified time | relevance | path

Searched refs:Backend (Results 1 – 25 of 27) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DTypes.def38 … PP_C, INVALID, "i", phases::Compile, phases::Backend, phases::Assemble…
42 … PP_CUDA, INVALID, "cui", phases::Compile, phases::Backend, phases::Assemble…
45 … PP_HIP, INVALID, "cui", phases::Compile, phases::Backend, phases::Assemble…
48 …ut", PP_ObjC, INVALID, "mi", phases::Compile, phases::Backend, phases::Assemble…
49 … PP_ObjC_Alias, INVALID, "mi", phases::Compile, phases::Backend, phases::Assemble…
51 … PP_CXX, INVALID, "ii", phases::Compile, phases::Backend, phases::Assemble…
53 …tput", PP_ObjCXX, INVALID, "mii", phases::Compile, phases::Backend, phases::Assemble…
54 … PP_ObjCXX_Alias, INVALID, "mii", phases::Compile, phases::Backend, phases::Assemble…
72 … Ada, INVALID, nullptr, phases::Compile, phases::Backend, phases::Assemble…
75 … PP_Fortran, INVALID, nullptr, phases::Compile, phases::Backend, phases::Assemble…
[all …]
H A DPhases.h21 Backend, enumerator
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp231 BackendT Backend; member
266 Backend.init(common_flags()->allocator_release_to_os_interval_ms); in init()
352 BackendPtr = Backend.allocatePrimary(&TSD->Cache, ClassId); in allocate()
358 BackendPtr = Backend.allocateSecondary(BackendSize, Alignment); in allocate()
575 Backend.destroyCache(&TSD->Cache); in commitBack()
581 Backend.getStats(stats); in getStats()
600 Backend.printStats(); in printStats()
672 return Instance.Backend; in getBackend()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAssembler.h104 std::unique_ptr<MCAsmBackend> Backend; variable
229 MCAssembler(MCContext &Context, std::unique_ptr<MCAsmBackend> Backend,
294 MCAsmBackend *getBackendPtr() const { return Backend.get(); } in getBackendPtr()
300 MCAsmBackend &getBackend() const { return *Backend; } in getBackend()
/freebsd-13.1/sys/contrib/device-tree/Bindings/sound/
H A Damlogic,axg-sound-card.txt24 Required TDM Backend dai-link properties:
27 Optional TDM Backend dai-link properties:
40 Backend dai-link subnodes:
/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/
H A DPhases.cpp20 case Backend: return "backend"; in getPhaseName()
H A DTypes.cpp356 LastPhase = phases::Backend; in getCompilationPhases()
H A DDriver.cpp301 FinalPhase = phases::Backend; in getFinalPhase()
2809 if (CompileDeviceOnly || CurPhase == phases::Backend) { in getDeviceDependences()
2871 } else if (CurPhase > phases::Backend) { in getDeviceDependences()
2878 assert(CurPhase < phases::Backend && "Generating single CUDA " in getDeviceDependences()
2953 if (!Relocatable && CurPhase == phases::Backend && !EmitLLVM && in getDeviceDependences()
2975 C, Args, phases::Backend, CudaDeviceActions[I], in getDeviceDependences()
3982 case phases::Backend: { in ConstructPhaseAction()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h280 LTO(Config Conf, ThinBackend Backend = nullptr,
342 ThinLTOState(ThinBackend Backend);
344 ThinBackend Backend; member
/freebsd-13.1/sys/contrib/device-tree/Bindings/display/
H A Dallwinner,sun4i-a10-display-backend.yaml7 title: Allwinner A10 Display Engine Backend Device Tree Bindings
31 - description: Display Backend registers
66 - description: The Backend reset line
H A Dallwinner,sun4i-a10-display-engine.yaml27 Frontend 0 [0] ------- [0] Backend 0 [0] ------- [0] TCON 0
33 Frontend 1 [1] ------- [1] Backend 1 [1] ------- [1] TCON 1
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AVR/
H A DREADME.md7 * [Unresolved bugs](https://llvm.org/bugs/buglist.cgi?product=libraries&component=Backend%3A%20AVR&…
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticCategories.td11 class CatBackend : DiagCategory<"Backend Issue">;
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp307 ThinBackend Backend; in run() local
309 Backend = createWriteIndexesThinBackend(/* OldPrefix */ "", in run()
315 Backend = createInProcessThinBackend( in run()
317 LTO Lto(std::move(Conf), std::move(Backend)); in run()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectStreamer.cpp389 MCAsmBackend &Backend = Assembler.getBackend(); in emitInstructionImpl() local
390 if (!(Backend.mayNeedRelaxation(Inst, STI) || in emitInstructionImpl()
391 Backend.allowEnhancedRelaxation())) { in emitInstructionImpl()
404 while (Backend.mayNeedRelaxation(Relaxed, STI)) in emitInstructionImpl()
405 Backend.relaxInstruction(Relaxed, STI); in emitInstructionImpl()
H A DMCAssembler.cpp84 std::unique_ptr<MCAsmBackend> Backend, in MCAssembler() argument
87 : Context(Context), Backend(std::move(Backend)), in MCAssembler()
H A DXCOFFObjectWriter.cpp457 MCAsmBackend &Backend = Asm.getBackend(); in recordRelocation() local
458 bool IsPCRel = Backend.getFixupKindInfo(Fixup.getKind()).Flags & in recordRelocation()
H A DELFObjectWriter.cpp1406 MCAsmBackend &Backend = Asm.getBackend(); in recordRelocation() local
1407 bool IsPCRel = Backend.getFixupKindInfo(Fixup.getKind()).Flags & in recordRelocation()
/freebsd-13.1/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp515 LTO::ThinLTOState::ThinLTOState(ThinBackend Backend) in ThinLTOState() argument
516 : Backend(Backend), CombinedIndex(/*HaveGVs*/ false) { in ThinLTOState()
517 if (!Backend) in ThinLTOState()
518 this->Backend = in ThinLTOState()
522 LTO::LTO(Config Conf, ThinBackend Backend, in LTO() argument
526 ThinLTO(std::move(Backend)) {} in LTO()
1516 ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries, in runThinLTO()
/freebsd-13.1/sys/cam/ctl/
H A DREADME.ctl.txt101 LUN Backend Size (Blocks) BS Serial Number Device ID
119 LUN Backend Size (Blocks) BS Serial Number Device ID
/freebsd-13.1/contrib/ntp/sntp/libevent/
H A Dwhatsnew-2.0.txt282 3. Backend-specific and performance improvements.
H A Dwhatsnew-2.1.txt528 3. Backend/OS-specific improvements
/freebsd-13.1/contrib/libevent/
H A Dwhatsnew-2.0.txt282 3. Backend-specific and performance improvements.
H A Dwhatsnew-2.1.txt589 3. Backend/OS-specific improvements
/freebsd-13.1/usr.sbin/services_mkdb/
H A Dservices1712 hpiod 2208/tcp #HP I/O Backend
1713 hpiod 2208/udp #HP I/O Backend

12