diff options
author | Fangrui Song <maskray@google.com> | 2019-12-24 18:12:15 -0800 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2019-12-30 09:46:19 -0800 |
commit | 03b9f0a5e19aa68fb0a82d80e409333db7ee511c (patch) | |
tree | a7d756aaa2880d635c1ec9b95efc7105fe217095 /llvm/lib/IR | |
parent | ee3eebba0d30f9a231bb10e59f3778c72065db22 (diff) | |
download | bcm5719-llvm-03b9f0a5e19aa68fb0a82d80e409333db7ee511c.tar.gz bcm5719-llvm-03b9f0a5e19aa68fb0a82d80e409333db7ee511c.zip |
Ignore "no-frame-pointer-elim" and "no-frame-pointer-elim-non-leaf" in favor of "frame-pointer"
D56351 (included in LLVM 8.0.0) introduced "frame-pointer". All tests
which use "no-frame-pointer-elim" or "no-frame-pointer-elim-non-leaf"
have been migrated to use "frame-pointer".
Implement UpgradeFramePointerAttributes to upgrade the two obsoleted
function attributes for bitcode. Their semantics are ignored.
Differential Revision: https://reviews.llvm.org/D71863
Diffstat (limited to 'llvm/lib/IR')
-rw-r--r-- | llvm/lib/IR/AutoUpgrade.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/llvm/lib/IR/AutoUpgrade.cpp b/llvm/lib/IR/AutoUpgrade.cpp index d73e511382e..83bf052eb08 100644 --- a/llvm/lib/IR/AutoUpgrade.cpp +++ b/llvm/lib/IR/AutoUpgrade.cpp @@ -4177,3 +4177,23 @@ std::string llvm::UpgradeDataLayoutString(StringRef DL, StringRef TT) { std::string Res = (Groups[1] + AddrSpaces + Groups[3]).toStringRef(Buf).str(); return Res; } + +void llvm::UpgradeFramePointerAttributes(AttrBuilder &B) { + StringRef FramePointer; + if (B.contains("no-frame-pointer-elim")) { + // The value can be "true" or "false". + for (const auto &I : B.td_attrs()) + if (I.first == "no-frame-pointer-elim") + FramePointer = I.second == "true" ? "all" : "none"; + B.removeAttribute("no-frame-pointer-elim"); + } + if (B.contains("no-frame-pointer-elim-non-leaf")) { + // The value is ignored. "no-frame-pointer-elim"="true" takes priority. + if (FramePointer != "all") + FramePointer = "non-leaf"; + B.removeAttribute("no-frame-pointer-elim-non-leaf"); + } + + if (!FramePointer.empty()) + B.addAttribute("frame-pointer", FramePointer); +} |