HomeSort by relevance Sort by last modified time
    Searched refs:MCpu (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 88 void setCpu(const char *MCpu) { this->MCpu = MCpu; }
220 std::string MCpu;
ThinLTOCodeGenerator.h 37 std::string MCpu;
160 void setCpu(std::string Cpu) { TMBuilder.MCpu = std::move(Cpu); }
  /external/llvm/lib/LTO/
LTOCodeGenerator.cpp 341 if (MCpu.empty() && Triple.isOSDarwin()) {
343 MCpu = "core2";
345 MCpu = "yonah";
347 MCpu = "cyclone";
356 MArch->createTargetMachine(TripleStr, MCpu, FeatureStr, Options,
ThinLTOCodeGenerator.cpp 424 if (TMBuilder.MCpu.empty() && TheTriple.isOSDarwin()) {
426 TMBuilder.MCpu = "core2";
428 TMBuilder.MCpu = "yonah";
430 TMBuilder.MCpu = "cyclone";
481 TheTriple.str(), MCpu, FeatureStr, Options, RelocModel,