Searched refs:triple (Results 1 - 25 of 29) sorted by relevance

12

/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGNUInfo.cpp20 : GNUInfo(pTargetOptions.triple()), m_Options(pTargetOptions) {
H A DHexagonEmulation.cpp43 if (pConfig.targets().triple().isOSDarwin()) {
47 if (pConfig.targets().triple().isOSWindows()) {
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Emulation.cpp25 llvm::Triple::ArchType arch = pConfig.targets().triple().getArch();
28 pConfig.targets().triple().getEnvironment() == llvm::Triple::GNUX32) {
53 if (pConfig.targets().triple().isOSDarwin()) {
57 if (pConfig.targets().triple().isOSWindows()) {
H A DX86LDBackend.cpp48 llvm::Triple::ArchType arch = pConfig.targets().triple().getArch();
51 pConfig.targets().triple().getEnvironment() == llvm::Triple::GNUX32) {
760 if (pConfig.targets().triple().isOSDarwin()) {
768 if (pConfig.targets().triple().isOSWindows()) {
776 llvm::Triple::ArchType arch = pConfig.targets().triple().getArch();
779 new X86_32GNUInfo(pConfig.targets().triple()));
782 new X86_64GNUInfo(pConfig.targets().triple()));
/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...]
H A DOutputFormatOptions.cpp271 if (llvm::Triple::Win32 == pConfig.targets().triple().getOS()) {
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsEmulation.cpp25 llvm::Triple::ArchType arch = pConfig.targets().triple().getArch();
47 if (pConfig.targets().triple().isOSDarwin()) {
51 if (pConfig.targets().triple().isOSWindows()) {
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);
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Emulation.cpp49 if (pConfig.targets().triple().isOSDarwin()) {
53 if (pConfig.targets().triple().isOSWindows()) {
H A DAArch64LDBackend.cpp435 if (pConfig.targets().triple().isOSDarwin()) {
443 if (pConfig.targets().triple().isOSWindows()) {
452 new AArch64GNUInfo(pConfig.targets().triple()));
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMEmulation.cpp51 if (pConfig.targets().triple().isOSDarwin()) {
55 if (pConfig.targets().triple().isOSWindows()) {
H A DARMLDBackend.cpp788 if (pConfig.targets().triple().isOSDarwin()) {
796 if (pConfig.targets().triple().isOSWindows()) {
804 return new ARMGNULDBackend(pConfig, new ARMGNUInfo(pConfig.targets().triple()));
/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp32 pError = "Unable to find target for this triple (no target are registered)";
36 llvm::Triple triple(pTriple);
41 unsigned int quality = (*target)->getTripleQuality(triple);
55 pError = "No availaible targets are compatible with this triple.";
87 // Adjust the triple to match (if known), otherwise stick with the
88 // module/host triple.
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp340 llvm::Triple triple(m_pConfig->targets().triple());
343 triple, error);
344 m_pConfig->targets().setTriple(triple);
347 fatal(diag::fatal_cannot_init_target) << triple.str() << error;
358 fatal(diag::fatal_cannot_init_backend) << m_pConfig->targets().triple().str();
/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/lib/Support/Unix/
H A DSystem.inc43 // Normalize the arch, since the target triple may not actually match the target.
/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/lib/LD/
H A DRelocationFactory.cpp64 fatal(diag::unsupported_bitclass) << m_pConfig->targets().triple().str()
H A DGroupReader.cpp112 << pConfig.targets().triple().str();
H A DGNUArchiveReader.cpp426 << pConfig.targets().triple().str();
/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/
H A DELFEmulation.cpp93 switch (pConfig.targets().triple().getOS()) {
H A DELFDynamic.cpp45 fatal(diag::unsupported_bitclass) << m_Config.targets().triple().str()
/frameworks/compile/mclinker/unittests/
H A DELFReaderTest.cpp38 m_pInfo = new X86_64GNUInfo( m_pConfig->targets().triple() );

Completed in 1135 milliseconds

12