Clean up some Triple usage in clang.

llvm-svn: 190737
This commit is contained in:
Cameron Esfahani 2013-09-14 01:09:11 +00:00
parent a369cb6280
commit 556d91e2c3
7 changed files with 16 additions and 18 deletions

View File

@ -150,7 +150,7 @@ static bool HasARCRuntime(CompilerInvocation &origCI) {
// and avoid unrelated complications. // and avoid unrelated complications.
llvm::Triple triple(origCI.getTargetOpts().Triple); llvm::Triple triple(origCI.getTargetOpts().Triple);
if (triple.getOS() == llvm::Triple::IOS) if (triple.isiOS())
return triple.getOSMajorVersion() >= 5; return triple.getOSMajorVersion() >= 5;
if (triple.getOS() == llvm::Triple::Darwin) if (triple.getOS() == llvm::Triple::Darwin)

View File

@ -49,7 +49,7 @@ bool trans::canApplyWeak(ASTContext &Ctx, QualType type,
return false; return false;
// iOS is always safe to use 'weak'. // iOS is always safe to use 'weak'.
if (Ctx.getTargetInfo().getTriple().getOS() == llvm::Triple::IOS) if (Ctx.getTargetInfo().getTriple().isiOS())
AllowOnUnknownClass = true; AllowOnUnknownClass = true;
while (const PointerType *ptr = T->getAs<PointerType>()) while (const PointerType *ptr = T->getAs<PointerType>())

View File

@ -139,7 +139,7 @@ static void getDarwinDefines(MacroBuilder &Builder, const LangOptions &Opts,
} }
// Set the appropriate OS version define. // Set the appropriate OS version define.
if (Triple.getOS() == llvm::Triple::IOS) { if (Triple.isiOS()) {
assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!"); assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!");
char Str[6]; char Str[6];
Str[0] = '0' + Maj; Str[0] = '0' + Maj;
@ -3528,7 +3528,7 @@ class ARMTargetInfo : public TargetInfo {
// the kernel which on armv6 and newer uses ldrex and strex. The net result // the kernel which on armv6 and newer uses ldrex and strex. The net result
// is that if we assume the kernel is at least as recent as the hardware, // is that if we assume the kernel is at least as recent as the hardware,
// it is safe to use atomic instructions on armv6 and newer. // it is safe to use atomic instructions on armv6 and newer.
if (T.getOS() != llvm::Triple::Linux && if (!T.isOSLinux() &&
T.getOS() != llvm::Triple::FreeBSD && T.getOS() != llvm::Triple::FreeBSD &&
T.getOS() != llvm::Triple::Bitrig) T.getOS() != llvm::Triple::Bitrig)
return false; return false;

View File

@ -4348,7 +4348,7 @@ void CGObjCCommonMac::EmitImageInfo() {
// Indicate whether we're compiling this to run on a simulator. // Indicate whether we're compiling this to run on a simulator.
const llvm::Triple &Triple = CGM.getTarget().getTriple(); const llvm::Triple &Triple = CGM.getTarget().getTriple();
if (Triple.getOS() == llvm::Triple::IOS && if (Triple.isiOS() &&
(Triple.getArch() == llvm::Triple::x86 || (Triple.getArch() == llvm::Triple::x86 ||
Triple.getArch() == llvm::Triple::x86_64)) Triple.getArch() == llvm::Triple::x86_64))
Mod.addModuleFlag(llvm::Module::Error, "Objective-C Is Simulated", Mod.addModuleFlag(llvm::Module::Error, "Objective-C Is Simulated",

View File

@ -1445,7 +1445,7 @@ void X86_64ABIInfo::classify(QualType Ty, uint64_t OffsetBase,
Current = Integer; Current = Integer;
} else if ((k == BuiltinType::Float || k == BuiltinType::Double) || } else if ((k == BuiltinType::Float || k == BuiltinType::Double) ||
(k == BuiltinType::LongDouble && (k == BuiltinType::LongDouble &&
getTarget().getTriple().getOS() == llvm::Triple::NaCl)) { getTarget().getTriple().isOSNaCl())) {
Current = SSE; Current = SSE;
} else if (k == BuiltinType::LongDouble) { } else if (k == BuiltinType::LongDouble) {
Lo = X87; Lo = X87;
@ -1537,7 +1537,7 @@ void X86_64ABIInfo::classify(QualType Ty, uint64_t OffsetBase,
Current = SSE; Current = SSE;
else if (ET == getContext().DoubleTy || else if (ET == getContext().DoubleTy ||
(ET == getContext().LongDoubleTy && (ET == getContext().LongDoubleTy &&
getTarget().getTriple().getOS() == llvm::Triple::NaCl)) getTarget().getTriple().isOSNaCl()))
Lo = Hi = SSE; Lo = Hi = SSE;
else if (ET == getContext().LongDoubleTy) else if (ET == getContext().LongDoubleTy)
Current = ComplexX87; Current = ComplexX87;

View File

@ -770,7 +770,7 @@ void Clang::AddARMTargetArgs(const ArgList &Args,
// Kernel code has more strict alignment requirements. // Kernel code has more strict alignment requirements.
if (KernelOrKext) { if (KernelOrKext) {
if (Triple.getOS() != llvm::Triple::IOS || Triple.isOSVersionLT(6)) { if (!Triple.isiOS() || Triple.isOSVersionLT(6)) {
CmdArgs.push_back("-backend-option"); CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-arm-long-calls"); CmdArgs.push_back("-arm-long-calls");
} }
@ -1768,7 +1768,7 @@ static bool shouldUseFramePointer(const ArgList &Args,
if ((Triple.getArch() == llvm::Triple::x86_64 || if ((Triple.getArch() == llvm::Triple::x86_64 ||
Triple.getArch() == llvm::Triple::x86 || Triple.getArch() == llvm::Triple::x86 ||
Triple.getArch() == llvm::Triple::systemz) && Triple.getArch() == llvm::Triple::systemz) &&
Triple.getOS() == llvm::Triple::Linux) { Triple.isOSLinux()) {
if (Arg *A = Args.getLastArg(options::OPT_O_Group)) if (Arg *A = Args.getLastArg(options::OPT_O_Group))
if (!A->getOption().matches(options::OPT_O0)) if (!A->getOption().matches(options::OPT_O0))
return false; return false;
@ -1790,7 +1790,7 @@ static bool shouldUseLeafFramePointer(const ArgList &Args,
if ((Triple.getArch() == llvm::Triple::x86_64 || if ((Triple.getArch() == llvm::Triple::x86_64 ||
Triple.getArch() == llvm::Triple::x86 || Triple.getArch() == llvm::Triple::x86 ||
Triple.getArch() == llvm::Triple::systemz) && Triple.getArch() == llvm::Triple::systemz) &&
Triple.getOS() == llvm::Triple::Linux) { Triple.isOSLinux()) {
if (Arg *A = Args.getLastArg(options::OPT_O_Group)) if (Arg *A = Args.getLastArg(options::OPT_O_Group))
if (!A->getOption().matches(options::OPT_O0)) if (!A->getOption().matches(options::OPT_O0))
return false; return false;
@ -2091,8 +2091,7 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
// PIC or PIE options above, if these show up, PIC is disabled. // PIC or PIE options above, if these show up, PIC is disabled.
llvm::Triple Triple(TripleStr); llvm::Triple Triple(TripleStr);
if (KernelOrKext && if (KernelOrKext &&
(Triple.getOS() != llvm::Triple::IOS || (!Triple.isiOS() || Triple.isOSVersionLT(6)))
Triple.isOSVersionLT(6)))
PIC = PIE = false; PIC = PIE = false;
if (Args.hasArg(options::OPT_static)) if (Args.hasArg(options::OPT_static))
PIC = PIE = false; PIC = PIE = false;
@ -2503,7 +2502,7 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
// -gsplit-dwarf should turn on -g and enable the backend dwarf // -gsplit-dwarf should turn on -g and enable the backend dwarf
// splitting and extraction. // splitting and extraction.
// FIXME: Currently only works on Linux. // FIXME: Currently only works on Linux.
if (getToolChain().getTriple().getOS() == llvm::Triple::Linux && if (getToolChain().getTriple().isOSLinux() &&
Args.hasArg(options::OPT_gsplit_dwarf)) { Args.hasArg(options::OPT_gsplit_dwarf)) {
CmdArgs.push_back("-g"); CmdArgs.push_back("-g");
CmdArgs.push_back("-backend-option"); CmdArgs.push_back("-backend-option");
@ -3553,7 +3552,7 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
// Add the split debug info name to the command lines here so we // Add the split debug info name to the command lines here so we
// can propagate it to the backend. // can propagate it to the backend.
bool SplitDwarf = Args.hasArg(options::OPT_gsplit_dwarf) && bool SplitDwarf = Args.hasArg(options::OPT_gsplit_dwarf) &&
(getToolChain().getTriple().getOS() == llvm::Triple::Linux) && getToolChain().getTriple().isOSLinux() &&
(isa<AssembleJobAction>(JA) || isa<CompileJobAction>(JA)); (isa<AssembleJobAction>(JA) || isa<CompileJobAction>(JA));
const char *SplitDwarfOut; const char *SplitDwarfOut;
if (SplitDwarf) { if (SplitDwarf) {
@ -3906,7 +3905,7 @@ void ClangAs::ConstructJob(Compilation &C, const JobAction &JA,
// creating an object. // creating an object.
// TODO: Currently only works on linux with newer objcopy. // TODO: Currently only works on linux with newer objcopy.
if (Args.hasArg(options::OPT_gsplit_dwarf) && if (Args.hasArg(options::OPT_gsplit_dwarf) &&
(getToolChain().getTriple().getOS() == llvm::Triple::Linux)) getToolChain().getTriple().isOSLinux())
SplitDebugInfo(getToolChain(), C, *this, JA, Args, Output, SplitDebugInfo(getToolChain(), C, *this, JA, Args, Output,
SplitDebugName(Args, Inputs)); SplitDebugName(Args, Inputs));
} }
@ -6001,7 +6000,7 @@ void gnutools::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
// creating an object. // creating an object.
// TODO: Currently only works on linux with newer objcopy. // TODO: Currently only works on linux with newer objcopy.
if (Args.hasArg(options::OPT_gsplit_dwarf) && if (Args.hasArg(options::OPT_gsplit_dwarf) &&
(getToolChain().getTriple().getOS() == llvm::Triple::Linux)) getToolChain().getTriple().isOSLinux())
SplitDebugInfo(getToolChain(), C, *this, JA, Args, Output, SplitDebugInfo(getToolChain(), C, *this, JA, Args, Output,
SplitDebugName(Args, Inputs)); SplitDebugName(Args, Inputs));
} }

View File

@ -446,8 +446,7 @@ void CallAndMessageChecker::emitNilReceiverBug(CheckerContext &C,
static bool supportsNilWithFloatRet(const llvm::Triple &triple) { static bool supportsNilWithFloatRet(const llvm::Triple &triple) {
return (triple.getVendor() == llvm::Triple::Apple && return (triple.getVendor() == llvm::Triple::Apple &&
(triple.getOS() == llvm::Triple::IOS || (triple.isiOS() || !triple.isMacOSXVersionLT(10,5)));
!triple.isMacOSXVersionLT(10,5)));
} }
void CallAndMessageChecker::HandleNilReceiver(CheckerContext &C, void CallAndMessageChecker::HandleNilReceiver(CheckerContext &C,