Searched refs:getArch (Results 1 - 25 of 60) sorted by relevance

123

/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCAsmInfo.cpp23 if ((TheTriple.getArch() == Triple::mips) ||
24 (TheTriple.getArch() == Triple::mips64))
27 if ((TheTriple.getArch() == Triple::mips64el) ||
28 (TheTriple.getArch() == Triple::mips64)) {
/freebsd-10.0-release/contrib/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCAsmInfo.cpp24 if (TheTriple.getArch() == Triple::sparcv9) {
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCAsmInfo.cpp45 bool is64Bit = T.getArch() == Triple::x86_64;
79 bool is64Bit = T.getArch() == Triple::x86_64;
110 T.getArch() == Triple::x86)
134 if (Triple.getArch() == Triple::x86_64) {
147 if (Triple.getArch() == Triple::x86_64) {
H A DX86MCTargetDesc.cpp49 if (TheTriple.getArch() == Triple::x86_64)
200 if (TheTriple.getArch() == Triple::x86_64)
253 unsigned RA = (TheTriple.getArch() == Triple::x86_64)
268 bool is64Bit = TheTriple.getArch() == Triple::x86_64;
311 bool is64Bit = T.getArch() == Triple::x86_64;
/freebsd-10.0-release/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXMCAsmInfo.cpp32 if (TheTriple.getArch() == Triple::nvptx64) {
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DObjectImageCommon.h56 virtual /* Triple::ArchType */ unsigned getArch() const function in class:llvm::ObjectImageCommon
57 { return ObjFile->getArch(); }
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DMicrosoftCXXABI.cpp36 Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86)
164 assert(Target.getTriple().getArch() == llvm::Triple::x86 ||
165 Target.getTriple().getArch() == llvm::Triple::x86_64);
/freebsd-10.0-release/contrib/llvm/include/llvm/ExecutionEngine/
H A DObjectImage.h42 virtual /* Triple::ArchType */ unsigned getArch() const = 0;
/freebsd-10.0-release/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCTargetDesc.cpp45 bool isPPC64 = (TheTriple.getArch() == Triple::ppc64);
63 bool isPPC64 = TheTriple.getArch() == Triple::ppc64;
93 if (!T.isOSDarwin() && T.getArch() == Triple::ppc64)
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DToolChains.cpp134 switch (getTriple().getArch()) {
364 if (getTriple().getArch() == llvm::Triple::x86)
457 if (getTriple().getArch() == llvm::Triple::arm ||
458 getTriple().getArch() == llvm::Triple::thumb)
486 if (iOSSimVersion && (getTriple().getArch() != llvm::Triple::x86 &&
487 getTriple().getArch() != llvm::Triple::x86_64)) {
518 if (iOSVersion && (getTriple().getArch() == llvm::Triple::x86 ||
519 getTriple().getArch() == llvm::Triple::x86_64))
621 if (!(XarchArch == getArch() ||
732 if (getTriple().getArch()
[all...]
H A DTools.cpp537 switch (Triple.getArch()) {
872 switch (TC.getTriple().getArch()) {
1099 if (Triple.getArch() == llvm::Triple::ppc64)
1221 if (Triple.getArch() != llvm::Triple::x86_64 &&
1222 Triple.getArch() != llvm::Triple::x86)
1225 bool Is64Bit = Triple.getArch() == llvm::Triple::x86_64;
1382 (Triple.getArch() == llvm::Triple::x86_64 ||
1383 Triple.getArch() == llvm::Triple::arm));
1752 if ((Triple.getArch() == llvm::Triple::x86_64 ||
1753 Triple.getArch()
[all...]
H A DWindowsToolChain.cpp56 return getArch() == llvm::Triple::x86_64;
60 return getArch() == llvm::Triple::x86_64;
68 return getArch() == llvm::Triple::x86_64;
H A DDriver.cpp699 switch (C.getDefaultToolChain().getTriple().getArch()) {
718 switch (C.getDefaultToolChain().getTriple().getArch()) {
1673 if (Target.getArch() == llvm::Triple::mips)
1675 else if (Target.getArch() == llvm::Triple::mips64)
1678 if (Target.getArch() == llvm::Triple::mipsel)
1680 else if (Target.getArch() == llvm::Triple::mips64el)
1695 if (Target.getArch() == llvm::Triple::x86_64)
1697 if (Target.getArch() == llvm::Triple::ppc64)
1700 if (Target.getArch() == llvm::Triple::x86)
1702 if (Target.getArch()
[all...]
H A DToolChains.h315 return getTriple().getArch() != llvm::Triple::x86;
397 return (getTriple().getArch() == llvm::Triple::aarch64 ||
398 getTriple().getArch() == llvm::Triple::x86 ||
399 getTriple().getArch() == llvm::Triple::x86_64);
H A DToolChain.cpp49 switch (Triple.getArch()) {
234 switch (getTriple().getArch()) {
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCObjectFileInfo.cpp82 T.getArch() != Triple::x86_64 && T.getArch() != Triple::ppc64)
154 if (T.getArch() == Triple::x86_64 || T.getArch() == Triple::x86)
230 if (T.getArch() == Triple::mips ||
231 T.getArch() == Triple::mipsel)
233 else if (T.getArch() == Triple::mips64 ||
234 T.getArch() == Triple::mips64el)
239 if (T.getArch() == Triple::x86) {
252 } else if (T.getArch()
[all...]
H A DSubtargetFeature.cpp365 if (Triple.getArch() == Triple::ppc) {
368 } else if (Triple.getArch() == Triple::ppc64) {
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DToolChain.h101 llvm::Triple::ArchType getArch() const { return Triple.getArch(); } function in class:clang::driver::ToolChain
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp573 if (triple.getArch() == llvm::Triple::x86 || triple.getArch() == llvm::Triple::x86_64)
588 if (arch.GetTriple().getArch() != llvm::Triple::UnknownArch)
614 if (arch.GetTriple().getArch() == llvm::Triple::x86
615 || arch.GetTriple().getArch() == llvm::Triple::x86_64)
628 if (arch.GetTriple().getArch() == llvm::Triple::arm)
646 if (arch.GetTriple().getArch() == llvm::Triple::arm
661 if (arch.GetTriple().getArch() == llvm::Triple::arm)
/freebsd-10.0-release/contrib/llvm/lib/Target/
H A DTargetLibraryInfo.cpp354 if (T.isMacOSX() && T.getArch() == Triple::x86 &&
366 if (T.getArch() != Triple::xcore && T.getArch() != Triple::tce) {
444 if (T.getArch() == Triple::x86) {
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectDisassemble.cpp134 if (target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86
135 || target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86_64)
200 if (target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86
201 || target->GetArchitecture().GetTriple().getArch() == llvm::Triple::x86_64)
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DTriple.cpp704 return getArchPointerBitWidth(getArch()) == 64;
708 return getArchPointerBitWidth(getArch()) == 32;
712 return getArchPointerBitWidth(getArch()) == 16;
717 switch (getArch()) {
757 switch (getArch()) {
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DTriple.h165 /// getArch - Get the parsed architecture type of this triple.
166 ArchType getArch() const { return Arch; } function in class:llvm::Triple
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DTargetAttributesSema.cpp260 if (Triple.getArch() != llvm::Triple::x86_64 &&
327 switch (Triple.getArch()) {
/freebsd-10.0-release/contrib/llvm/tools/bugpoint/
H A DToolRunner.cpp656 if (TargetTriple.getArch() == Triple::x86)
705 if (TargetTriple.getArch() == Triple::sparc)
807 if (TargetTriple.getArch() == Triple::x86)
823 if (TargetTriple.getArch() == Triple::sparc)
837 if (TargetTriple.getArch() == Triple::x86_64)
840 if (TargetTriple.getArch() == Triple::sparc)

Completed in 193 milliseconds

123