aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineModuleInfo.cpp
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2022-04-17 15:45:20 -0400
committerMatt Arsenault <Matthew.Arsenault@amd.com>2022-04-20 11:10:20 -0400
commit3659780d58722ea38adf25f7116151f2ecf2d521 (patch)
treef6140f0ee820eb422903bf9bccf5a10b638422ad /llvm/lib/CodeGen/MachineModuleInfo.cpp
parentfb3b3f76bf75875684eedfe0711424e7ceba4b41 (diff)
downloadllvm-3659780d58722ea38adf25f7116151f2ecf2d521.zip
llvm-3659780d58722ea38adf25f7116151f2ecf2d521.tar.gz
llvm-3659780d58722ea38adf25f7116151f2ecf2d521.tar.bz2
MachineModuleInfo: Remove UsesMorestackAddr
This is x86 specific, and adds statefulness to MachineModuleInfo. Instead of explicitly tracking this, infer if we need to declare the symbol based on the reference previously inserted. This produces a small change in the output due to the move from AsmPrinter::doFinalization to X86's emitEndOfAsmFile. This will now be moved relative to other end of file fields, which I'm assuming doesn't matter (e.g. the __morestack_addr declaration is now after the .note.GNU-split-stack part) This also produces another small change in code if the module happened to define/declare __morestack_addr, but I assume that's invalid and doesn't really matter.
Diffstat (limited to 'llvm/lib/CodeGen/MachineModuleInfo.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineModuleInfo.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineModuleInfo.cpp b/llvm/lib/CodeGen/MachineModuleInfo.cpp
index 1e1b9e9..7b96a31 100644
--- a/llvm/lib/CodeGen/MachineModuleInfo.cpp
+++ b/llvm/lib/CodeGen/MachineModuleInfo.cpp
@@ -202,7 +202,7 @@ void MachineModuleInfo::initialize() {
ObjFileMMI = nullptr;
CurCallSite = 0;
NextFnNum = 0;
- UsesMSVCFloatingPoint = UsesMorestackAddr = false;
+ UsesMSVCFloatingPoint = false;
AddrLabelSymbols = nullptr;
DbgInfoAvailable = false;
}
@@ -230,7 +230,6 @@ MachineModuleInfo::MachineModuleInfo(MachineModuleInfo &&MMI)
ObjFileMMI = MMI.ObjFileMMI;
CurCallSite = MMI.CurCallSite;
UsesMSVCFloatingPoint = MMI.UsesMSVCFloatingPoint;
- UsesMorestackAddr = MMI.UsesMorestackAddr;
AddrLabelSymbols = MMI.AddrLabelSymbols;
ExternalContext = MMI.ExternalContext;
TheModule = MMI.TheModule;