mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 06:00:28 +00:00
Rename the x86 isTargetMacho to isTargetMachO for uniformity.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223421 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
62b1007007
commit
52978c2adf
@ -505,7 +505,7 @@ bool X86AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
|
||||
}
|
||||
|
||||
void X86AsmPrinter::EmitStartOfAsmFile(Module &M) {
|
||||
if (Subtarget->isTargetMacho())
|
||||
if (Subtarget->isTargetMachO())
|
||||
OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
|
||||
|
||||
if (Subtarget->isTargetCOFF()) {
|
||||
@ -603,10 +603,10 @@ void X86AsmPrinter::GenerateExportDirective(const MCSymbol *Sym, bool IsData) {
|
||||
}
|
||||
|
||||
void X86AsmPrinter::EmitEndOfAsmFile(Module &M) {
|
||||
if (Subtarget->isTargetMacho()) {
|
||||
if (Subtarget->isTargetMachO()) {
|
||||
// All darwin targets use mach-o.
|
||||
MachineModuleInfoMachO &MMIMacho =
|
||||
MMI->getObjFileInfo<MachineModuleInfoMachO>();
|
||||
MMI->getObjFileInfo<MachineModuleInfoMachO>();
|
||||
|
||||
// Output stubs for dynamically-linked functions.
|
||||
MachineModuleInfoMachO::SymbolListTy Stubs;
|
||||
|
@ -517,7 +517,7 @@ void X86FrameLowering::emitPrologue(MachineFunction &MF) const {
|
||||
X86FI->setCalleeSavedFrameSize(
|
||||
X86FI->getCalleeSavedFrameSize() - TailCallReturnAddrDelta);
|
||||
|
||||
bool UseStackProbe = (STI.isOSWindows() && !STI.isTargetMacho());
|
||||
bool UseStackProbe = (STI.isOSWindows() && !STI.isTargetMachO());
|
||||
|
||||
// If this is x86-64 and the Red Zone is not disabled, if we are a leaf
|
||||
// function, and use up to 128 bytes of stack space, don't have a frame
|
||||
|
@ -1688,7 +1688,7 @@ void X86TargetLowering::resetOperationActions() {
|
||||
|
||||
// This has so far only been implemented for 64-bit MachO.
|
||||
bool X86TargetLowering::useLoadStackGuardNode() const {
|
||||
return Subtarget->isTargetMacho() && Subtarget->is64Bit();
|
||||
return Subtarget->isTargetMachO() && Subtarget->is64Bit();
|
||||
}
|
||||
|
||||
TargetLoweringBase::LegalizeTypeAction
|
||||
@ -16387,7 +16387,7 @@ X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
|
||||
SelectionDAG &DAG) const {
|
||||
MachineFunction &MF = DAG.getMachineFunction();
|
||||
bool SplitStack = MF.shouldSplitStack();
|
||||
bool Lower = (Subtarget->isOSWindows() && !Subtarget->isTargetMacho()) ||
|
||||
bool Lower = (Subtarget->isOSWindows() && !Subtarget->isTargetMachO()) ||
|
||||
SplitStack;
|
||||
SDLoc dl(Op);
|
||||
|
||||
@ -20761,7 +20761,7 @@ X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
|
||||
const TargetInstrInfo *TII = BB->getParent()->getSubtarget().getInstrInfo();
|
||||
DebugLoc DL = MI->getDebugLoc();
|
||||
|
||||
assert(!Subtarget->isTargetMacho());
|
||||
assert(!Subtarget->isTargetMachO());
|
||||
|
||||
// The lowering is pretty easy: we're just emitting the call to _alloca. The
|
||||
// non-trivial part is impdef of ESP.
|
||||
|
@ -408,7 +408,7 @@ public:
|
||||
|
||||
bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
|
||||
bool isTargetCOFF() const { return TargetTriple.isOSBinFormatCOFF(); }
|
||||
bool isTargetMacho() const { return TargetTriple.isOSBinFormatMachO(); }
|
||||
bool isTargetMachO() const { return TargetTriple.isOSBinFormatMachO(); }
|
||||
|
||||
bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
|
||||
bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
|
||||
|
Loading…
Reference in New Issue
Block a user