aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/IR/ConstantFold.cpp
diff options
context:
space:
mode:
authorRanjeet Singh <Ranjeet.Singh@arm.com>2018-12-07 08:34:59 +0000
committerRanjeet Singh <Ranjeet.Singh@arm.com>2018-12-07 08:34:59 +0000
commit7a7132603b27634105a1d2842ac901fbaf153999 (patch)
tree1cf192de76922e79f5fec9acb7faafe909514290 /llvm/lib/IR/ConstantFold.cpp
parent4dc4ebd606d6bfa9ae4a8d9c7182f01873da96ee (diff)
downloadllvm-7a7132603b27634105a1d2842ac901fbaf153999.zip
llvm-7a7132603b27634105a1d2842ac901fbaf153999.tar.gz
llvm-7a7132603b27634105a1d2842ac901fbaf153999.tar.bz2
[IR] Don't assume all functions are 4 byte aligned
In some cases different alignments for function might be used to save space e.g. thumb mode with -Oz will try to use 2 byte function alignment. Similar patch that fixed this in other areas exists here https://reviews.llvm.org/D46110 This was approved previously https://reviews.llvm.org/D55115 (r348215) but when committed it caused failures on the sanitizer buildbots when building llvm with clang (containing this patch). This is now fixed because I've added a check to see if getting the parent module returns null if it does then set the alignment to 0. Differential Revision: https://reviews.llvm.org/D55115 llvm-svn: 348571
Diffstat (limited to 'llvm/lib/IR/ConstantFold.cpp')
-rw-r--r--llvm/lib/IR/ConstantFold.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/lib/IR/ConstantFold.cpp b/llvm/lib/IR/ConstantFold.cpp
index 107975d..9aaaacc 100644
--- a/llvm/lib/IR/ConstantFold.cpp
+++ b/llvm/lib/IR/ConstantFold.cpp
@@ -27,6 +27,7 @@
#include "llvm/IR/GlobalAlias.h"
#include "llvm/IR/GlobalVariable.h"
#include "llvm/IR/Instructions.h"
+#include "llvm/IR/Module.h"
#include "llvm/IR/Operator.h"
#include "llvm/IR/PatternMatch.h"
#include "llvm/Support/ErrorHandling.h"
@@ -1077,10 +1078,10 @@ Constant *llvm::ConstantFoldBinaryInstruction(unsigned Opcode, Constant *C1,
isa<GlobalValue>(CE1->getOperand(0))) {
GlobalValue *GV = cast<GlobalValue>(CE1->getOperand(0));
- // Functions are at least 4-byte aligned.
- unsigned GVAlign = GV->getAlignment();
- if (isa<Function>(GV))
- GVAlign = std::max(GVAlign, 4U);
+ unsigned GVAlign =
+ GV->getParent()
+ ? GV->getPointerAlignment(GV->getParent()->getDataLayout())
+ : 0;
if (GVAlign > 1) {
unsigned DstWidth = CI2->getType()->getBitWidth();