Searched defs:triple (Results 1 - 6 of 6) sorted by relevance

/frameworks/compile/mclinker/tools/mcld/lib/
H A DTripleOptions.cpp23 llvm::cl::desc("Override target triple for module"));
45 /// This function simplifies cross-compiling by reading triple from the program
47 /// get the triple is arm-linux-eabi by the program name.
85 llvm::Triple triple = llvm::StringSwitch<llvm::Triple>(pEmulation) local
96 if (triple.getArch() == llvm::Triple::UnknownArch &&
97 triple.getOS() == llvm::Triple::UnknownOS &&
98 triple.getEnvironment() == llvm::Triple::UnknownEnvironment)
101 if (triple.getArch() != llvm::Triple::UnknownArch)
102 pTriple.setArch(triple.getArch());
104 if (triple
129 llvm::Triple triple; local
[all...]
/frameworks/compile/libbcc/lib/Core/
H A DCompiler.cpp98 const std::string &triple = pConfig.getTriple(); local
103 triple.c_str(), pConfig.getFeatureString().c_str());
255 const std::string &triple = module.getTargetTriple(); local
258 if (triple == "armv7-none-linux-gnueabi") {
262 } else if (triple == "aarch64-none-linux-gnueabi") {
/frameworks/compile/mclinker/include/mcld/
H A DTargetOptions.h38 const llvm::Triple& triple() const { return m_Triple; } function in class:mcld::TargetOptions
/frameworks/compile/mclinker/tools/mcld/
H A Dmain.cpp45 mcld::TripleOptions triple; local
60 if (!triple.parse(pArgc, pArgv, pConfig))
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp235 if (config().targets().triple().isArch64Bit()) {
402 if (config().targets().triple().isArch32Bit()) {
999 const llvm::Triple& triple = pConfig.targets().triple(); local
1001 if (triple.isOSDarwin()) {
1004 if (triple.isOSWindows()) {
1008 llvm::Triple::ArchType arch = triple.getArch();
1011 return new Mips64GNULDBackend(pConfig, new MipsGNUInfo(triple));
1014 return new Mips32GNULDBackend(pConfig, new MipsGNUInfo(triple));
H A DMipsRelocator.cpp200 const ApplyFunctionTriple & triple = ApplyFunctions[info.type()]; local
202 Result res = triple.func(info, *this);
207 uint64_t mask = 0xFFFFFFFFFFFFFFFFULL >> (64 - triple.size);

Completed in 119 milliseconds