HomeSort by: relevance | last modified time | path
    Searched refs:FullFS (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCTargetMachine.cpp 172 std::string FullFS = std::string(FS);
176 if (!FullFS.empty())
177 FullFS = "+64bit," + FullFS;
179 FullFS = "+64bit";
183 if (!FullFS.empty())
184 FullFS = "+crbits," + FullFS;
186 FullFS = "+crbits";
190 if (!FullFS.empty()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86Subtarget.cpp 245 std::string FullFS = X86_MC::ParseX86Triple(TargetTriple);
246 assert(!FullFS.empty() && "Failed to parse X86 triple");
249 FullFS = (Twine(FullFS) + "," + FS).str();
252 ParseSubtargetFeatures(CPU, TuneCPU, FullFS);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 83 std::string FullFS = std::string(FS);
86 if (!FullFS.empty())
87 FullFS = "+aix," + FullFS;
89 FullFS = "+aix";
92 return createPPCMCSubtargetInfoImpl(TT, CPU, /*TuneCPU*/ CPU, FullFS);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUSubtarget.cpp 70 SmallString<256> FullFS("+promote-alloca,");
71 FullFS += FS;
72 ParseSubtargetFeatures(GPU, /*TuneCPU*/ GPU, FullFS);
92 SmallString<256> FullFS("+promote-alloca,+load-store-opt,+enable-ds128,");
96 FullFS += "+flat-for-global,+unaligned-access-mode,+trap-handler,";
98 FullFS += "+enable-prt-strict-null,"; // This is overridden by a disable in FS
103 FullFS += "-wavefrontsize16,";
105 FullFS += "-wavefrontsize32,";
107 FullFS += "-wavefrontsize64,";
110 FullFS += FS
    [all...]

Completed in 28 milliseconds