[llvm-branch-commits] [llvm] 1e4b179 - [CodeGen] Do not call `emitGlobalConstantLargeInt` for constant requires 8 bytes to store
Hans Wennborg via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Sep 28 02:59:06 PDT 2020
Author: Simon Atanasyan
Date: 2020-09-28T11:52:59+02:00
New Revision: 1e4b179bf821bfff8fad7f46423494ed1f62dac0
URL: https://github.com/llvm/llvm-project/commit/1e4b179bf821bfff8fad7f46423494ed1f62dac0
DIFF: https://github.com/llvm/llvm-project/commit/1e4b179bf821bfff8fad7f46423494ed1f62dac0.diff
LOG: [CodeGen] Do not call `emitGlobalConstantLargeInt` for constant requires 8 bytes to store
This is a fix for PR47630. The regression is caused by the D78011. After
this change the code starts to call the `emitGlobalConstantLargeInt` even
for constants which requires eight bytes to store.
Differential revision: https://reviews.llvm.org/D88261
(cherry picked from commit c6c5629f2fb4ddabd376fbe7c218733283e91d09)
Added:
Modified:
llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
llvm/test/CodeGen/Mips/emit-big-cst.ll
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index f8f7b74baf91..c7eb0257d71b 100644
--- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -2779,7 +2779,7 @@ static void emitGlobalConstantImpl(const DataLayout &DL, const Constant *CV,
if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
const uint64_t StoreSize = DL.getTypeStoreSize(CV->getType());
- if (StoreSize < 8) {
+ if (StoreSize <= 8) {
if (AP.isVerbose())
AP.OutStreamer->GetCommentOS() << format("0x%" PRIx64 "\n",
CI->getZExtValue());
diff --git a/llvm/test/CodeGen/Mips/emit-big-cst.ll b/llvm/test/CodeGen/Mips/emit-big-cst.ll
index 67c2f107db19..679824ef047b 100644
--- a/llvm/test/CodeGen/Mips/emit-big-cst.ll
+++ b/llvm/test/CodeGen/Mips/emit-big-cst.ll
@@ -16,6 +16,14 @@
; LE-NEXT: .space 5
; LE-NEXT: .size bigCst, 16
+; BE-LABEL: notSoBigCst:
+; BE-NEXT: .8byte 72057594037927935
+; BE-NEXT: .size notSoBigCst, 8
+
+; LE-LABEL: notSoBigCst:
+; LE-NEXT: .8byte 72057594037927935
+; LE-NEXT: .size notSoBigCst, 8
+
; BE-LABEL: smallCst:
; BE-NEXT: .2byte 4386
; BE-NEXT: .byte 51
@@ -38,4 +46,14 @@ define void @accessBig(i64* %storage) {
ret void
}
+ at notSoBigCst = internal constant i57 72057594037927935
+
+define void @accessNotSoBig(i64* %storage) {
+ %addr = bitcast i64* %storage to i57*
+ %bigLoadedCst = load volatile i57, i57* @notSoBigCst
+ %tmp = add i57 %bigLoadedCst, 1
+ store i57 %tmp, i57* %addr
+ ret void
+}
+
@smallCst = internal constant i24 1122867
More information about the llvm-branch-commits
mailing list