| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | R600Processors.td | 70 def : Processor<"r600", R600_VLIW5_Itin, 74 def : Processor<"r630", R600_VLIW5_Itin, 78 def : Processor<"rs880", R600_VLIW5_Itin, 82 def : Processor<"rv670", R600_VLIW5_Itin, 90 def : Processor<"rv710", R600_VLIW5_Itin, 94 def : Processor<"rv730", R600_VLIW5_Itin, 98 def : Processor<"rv770", R600_VLIW5_Itin, 106 def : Processor<"cedar", R600_VLIW5_Itin, 124 def : Processor<"sumo", R600_VLIW5_Itin, 132 def : Processor<"barts", R600_VLIW5_Itin, [all …]
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_rtl_proc.cpp | 20 Processor *ProcCreate() { in ProcCreate() 21 void *mem = InternalAlloc(sizeof(Processor)); in ProcCreate() 22 internal_memset(mem, 0, sizeof(Processor)); in ProcCreate() 23 Processor *proc = new(mem) Processor; in ProcCreate() 33 void ProcDestroy(Processor *proc) { in ProcDestroy() 42 proc->~Processor(); in ProcDestroy() 46 void ProcWire(Processor *proc, ThreadState *thr) { in ProcWire() 53 void ProcUnwire(Processor *proc, ThreadState *thr) { in ProcUnwire()
|
| H A D | tsan_sync.h | 68 void Reset(Processor *proc); 113 uptr FreeBlock(Processor *proc, uptr p); 114 bool FreeRange(Processor *proc, uptr p, uptr sz); 115 void ResetRange(Processor *proc, uptr p, uptr sz); 124 void OnProcIdle(Processor *proc);
|
| H A D | tsan_sync.cpp | 35 void SyncVar::Reset(Processor *proc) { in Reset() 70 uptr MetaMap::FreeBlock(Processor *proc, uptr p) { in FreeBlock() 79 bool MetaMap::FreeRange(Processor *proc, uptr p, uptr sz) { in FreeRange() 118 void MetaMap::ResetRange(Processor *proc, uptr p, uptr sz) { in ResetRange() 288 void MetaMap::OnProcIdle(Processor *proc) { in OnProcIdle()
|
| H A D | tsan_mman.h | 24 void AllocatorProcStart(Processor *proc); 25 void AllocatorProcFinish(Processor *proc);
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Basic/ |
| H A D | TargetID.cpp | 38 llvm::StringRef Processor) { in getAllPossibleTargetIDFeatures() argument 50 return Processor; in getCanonicalProcessorName() 68 llvm::StringRef Processor; in parseTargetIDWithFormatCheckingOnly() local 74 Processor = Split.first; in parseTargetIDWithFormatCheckingOnly() 75 if (Processor.empty()) in parseTargetIDWithFormatCheckingOnly() 80 return Processor; in parseTargetIDWithFormatCheckingOnly() 100 return Processor; in parseTargetIDWithFormatCheckingOnly() 112 llvm::StringRef Processor = in parseTargetID() local 114 if (Processor.empty()) in parseTargetID() 125 return Processor; in parseTargetID() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| H A D | Sparc.td | 88 : Processor<Name, NoItineraries, Features>; 129 def : Processor<"leon2", LEON2Itineraries, 133 // TO DO: Place-holder: Processor specific features will be added *very* soon here. 134 def : Processor<"at697e", LEON2Itineraries, 138 // TO DO: Place-holder: Processor specific features will be added *very* soon here. 139 def : Processor<"at697f", LEON2Itineraries, 144 def : Processor<"leon3", LEON3Itineraries, 149 def : Processor<"ut699", LEON3Itineraries, 154 def : Processor<"gr712rc", LEON3Itineraries, 158 def : Processor<"leon4", LEON4Itineraries, [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/DumpTool/ |
| H A D | ClangSrcLocDump.cpp | 46 ASTSrcLocGenerationAction() : Processor(JsonOutputPath) {} in ASTSrcLocGenerationAction() 51 Processor.generateEmpty(); in ExecuteAction() 53 Processor.generate(); in ExecuteAction() 59 return Processor.createASTConsumer(Compiler, File); in CreateASTConsumer() 63 ASTSrcLocProcessor Processor; member in ASTSrcLocGenerationAction
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUBaseInfo.cpp | 424 std::string Processor = ""; in toString() local 429 Processor = STI.getCPU().str(); in toString() 441 if (Processor == "gfx600") { in toString() 442 } else if (Processor == "gfx601") { in toString() 443 } else if (Processor == "gfx602") { in toString() 444 } else if (Processor == "gfx700") { in toString() 465 Processor = "gfx901"; in toString() 468 Processor = "gfx903"; in toString() 471 Processor = "gfx905"; in toString() 474 Processor = "gfx907"; in toString() [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/gpu/ |
| H A D | arm,mali-utgard.yaml | 69 - gp # Geometry Processor interrupt 70 - gpmmu # Geometry Processor MMU interrupt 71 - pp # Pixel Processor broadcast interrupt (mali-450 only) 72 - pp0 # Pixel Processor X interrupt (X from 0 to 7) 73 - ppmmu0 # Pixel Processor X MMU interrupt (X from 0 to 7)
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/media/ |
| H A D | mediatek-vpu.txt | 1 * Mediatek Video Processor Unit 3 Video Processor Unit is a HW video controller. It controls HW Codec including 4 H.264/VP8/VP9 Decode, H.264/VP8 Encode and Image Processor (scale/rotate/color convert).
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/go/ |
| H A D | tsan_go.cpp | 126 static Processor* get_cur_proc() { in get_cur_proc() 133 Processor *proc; in get_cur_proc() 138 Processor *ThreadState::proc() { in proc() 151 void __tsan_init(ThreadState **thrp, Processor **procp, in __tsan_init() 235 void __tsan_proc_create(Processor **pproc) { in __tsan_proc_create() 239 void __tsan_proc_destroy(Processor *proc) { in __tsan_proc_destroy()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/sound/ |
| H A D | zl38060.yaml | 7 title: ZL38060 Connected Home Audio Processor from Microsemi. 10 The ZL38060 is a "Connected Home Audio Processor" from Microsemi, 11 which consists of a Digital Signal Processor (DSP), several Digital
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPC.td | 480 def : Processor<"601", G3Itineraries, [Directive601, FeatureFPU]>; 481 def : Processor<"602", G3Itineraries, [Directive602, FeatureFPU, 483 def : Processor<"603", G3Itineraries, [Directive603, 486 def : Processor<"603e", G3Itineraries, [Directive603, 489 def : Processor<"603ev", G3Itineraries, [Directive603, 492 def : Processor<"604", G3Itineraries, [Directive604, 495 def : Processor<"604e", G3Itineraries, [Directive604, 498 def : Processor<"620", G3Itineraries, [Directive620, 501 def : Processor<"750", G4Itineraries, [Directive750, 504 def : Processor<"g3", G3Itineraries, [Directive750, [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TargetID.h | 26 llvm::StringRef Processor); 46 std::string getCanonicalTargetID(llvm::StringRef Processor,
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/leds/backlight/ |
| H A D | zii,rave-sp-backlight.txt | 1 Zodiac Inflight Innovations RAVE Supervisory Processor Backlight Bindings 4 backlight functionality of RAVE Supervisory Processor. It is expected
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/input/ |
| H A D | zii,rave-sp-pwrbutton.txt | 1 Zodiac Inflight Innovations RAVE Supervisory Processor Power Button Bindings 4 button functionality of RAVE Supervisory Processor. It is expected
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/mailbox/ |
| H A D | qcom-ipcc.yaml | 7 title: Qualcomm Technologies, Inc. Inter-Processor Communication Controller 13 The Inter-Processor Communication Controller (IPCC) is a centralized hardware 16 entity on the Application Processor Subsystem (APSS) that wants to listen to
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/ |
| H A D | VE.def | 9 // Processor Supplement 11 // Processor Supplement
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/nds32/ |
| H A D | cpus.txt | 1 * Andestech Processor Binding 4 representation of a Andestech Processor Core, which is the root node in the
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/watchdog/ |
| H A D | zii,rave-sp-wdt.txt | 1 Zodiac Inflight Innovations RAVE Supervisory Processor Watchdog Bindings 4 watchdog functionality of RAVE Supervisory Processor. It is expected
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | zii,rave-sp.txt | 1 Zodiac Inflight Innovations RAVE Supervisory Processor 3 RAVE Supervisory Processor communicates with SoC over UART. It is
|
| /freebsd-13.1/sys/contrib/dev/acpica/components/utilities/ |
| H A D | utcopy.c | 325 ExternalObject->Processor.ProcId = in AcpiUtCopyIsimpleToEsimple() 326 InternalObject->Processor.ProcId; in AcpiUtCopyIsimpleToEsimple() 327 ExternalObject->Processor.PblkAddress = in AcpiUtCopyIsimpleToEsimple() 328 InternalObject->Processor.Address; in AcpiUtCopyIsimpleToEsimple() 329 ExternalObject->Processor.PblkLength = in AcpiUtCopyIsimpleToEsimple() 330 InternalObject->Processor.Length; in AcpiUtCopyIsimpleToEsimple()
|
| /freebsd-13.1/sys/dev/acpica/ |
| H A D | acpi_throttle.c | 158 if ((obj->Processor.PblkAddress && obj->Processor.PblkLength >= 4) || in acpi_throttle_identify() 211 sc->cpu_p_blk = obj->Processor.PblkAddress; in acpi_throttle_attach() 212 sc->cpu_p_blk_len = obj->Processor.PblkLength; in acpi_throttle_attach()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/firmware/ |
| H A D | nvidia,tegra210-bpmp.txt | 1 NVIDIA Tegra210 Boot and Power Management Processor (BPMP) 3 The Boot and Power Management Processor (BPMP) is a co-processor found
|