HomeSort by relevance Sort by last modified time
    Searched refs:getTriple (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 46 if (TheTriple.getTriple().empty())
74 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
92 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
  /external/clang/lib/AST/
MicrosoftCXXABI.cpp 33 if (!isVariadic && Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86)
  /external/llvm/tools/bugpoint/
BugDriver.cpp 95 if (TargetTriple.getTriple().empty()) {
98 if (TheTriple.getTriple().empty())
101 TargetTriple.setTriple(TheTriple.getTriple());
104 Result->setTargetTriple(TargetTriple.getTriple()); // override the triple
bugpoint.cpp 146 outs() << "Override triple set to '" << TargetTriple.getTriple() << "'\n";
  /external/clang/include/clang/Driver/
ToolChain.h 87 const llvm::Triple &getTriple() const { return Triple; }
99 return Triple.getTriple();
  /external/clang/lib/CodeGen/
ModuleBuilder.cpp 58 M->setTargetTriple(Ctx->getTargetInfo().getTriple().getTriple());
  /external/clang/lib/Driver/
ToolChain.cpp 189 switch (getTriple().getArch()) {
196 llvm::Triple Triple = getTriple();
204 (Suffix.startswith("v7") && getTriple().isOSDarwin());
213 return Triple.getTriple();
ToolChains.h 88 const llvm::Triple &getTriple() const { return GCCTriple; }
135 bool isTarget64Bit() const { return getTriple().isArch64Bit(); }
138 bool isTarget32Bit() const { return getTriple().isArch32Bit(); }
300 return getTriple().getArch() != llvm::Triple::x86;
381 return (getTriple().getArch() == llvm::Triple::aarch64 ||
382 getTriple().getArch() == llvm::Triple::x86 ||
383 getTriple().getArch() == llvm::Triple::x86_64);
ToolChains.cpp 134 switch (getTriple().getArch()) {
163 return Triple.getTriple();
170 return Triple.getTriple();
365 if (getTriple().getArch() == llvm::Triple::x86)
458 if (getTriple().getArch() == llvm::Triple::arm ||
459 getTriple().getArch() == llvm::Triple::thumb)
487 if (iOSSimVersion && (getTriple().getArch() != llvm::Triple::x86 &&
488 getTriple().getArch() != llvm::Triple::x86_64)) {
490 << getTriple().getArchName() << iOSSimVersion->getAsString(Args);
519 if (iOSVersion && (getTriple().getArch() == llvm::Triple::x86 |
    [all...]
Tools.cpp 859 switch (TC.getTriple().getArch()) {
    [all...]
  /frameworks/compile/libbcc/include/bcc/Support/
LinkerConfig.h 75 inline const std::string &getTriple() const
CompilerConfig.h 71 inline const std::string &getTriple() const
  /frameworks/compile/mclinker/tools/mcld/include/alone/Support/
LinkerConfig.h 68 inline const std::string &getTriple() const
  /external/llvm/lib/Support/
TargetRegistry.cpp 55 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), TempError);
58 + TheTriple.getTriple()
  /external/llvm/lib/Target/ARM/
ARMSubtarget.cpp 120 std::string ArchFS = ARM_MC::ParseARMTriple(TargetTriple.getTriple(),
141 if ((TargetTriple.getTriple().find("eabi") != std::string::npos) ||
  /external/llvm/tools/llvm-jitlistener/
llvm-jitlistener.cpp 139 if (Tuple.getTriple().empty())
144 TheModule->setTargetTriple(Tuple.getTriple());
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 101 const std::string &triple = pConfig.getTriple();
119 (pConfig.getTarget())->createTargetMachine(pConfig.getTriple(),
Linker.cpp 80 const std::string &triple = pConfig.getTriple();
  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 180 if (config->getTriple().find("arm") != std::string::npos) {
189 if (config->getTriple().find("i686") != std::string::npos) {
  /external/clang/lib/Analysis/
ScanfFormatString.cpp 180 if (Target.getTriple().isOSDarwin())
184 if (Target.getTriple().isOSDarwin())
188 if (Target.getTriple().isOSDarwin())
  /external/llvm/include/llvm/ADT/
Triple.h 216 const std::string &getTriple() const { return Data; }
  /frameworks/compile/mclinker/tools/mcld/lib/Core/
Linker.cpp 73 const std::string &triple = pConfig.getTriple();
  /external/clang/lib/Sema/
TargetAttributesSema.cpp 249 const llvm::Triple &Triple(S.Context.getTargetInfo().getTriple());
326 const llvm::Triple &Triple(Context.getTargetInfo().getTriple());
  /external/llvm/tools/llc/
llc.cpp 226 if (TheTriple.getTriple().empty())
284 target(TheTarget->createTargetMachine(TheTriple.getTriple(),
  /external/llvm/unittests/ADT/
TripleTest.cpp 258 EXPECT_EQ("i386--", T.getTriple());
263 EXPECT_EQ("i386-pc-", T.getTriple());
269 EXPECT_EQ("i386-pc-linux", T.getTriple());
275 EXPECT_EQ("i386-pc-linux-gnu", T.getTriple());
281 EXPECT_EQ("i386-pc-freebsd-gnu", T.getTriple());
287 EXPECT_EQ("i386-pc-darwin", T.getTriple());

Completed in 394 milliseconds

1 2 3