Searched refs:getCPU (Results 1 - 24 of 24) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRTargetMachine.cpp31 static StringRef getCPU(StringRef CPU) { function in namespace:llvm
49 : LLVMTargetMachine(T, AVRDataLayout, TT, getCPU(CPU), FS, Options,
52 SubTarget(TT, std::string(getCPU(CPU)), std::string(FS), *this) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCTargetDesc.cpp404 auto Existing = ArchSubtarget.find(std::string(STI->getCPU()));
507 if (STI->getCPU().contains("t")) {
510 STI->getCPU().substr(0, STI->getCPU().size() - 1), FS);
512 ArchSubtarget[std::string(STI->getCPU())] =
529 auto F = ElfFlags.find(STI.getCPU());
H A DHexagonMCDuplexInfo.cpp640 if (STI.getCPU().equals_lower("hexagonv5") ||
641 STI.getCPU().equals_lower("hexagonv55") ||
642 STI.getCPU().equals_lower("hexagonv60")) {
H A DHexagonAsmBackend.cpp779 StringRef CPUString = Hexagon_MC::selectHexagonCPU(STI.getCPU());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.h118 StringRef getCPU() const { return CPU; } function in class:llvm::LLVMDisasmContext
H A DDisassembler.cpp173 if (DC->getCPU().empty())
178 InstrItineraryData IID = STI->getInstrItineraryForCPU(DC->getCPU());
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DMips.h174 const std::string &getCPU() const { return CPU; } function in class:clang::targets::MipsTargetInfo
180 CPU = getCPU();
H A DMips.cpp63 return llvm::StringSwitch<unsigned>(getCPU())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.cpp241 auto Version = getIsaVersion(STI->getCPU());
338 IsaVersion Version = getIsaVersion(STI->getCPU());
351 IsaVersion Version = getIsaVersion(STI->getCPU());
361 IsaVersion Version = getIsaVersion(STI->getCPU());
372 IsaVersion Version = getIsaVersion(STI->getCPU());
391 IsaVersion Version = getIsaVersion(STI->getCPU());
409 IsaVersion Version = getIsaVersion(STI->getCPU());
503 IsaVersion Version = getIsaVersion(STI->getCPU());
539 IsaVersion Version = getIsaVersion(STI->getCPU());
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h105 StringRef getCPU() const { return CPU; } function in class:llvm::MCSubtargetInfo
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMTargetStreamer.cpp120 if (STI.getCPU() == "xscale")
165 const StringRef CPUString = STI.getCPU();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsAsmBackend.cpp589 STI.getCPU(), Options);
590 return new MipsAsmBackend(T, MRI, STI.getTargetTriple(), STI.getCPU(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMCInstLower.cpp326 if (!MI->isPseudo() && STI.isCPUStringValid(STI.getCPU())) {
H A DAMDGPUAsmPrinter.cpp158 IsaVersion Version = getIsaVersion(getGlobalSTI()->getCPU());
1127 if (getIsaVersion(getGlobalSTI()->getCPU()).Major >= 10) {
H A DSIMemoryLegalizer.cpp655 IV = getIsaVersion(ST.getCPU());
H A DGCNHazardRecognizer.cpp969 const AMDGPU::IsaVersion IV = AMDGPU::getIsaVersion(ST.getCPU());
H A DSIInsertWaitcnts.cpp1495 IV = AMDGPU::getIsaVersion(ST->getCPU());
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java231 out.printf("%3s %-41s ", data.getCPU(),
240 data.getCPU(), probe.getID(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SIMDInstrOpt.cpp222 std::string Subtarget = std::string(SchedModel.getSubtargetInfo()->getCPU());
292 std::string(SchedModel.getSubtargetInfo()->getCPU());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUTargetStreamer.cpp264 IsaVersion IVersion = getIsaVersion(STI.getCPU());
405 EFlags |= getElfMach(STI.getCPU());
H A DAMDGPUInstPrinter.cpp1336 AMDGPU::IsaVersion ISA = AMDGPU::getIsaVersion(STI.getCPU());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp1128 AMDGPU::IsaVersion ISA = AMDGPU::getIsaVersion(getSTI().getCPU());
2368 if (AMDGPU::getIsaVersion(getSTI().getCPU()).Major < 6)
3807 IsaVersion Version = getIsaVersion(getSTI().getCPU());
3855 IsaVersion IVersion = getIsaVersion(getSTI().getCPU());
4149 AMDGPU::IsaVersion ISA = AMDGPU::getIsaVersion(getSTI().getCPU());
5085 AMDGPU::IsaVersion ISA = AMDGPU::getIsaVersion(getSTI().getCPU());
5121 AMDGPU::IsaVersion ISA = AMDGPU::getIsaVersion(getSTI().getCPU());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp1344 (Subtarget->getCPU().empty() || Subtarget->getCPU() == "pentium3")) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp531 sti.getCPU(), Options)) {
566 if (getSTI().getCPU() == "mips64r6" && inMicroMipsMode())

Completed in 354 milliseconds