HomeSort by: relevance | last modified time | path
    Searched defs:TuneCPU (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetOptions.h 39 std::string TuneCPU;
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVTargetMachine.cpp 83 std::string TuneCPU =
87 std::string Key = CPU + TuneCPU + FS;
104 I = std::make_unique<RISCVSubtarget>(TargetTriple, CPU, TuneCPU, FS, ABIName, *this);
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSubtargetInfo.h 78 std::string TuneCPU; // CPU being tuned for.
96 MCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef TuneCPU,
109 StringRef getTuneCPU() const { return TuneCPU; }
127 void InitMCProcessorInfo(StringRef CPU, StringRef TuneCPU, StringRef FS);
130 /// Set the features to the default for the given CPU and TuneCPU, with ano
132 void setDefaultFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86TargetMachine.cpp 248 StringRef TuneCPU =
289 Key += TuneCPU;
318 TargetTriple, CPU, TuneCPU, FS, *this,
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Clang.cpp 2077 std::string TuneCPU;
2083 TuneCPU = std::string(Name);
2086 if (!TuneCPU.empty()) {
2088 CmdArgs.push_back(Args.MakeArgString(TuneCPU));
2188 std::string TuneCPU;
2191 TuneCPU = "generic";
2200 TuneCPU = std::string(Name);
2202 TuneCPU = std::string(Name);
2205 if (!TuneCPU.empty()) {
2207 CmdArgs.push_back(Args.MakeArgString(TuneCPU));
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenModule.cpp 1919 StringRef TuneCPU = getTarget().getTargetOpts().TuneCPU;
1943 TuneCPU = ""; // Clear the tune CPU.
1947 TuneCPU = ParsedAttr.Tune;
1959 if (!TuneCPU.empty()) {
1960 Attrs.addAttribute("tune-cpu", TuneCPU);

Completed in 47 milliseconds