Lines Matching refs:getTriple
355 if (getTriple().isAndroid()) in GetDefaultRuntimeLibType()
361 if (getTriple().isAndroid()) in GetDefaultDwarfVersion()
367 if (getTriple().isAndroid()) in GetDefaultCXXStdlibType()
388 if (getTriple().isAndroid()) { in computeSysRoot()
397 if (getTriple().isCSKY()) { in computeSysRoot()
405 GCCInstallation.getTriple().str() + "/libc") in computeSysRoot()
412 if (!GCCInstallation.isValid() || !getTriple().isMIPS()) in computeSysRoot()
420 const StringRef TripleStr = GCCInstallation.getTriple().str(); in computeSysRoot()
440 const llvm::Triple &Triple = getTriple(); in getDynamicLinker()
638 (!getTriple().isMusl() || DriverArgs.hasArg(options::OPT_nostdlibinc))) in AddClangSystemIncludeArgs()
664 std::string MultiarchIncludeDir = getMultiarchTriple(D, getTriple(), SysRoot); in AddClangSystemIncludeArgs()
671 if (getTriple().getOS() == llvm::Triple::RTEMS) in AddClangSystemIncludeArgs()
681 if (!DriverArgs.hasArg(options::OPT_nobuiltininc) && getTriple().isMusl()) in AddClangSystemIncludeArgs()
693 StringRef TripleStr = GCCInstallation.getTriple().str(); in addLibStdCxxIncludePaths()
695 GCCInstallation.getTriple().getArch() == llvm::Triple::x86 in addLibStdCxxIncludePaths()
755 GCCInstallation.getTriple().str() + "/include")); in AddIAMCUIncludeArgs()
760 return CLANG_DEFAULT_PIE_ON_LINUX || getTriple().isAndroid() || in isPIEDefault()
761 getTriple().isMusl() || getSanitizerArgs(Args).requiresPIE(); in isPIEDefault()
767 assert(getTriple().isAArch64() && "expected AArch64 target!"); in IsAArch64OutlineAtomicsDefault()
778 if (getTriple().isAndroid() || getTriple().isMusl()) in IsMathErrnoDefault()
784 const bool IsX86 = getTriple().getArch() == llvm::Triple::x86; in getSupportedSanitizers()
785 const bool IsX86_64 = getTriple().getArch() == llvm::Triple::x86_64; in getSupportedSanitizers()
786 const bool IsMIPS = getTriple().isMIPS32(); in getSupportedSanitizers()
787 const bool IsMIPS64 = getTriple().isMIPS64(); in getSupportedSanitizers()
788 const bool IsPowerPC64 = getTriple().getArch() == llvm::Triple::ppc64 || in getSupportedSanitizers()
789 getTriple().getArch() == llvm::Triple::ppc64le; in getSupportedSanitizers()
790 const bool IsAArch64 = getTriple().getArch() == llvm::Triple::aarch64 || in getSupportedSanitizers()
791 getTriple().getArch() == llvm::Triple::aarch64_be; in getSupportedSanitizers()
792 const bool IsArmArch = getTriple().getArch() == llvm::Triple::arm || in getSupportedSanitizers()
793 getTriple().getArch() == llvm::Triple::thumb || in getSupportedSanitizers()
794 getTriple().getArch() == llvm::Triple::armeb || in getSupportedSanitizers()
795 getTriple().getArch() == llvm::Triple::thumbeb; in getSupportedSanitizers()
796 const bool IsLoongArch64 = getTriple().getArch() == llvm::Triple::loongarch64; in getSupportedSanitizers()
797 const bool IsRISCV64 = getTriple().getArch() == llvm::Triple::riscv64; in getSupportedSanitizers()
798 const bool IsSystemZ = getTriple().getArch() == llvm::Triple::systemz; in getSupportedSanitizers()
799 const bool IsHexagon = getTriple().getArch() == llvm::Triple::hexagon; in getSupportedSanitizers()
833 if (getTriple().getArch() == llvm::Triple::ppc64) in getSupportedSanitizers()
854 if (getTriple().isAndroid()) in getDefaultLinker()