| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | R600Processors.td | 1 //===-- R600Processors.td - R600 Processor definitions --------------------===// 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, 111 def : Processor<"cypress", R600_VLIW5_Itin, [all …]
|
| /openbsd-src/gnu/llvm/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() 41 proc->~Processor(); in ProcDestroy() 45 void ProcWire(Processor *proc, ThreadState *thr) { in ProcWire() 52 void ProcUnwire(Processor *proc, ThreadState *thr) { in ProcUnwire()
|
| H A D | tsan_sync.h | 106 uptr FreeBlock(Processor *proc, uptr p, bool reset); 107 bool FreeRange(Processor *proc, uptr p, uptr sz, bool reset); 108 void ResetRange(Processor *proc, uptr p, uptr sz, bool reset); 124 void OnProcIdle(Processor *proc);
|
| H A D | tsan_sync.cpp | 59 uptr MetaMap::FreeBlock(Processor *proc, uptr p, bool reset) { in FreeBlock() 68 bool MetaMap::FreeRange(Processor *proc, uptr p, uptr sz, bool reset) { in FreeRange() 108 void MetaMap::ResetRange(Processor *proc, uptr p, uptr sz, bool reset) { in ResetRange() 277 void MetaMap::OnProcIdle(Processor *proc) { in OnProcIdle()
|
| H A D | tsan_mman.h | 24 void AllocatorProcStart(Processor *proc); 25 void AllocatorProcFinish(Processor *proc);
|
| H A D | tsan_rtl.h | 113 struct Processor { struct 215 Processor *proc1; 217 Processor *proc() { return proc1; } in proc() 219 Processor *proc(); 571 Processor *ProcCreate(); 572 void ProcDestroy(Processor *proc); 573 void ProcWire(Processor *proc, ThreadState *thr); 574 void ProcUnwire(Processor *proc, ThreadState *thr);
|
| H A D | tsan_mman.cpp | 59 Processor *proc; 149 void AllocatorProcStart(Processor *proc) { in AllocatorProcStart() 154 void AllocatorProcFinish(Processor *proc) { in AllocatorProcFinish()
|
| /openbsd-src/gnu/llvm/clang/lib/Basic/ |
| H A D | TargetID.cpp | 39 llvm::StringRef Processor) { in getAllPossibleTargetIDFeatures() argument 42 return getAllPossibleAMDGPUTargetIDFeatures(T, Processor); in getAllPossibleTargetIDFeatures() 48 llvm::StringRef Processor) { in getCanonicalProcessorName() argument 50 return llvm::AMDGPU::getCanonicalArchName(T, Processor); in getCanonicalProcessorName() 51 return Processor; in getCanonicalProcessorName() 69 llvm::StringRef Processor; in parseTargetIDWithFormatCheckingOnly() local 75 Processor = Split.first; in parseTargetIDWithFormatCheckingOnly() 76 if (Processor.empty()) in parseTargetIDWithFormatCheckingOnly() 81 return Processor; in parseTargetIDWithFormatCheckingOnly() 101 return Processor; in parseTargetIDWithFormatCheckingOnly() [all …]
|
| /openbsd-src/gnu/llvm/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 …]
|
| /openbsd-src/sys/dev/eisa/ |
| H A D | eisadevs | 187 product AIR 1001 AIR P6NDP PCI/EISA Dual-Pentium Processor System Board 198 product ALR 3000 80486 Processor Module 199 product ALR 3010 Pentium Processor Board 205 product ALR B0A0 Primary System Processor Board - 80486DX2/66 206 product ALR B0B0 Secondary System Processor Board - 80486DX2/66 336 product CPQ 5000 386/33 System Processor Board used as Secondary 337 product CPQ 5281 486/50 System Processor Board used as Secondary 338 product CPQ 5282 486/50 System Processor Board used as Secondary 339 product CPQ 5287 5/66 System Processor Board used as Secondary 340 product CPQ 528F 486DX2/66 System Processor Board used as Secondary [all …]
|
| /openbsd-src/gnu/llvm/llvm/utils/release/ |
| H A D | bump-version.py | 14 class Processor: class 57 class CMakeProcessor(Processor): 92 class GNIProcessor(Processor): 108 class LitProcessor(Processor): 121 class LibCXXProcessor(Processor):
|
| /openbsd-src/gnu/llvm/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
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | wordprocessors | 107 # Hangul (Korean) Word Processor File 108 0 string HWP\ Document\ File Hangul (Korean) Word Processor File 3.0 110 512 string R\0o\0o\0t\0 Hangul (Korean) Word Processor File 2000 135 # ichitaro456: file(1) magic for Just System Word Processor Ichitaro 142 >43 byte 0x14 Just System Word Processor Ichitaro v4 147 >43 byte 0x15 Just System Word Processor Ichitaro v5 151 >43 byte 0x16 Just System Word Processor Ichitaro v6
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/tsan/go/ |
| H A D | tsan_go.cpp | 124 static Processor* get_cur_proc() { in get_cur_proc() 131 Processor *proc; in get_cur_proc() 136 Processor *ThreadState::proc() { in proc() 148 void __tsan_init(ThreadState **thrp, Processor **procp, in __tsan_init() 232 void __tsan_proc_create(Processor **pproc) { in __tsan_proc_create() 236 void __tsan_proc_destroy(Processor *proc) { in __tsan_proc_destroy()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUBaseInfo.cpp | 726 std::string Processor; in toString() local 731 Processor = STI.getCPU().str(); in toString() 733 Processor = (Twine("gfx") + Twine(Version.Major) + Twine(Version.Minor) + in toString() 743 if (Processor == "gfx600") { in toString() 744 } else if (Processor == "gfx601") { in toString() 745 } else if (Processor == "gfx602") { in toString() 746 } else if (Processor == "gfx700") { in toString() 747 } else if (Processor == "gfx701") { in toString() 748 } else if (Processor == "gfx702") { in toString() 749 } else if (Processor == "gfx703") { in toString() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/ |
| H A D | PPC.td | 529 def : Processor<"generic", G3Itineraries, [Directive32, FeatureHardFloat, 539 def : Processor<"601", G3Itineraries, [Directive601, FeatureFPU]>; 540 def : Processor<"602", G3Itineraries, [Directive602, FeatureFPU, 542 def : Processor<"603", G3Itineraries, [Directive603, 545 def : Processor<"603e", G3Itineraries, [Directive603, 548 def : Processor<"603ev", G3Itineraries, [Directive603, 551 def : Processor<"604", G3Itineraries, [Directive604, 554 def : Processor<"604e", G3Itineraries, [Directive604, 557 def : Processor<"620", G3Itineraries, [Directive620, 560 def : Processor<"750", G4Itineraries, [Directive750, [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | TargetID.h | 27 llvm::StringRef Processor); 47 std::string getCanonicalTargetID(llvm::StringRef Processor,
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/ELFRelocs/ |
| H A D | VE.def | 9 // Processor Supplement 11 // Processor Supplement
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/ |
| H A D | CMakeLists.txt | 1 option(LLDB_BUILD_INTEL_PT "Enable Building of Intel(R) Processor Trace Tool" OFF)
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/xray/ |
| H A D | xray_log_interface.cpp | 195 void (*Processor)(const char *, XRayBuffer)) XRAY_NEVER_INSTRUMENT { in __xray_log_process_buffers() 205 (*Processor)(Mode, Buffer); in __xray_log_process_buffers()
|
| /openbsd-src/distrib/notes/alpha/ |
| H A D | whatis | 5 well as OEM motherboards designed by Samsung and Alpha Processor, Inc.
|
| /openbsd-src/gnu/llvm/compiler-rt/include/xray/ |
| H A D | xray_log_interface.h | 352 XRayLogFlushStatus __xray_log_process_buffers(void (*Processor)(const char *,
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARC/ |
| H A D | ARC.td | 30 : Processor<Name, NoItineraries, Features>;
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/XCore/ |
| H A D | XCore.td | 34 : Processor<Name, NoItineraries, Features>;
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Xtensa/ |
| H A D | Xtensa.td | 28 : Processor<Name, NoItineraries, Features>;
|