Lines Matching refs:getTriple
322 if (getTriple().isAndroid()) in GetDefaultRuntimeLibType()
328 if (getTriple().isAndroid()) in GetDefaultDwarfVersion()
334 if (getTriple().isAndroid()) in GetDefaultCXXStdlibType()
355 if (getTriple().isAndroid()) { in computeSysRoot()
364 if (getTriple().isCSKY()) { in computeSysRoot()
372 GCCInstallation.getTriple().str() + "/libc") in computeSysRoot()
379 if (!GCCInstallation.isValid() || !getTriple().isMIPS()) in computeSysRoot()
387 const StringRef TripleStr = GCCInstallation.getTriple().str(); in computeSysRoot()
407 const llvm::Triple &Triple = getTriple(); in getDynamicLinker()
584 (!getTriple().isMusl() || DriverArgs.hasArg(options::OPT_nostdlibinc))) in AddClangSystemIncludeArgs()
610 std::string MultiarchIncludeDir = getMultiarchTriple(D, getTriple(), SysRoot); in AddClangSystemIncludeArgs()
617 if (getTriple().getOS() == llvm::Triple::RTEMS) in AddClangSystemIncludeArgs()
627 if (!DriverArgs.hasArg(options::OPT_nobuiltininc) && getTriple().isMusl()) in AddClangSystemIncludeArgs()
639 StringRef TripleStr = GCCInstallation.getTriple().str(); in addLibStdCxxIncludePaths()
641 GCCInstallation.getTriple().getArch() == llvm::Triple::x86 in addLibStdCxxIncludePaths()
697 GCCInstallation.getTriple().str() + "/include")); in AddIAMCUIncludeArgs()
705 (CLANG_DEFAULT_PIE_ON_LINUX || getTriple().isAndroid() || in isPIEDefault()
706 getTriple().isMusl() || getSanitizerArgs(Args).requiresPIE()); in isPIEDefault()
712 assert(getTriple().isAArch64() && "expected AArch64 target!"); in IsAArch64OutlineAtomicsDefault()
723 if (getTriple().isAndroid() || getTriple().isMusl()) in IsMathErrnoDefault()
729 const bool IsX86 = getTriple().getArch() == llvm::Triple::x86; in getSupportedSanitizers()
730 const bool IsX86_64 = getTriple().getArch() == llvm::Triple::x86_64; in getSupportedSanitizers()
731 const bool IsMIPS = getTriple().isMIPS32(); in getSupportedSanitizers()
732 const bool IsMIPS64 = getTriple().isMIPS64(); in getSupportedSanitizers()
733 const bool IsPowerPC64 = getTriple().getArch() == llvm::Triple::ppc64 || in getSupportedSanitizers()
734 getTriple().getArch() == llvm::Triple::ppc64le; in getSupportedSanitizers()
735 const bool IsAArch64 = getTriple().getArch() == llvm::Triple::aarch64 || in getSupportedSanitizers()
736 getTriple().getArch() == llvm::Triple::aarch64_be; in getSupportedSanitizers()
737 const bool IsArmArch = getTriple().getArch() == llvm::Triple::arm || in getSupportedSanitizers()
738 getTriple().getArch() == llvm::Triple::thumb || in getSupportedSanitizers()
739 getTriple().getArch() == llvm::Triple::armeb || in getSupportedSanitizers()
740 getTriple().getArch() == llvm::Triple::thumbeb; in getSupportedSanitizers()
741 const bool IsRISCV64 = getTriple().getArch() == llvm::Triple::riscv64; in getSupportedSanitizers()
742 const bool IsSystemZ = getTriple().getArch() == llvm::Triple::systemz; in getSupportedSanitizers()
743 const bool IsHexagon = getTriple().getArch() == llvm::Triple::hexagon; in getSupportedSanitizers()
789 switch (getTriple().getArch()) { in getDefaultDenormalModeForType()