mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Revert "Calling _chkstk is required on ELF as well as COFF on Windows. Without _chkstk functions requiring large stack crash in initialization code. Previous code tested for COFF format but not Mach-O and this patch modifies the code to test for Windows."
This reverts commit r193263. It is causing CodeGen/X86/mingw-alloca.ll to fail. llvm-svn: 193275
This commit is contained in:
parent
f3f29a7db5
commit
b6d34eea66
@ -606,7 +606,7 @@ void X86FrameLowering::emitPrologue(MachineFunction &MF) const {
|
||||
// responsible for adjusting the stack pointer. Touching the stack at 4K
|
||||
// increments is necessary to ensure that the guard pages used by the OS
|
||||
// virtual memory manager are allocated in correct sequence.
|
||||
if (NumBytes >= 4096 && STI.isOSWindows()) {
|
||||
if (NumBytes >= 4096 && STI.isTargetCOFF() && !STI.isTargetEnvMacho()) {
|
||||
const char *StackProbeSymbol;
|
||||
bool isSPUpdateNeeded = false;
|
||||
|
||||
|
@ -631,7 +631,7 @@ void X86TargetLowering::resetOperationActions() {
|
||||
setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
|
||||
setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
|
||||
|
||||
if (Subtarget->isTargetWindows())
|
||||
if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
|
||||
setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
|
||||
MVT::i64 : MVT::i32, Custom);
|
||||
else if (TM.Options.EnableSegmentedStacks)
|
||||
|
@ -333,8 +333,6 @@ public:
|
||||
}
|
||||
bool isTargetEnvMacho() const { return TargetTriple.isEnvironmentMachO(); }
|
||||
|
||||
bool isOSWindows() const { return TargetTriple.isOSWindows(); }
|
||||
|
||||
bool isTargetWin64() const {
|
||||
return In64BitMode && TargetTriple.isOSWindows();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user