/external/llvm-project/llvm/lib/MC/ |
D | MCSubtargetInfo.cpp | 150 static FeatureBitset getFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS, in getFeatures() argument 181 if (!TuneCPU.empty()) { in getFeatures() 182 const SubtargetSubTypeKV *CPUEntry = Find(TuneCPU, ProcDesc); in getFeatures() 188 } else if (TuneCPU != CPU) { in getFeatures() 189 errs() << "'" << TuneCPU << "' is not a recognized processor for this " in getFeatures() 208 void MCSubtargetInfo::InitMCProcessorInfo(StringRef CPU, StringRef TuneCPU, in InitMCProcessorInfo() argument 210 FeatureBits = getFeatures(CPU, TuneCPU, FS, ProcDesc, ProcFeatures); in InitMCProcessorInfo() 211 if (!TuneCPU.empty()) in InitMCProcessorInfo() 212 CPUSchedModel = &getSchedModelForCPU(TuneCPU); in InitMCProcessorInfo() 217 void MCSubtargetInfo::setDefaultFeatures(StringRef CPU, StringRef TuneCPU, in setDefaultFeatures() argument [all …]
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86Subtarget.cpp | 237 void X86Subtarget::initSubtargetFeatures(StringRef CPU, StringRef TuneCPU, in initSubtargetFeatures() argument 242 if (TuneCPU.empty()) in initSubtargetFeatures() 243 TuneCPU = "i586"; // FIXME: "generic" is more modern than llc tests expect. in initSubtargetFeatures() 252 ParseSubtargetFeatures(CPU, TuneCPU, FullFS); in initSubtargetFeatures() 287 StringRef TuneCPU, in initializeSubtargetDependencies() argument 289 initSubtargetFeatures(CPU, TuneCPU, FS); in initializeSubtargetDependencies() 293 X86Subtarget::X86Subtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU, in X86Subtarget() argument 298 : X86GenSubtargetInfo(TT, CPU, TuneCPU, FS), in X86Subtarget() 303 InstrInfo(initializeSubtargetDependencies(CPU, TuneCPU, FS)), in X86Subtarget()
|
D | X86Subtarget.h | 535 X86Subtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU, StringRef FS, 569 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS); 581 StringRef TuneCPU, 583 void initSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
D | X86TargetMachine.cpp | 242 StringRef TuneCPU = in getSubtargetImpl() local 284 Key += TuneCPU; in getSubtargetImpl() 314 TargetTriple, CPU, TuneCPU, FS, *this, in getSubtargetImpl()
|
/external/llvm-project/llvm/lib/Target/RISCV/ |
D | RISCVSubtarget.cpp | 33 const Triple &TT, StringRef CPU, StringRef TuneCPU, StringRef FS, StringRef ABIName) { in initializeSubtargetDependencies() argument 37 std::string TuneCPUName = std::string(TuneCPU); in initializeSubtargetDependencies() 54 StringRef TuneCPU, StringRef FS, in RISCVSubtarget() argument 56 : RISCVGenSubtargetInfo(TT, CPU, TuneCPU, FS), in RISCVSubtarget() 58 FrameLowering(initializeSubtargetDependencies(TT, CPU, TuneCPU, FS, ABIName)), in RISCVSubtarget()
|
D | RISCVSubtarget.h | 76 StringRef TuneCPU, 82 RISCVSubtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU, 87 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
D | RISCVTargetMachine.cpp | 84 std::string TuneCPU = in getSubtargetImpl() local 88 std::string Key = CPU + TuneCPU + FS; in getSubtargetImpl() 105 I = std::make_unique<RISCVSubtarget>(TargetTriple, CPU, TuneCPU, FS, ABIName, *this); in getSubtargetImpl()
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCSubtargetInfo.h | 78 std::string TuneCPU; // CPU being tuned for. variable 95 MCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef TuneCPU, 108 StringRef getTuneCPU() const { return TuneCPU; } in getTuneCPU() 124 void InitMCProcessorInfo(StringRef CPU, StringRef TuneCPU, StringRef FS); 129 void setDefaultFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/llvm/lib/Support/ |
D | TargetParser.cpp | 273 StringRef resolveTuneCPUAlias(StringRef TuneCPU, bool IsRV64) { in resolveTuneCPUAlias() argument 274 return llvm::StringSwitch<StringRef>(TuneCPU) in resolveTuneCPUAlias() 277 .Default(TuneCPU); in resolveTuneCPUAlias() 280 CPUKind parseTuneCPUKind(StringRef TuneCPU, bool IsRV64) { in parseTuneCPUKind() argument 281 TuneCPU = resolveTuneCPUAlias(TuneCPU, IsRV64); in parseTuneCPUKind() 283 return llvm::StringSwitch<CPUKind>(TuneCPU) in parseTuneCPUKind()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | TargetSubtargetInfo.cpp | 18 const Triple &TT, StringRef CPU, StringRef TuneCPU, StringRef FS, in TargetSubtargetInfo() argument 23 : MCSubtargetInfo(TT, CPU, TuneCPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {} in TargetSubtargetInfo()
|
/external/llvm-project/llvm/lib/Target/XCore/ |
D | XCoreSubtarget.h | 47 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/llvm/lib/Target/ARC/ |
D | ARCSubtarget.h | 46 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/clang/include/clang/Basic/ |
D | TargetOptions.h | 39 std::string TuneCPU; variable
|
/external/llvm-project/llvm/lib/Target/Lanai/ |
D | LanaiSubtarget.h | 40 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/llvm/lib/Target/VE/ |
D | VESubtarget.h | 69 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/llvm/lib/Target/MSP430/ |
D | MSP430Subtarget.h | 57 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/llvm/lib/Target/BPF/ |
D | BPFSubtarget.h | 70 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/llvm/lib/Target/NVPTX/ |
D | NVPTXSubtarget.h | 86 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/llvm/lib/Target/WebAssembly/ |
D | WebAssemblySubtarget.h | 108 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/llvm/lib/Target/AVR/ |
D | AVRSubtarget.h | 49 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/llvm/lib/Target/Sparc/ |
D | SparcSubtarget.h | 104 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | TargetParser.h | 172 StringRef resolveTuneCPUAlias(StringRef TuneCPU, bool IsRV64);
|
/external/llvm-project/llvm/lib/Target/SystemZ/ |
D | SystemZSubtarget.h | 115 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | TargetSubtargetInfo.h | 61 TargetSubtargetInfo(const Triple &TT, StringRef CPU, StringRef TuneCPU,
|
/external/llvm-project/clang/test/Modules/ |
D | module_file_info.m | 31 // CHECK: TuneCPU:
|