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

12

/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGNUInfo.cpp20 : GNUInfo(pTargetOptions.triple()), m_Options(pTargetOptions) {
H A DHexagonEmulation.cpp42 if (pConfig.targets().triple().isOSDarwin()) {
46 if (pConfig.targets().triple().isOSWindows()) {
H A DHexagonLDBackend.cpp1037 if (pConfig.targets().triple().isOSDarwin()) {
1045 if (pConfig.targets().triple().isOSWindows()) {
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Emulation.cpp24 llvm::Triple::ArchType arch = pConfig.targets().triple().getArch();
27 pConfig.targets().triple().getEnvironment() == llvm::Triple::GNUX32) {
50 if (pConfig.targets().triple().isOSDarwin()) {
54 if (pConfig.targets().triple().isOSWindows()) {
H A DX86LDBackend.cpp47 llvm::Triple::ArchType arch = pConfig.targets().triple().getArch();
50 pConfig.targets().triple().getEnvironment() == llvm::Triple::GNUX32) {
700 if (pConfig.targets().triple().isOSDarwin()) {
708 if (pConfig.targets().triple().isOSWindows()) {
716 llvm::Triple::ArchType arch = pConfig.targets().triple().getArch();
719 pConfig, new X86_32GNUInfo(pConfig.targets().triple()));
722 new X86_64GNUInfo(pConfig.targets().triple()));
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Emulation.cpp48 if (pConfig.targets().triple().isOSDarwin()) {
52 if (pConfig.targets().triple().isOSWindows()) {
H A DAArch64LDBackend.cpp595 if (pConfig.targets().triple().isOSDarwin()) {
603 if (pConfig.targets().triple().isOSWindows()) {
612 pConfig, new AArch64GNUInfo(pConfig.targets().triple()));
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsEmulation.cpp24 llvm::Triple::ArchType arch = pConfig.targets().triple().getArch();
45 if (pConfig.targets().triple().isOSDarwin()) {
49 if (pConfig.targets().triple().isOSWindows()) {
H A DMipsLDBackend.cpp432 bool isTarget64Bit = config().targets().triple().isArch64Bit();
478 if (config().targets().triple().isArch32Bit()) {
1338 const llvm::Triple& triple = pConfig.targets().triple(); local
1340 if (triple.isOSDarwin()) {
1343 if (triple.isOSWindows()) {
1347 llvm::Triple::ArchType arch = triple.getArch();
1350 return new Mips64GNULDBackend(pConfig, new MipsGNUInfo(triple));
1353 return new Mips32GNULDBackend(pConfig, new MipsGNUInfo(triple));
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMEmulation.cpp49 if (pConfig.targets().triple().isOSDarwin()) {
53 if (pConfig.targets().triple().isOSWindows()) {
H A DARMLDBackend.cpp1016 if (pConfig.targets().triple().isOSDarwin()) {
1024 if (pConfig.targets().triple().isOSWindows()) {
1033 new ARMGNUInfo(pConfig.targets().triple()));
/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp30 pError = "Unable to find target for this triple (no target are registered)";
34 llvm::Triple triple(pTriple);
39 unsigned int quality = (*target)->getTripleQuality(triple);
52 pError = "No availaible targets are compatible with this triple.";
85 // Adjust the triple to match (if known), otherwise stick with the
86 // module/host triple.
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp328 llvm::Triple triple(m_pConfig->targets().triple());
331 m_pConfig->targets().getArch(), triple, error);
332 m_pConfig->targets().setTriple(triple);
335 fatal(diag::fatal_cannot_init_target) << triple.str() << error;
346 << m_pConfig->targets().triple().str();
/frameworks/compile/mclinker/lib/Support/Unix/
H A DSystem.inc41 // Normalize the arch, since the target triple may not actually match the
/frameworks/compile/mclinker/include/mcld/
H A DTargetOptions.h33 const llvm::Triple& triple() const { return m_Triple; } function in class:mcld::TargetOptions
/frameworks/compile/mclinker/lib/LD/
H A DRelocationFactory.cpp63 fatal(diag::unsupported_bitclass) << m_pConfig->targets().triple().str()
H A DGroupReader.cpp106 << (*input)->path() << pConfig.targets().triple().str();
H A DGNUArchiveReader.cpp404 << member->path() << pConfig.targets().triple().str();
H A DELFObjectWriter.cpp460 fatal(diag::unsupported_bitclass) << pConfig.targets().triple().str()
469 fatal(diag::unsupported_bitclass) << pConfig.targets().triple().str()
/frameworks/compile/mclinker/lib/Target/
H A DELFEmulation.cpp91 switch (pConfig.targets().triple().getOS()) {
H A DELFDynamic.cpp45 fatal(diag::unsupported_bitclass) << m_Config.targets().triple().str()
/frameworks/compile/libbcc/lib/
H A DCompiler.cpp167 const std::string &triple = pConfig.getTriple(); local
172 triple.c_str(), pConfig.getFeatureString().c_str());
310 const std::string &triple = module.getTargetTriple(); local
313 if (triple == "armv7-none-linux-gnueabi") {
317 } else if (triple == "aarch64-none-linux-gnueabi") {
/frameworks/compile/mclinker/tools/mcld/
H A DMain.cpp144 /// This function simplifies cross-compiling by reading triple from the program
146 /// get the triple is arm-linux-eabi by the program name.
177 inline void ParseEmulation(llvm::Triple& triple, const char* emulation) { argument
197 triple.setArch(emu_triple.getArch());
200 triple.setOS(emu_triple.getOS());
203 triple.setEnvironment(emu_triple.getEnvironment());
212 if (config.targets().triple().getOS() == llvm::Triple::Win32) {
322 llvm::Triple triple; local
324 // 1. Use the triple from command.
326 triple
[all...]
/frameworks/compile/mclinker/lib/Script/
H A DInputCmd.cpp208 << (*input)->path() << m_Config.targets().triple().str();
/frameworks/compile/mclinker/unittests/
H A DELFReaderTest.cpp38 m_pInfo = new X86_64GNUInfo(m_pConfig->targets().triple());

Completed in 364 milliseconds

12