diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-12-09 01:53:58 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-12-09 01:53:58 +0000 |
commit | 7bd6478cd6a1264f884b46f3694af3a68a6fab0a (patch) | |
tree | 26d107e2bd6e67dd5d7d9ffae1e180be6740f907 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | a963306eede2aaa90d70661e85895d99eb80327e (diff) | |
download | external_llvm-7bd6478cd6a1264f884b46f3694af3a68a6fab0a.zip external_llvm-7bd6478cd6a1264f884b46f3694af3a68a6fab0a.tar.gz external_llvm-7bd6478cd6a1264f884b46f3694af3a68a6fab0a.tar.bz2 |
Teach InferPtrAlignment to infer GV+cst alignment and use it to simplify x86 isl lowering code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90925 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index a4b3285..3f44b60 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -5914,6 +5914,12 @@ bool SelectionDAG::isConsecutiveLoad(LoadSDNode *LD, LoadSDNode *Base, /// InferPtrAlignment - Infer alignment of a load / store address. Return 0 if /// it cannot be inferred. unsigned SelectionDAG::InferPtrAlignment(SDValue Ptr) const { + // If this is a GlobalAddress + cst, return the alignment. + GlobalValue *GV; + int64_t GVOffset = 0; + if (TLI.isGAPlusOffset(Ptr.getNode(), GV, GVOffset)) + return MinAlign(GV->getAlignment(), GVOffset); + // If this is a direct reference to a stack slot, use information about the // stack slot's alignment. int FrameIdx = 1 << 31; |