diff options
| author | Dan Gohman <gohman@apple.com> | 2010-07-28 20:56:48 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-07-28 20:56:48 +0000 |
| commit | 390914cbe870fc3aae76cdf52aa64e736d336719 (patch) | |
| tree | 1c8141f7e970d3338d6200694562cb869d54756d | |
| parent | f2234fbe7089b111e8c8877445896d506dad24f7 (diff) | |
| download | bcm5719-llvm-390914cbe870fc3aae76cdf52aa64e736d336719.tar.gz bcm5719-llvm-390914cbe870fc3aae76cdf52aa64e736d336719.zip | |
Make GlobalValue alignment consistent with load, store, and alloca
alignment, fixing silent truncation of alignment values.
llvm-svn: 109653
| -rw-r--r-- | llvm/include/llvm/GlobalValue.h | 7 | ||||
| -rw-r--r-- | llvm/lib/VMCore/Globals.cpp | 9 | ||||
| -rw-r--r-- | llvm/test/Assembler/align-inst.ll | 2 |
3 files changed, 13 insertions, 5 deletions
diff --git a/llvm/include/llvm/GlobalValue.h b/llvm/include/llvm/GlobalValue.h index d175080a667..f4bee85b45f 100644 --- a/llvm/include/llvm/GlobalValue.h +++ b/llvm/include/llvm/GlobalValue.h @@ -74,11 +74,10 @@ public: removeDeadConstantUsers(); // remove any dead constants using this. } - unsigned getAlignment() const { return Alignment; } - void setAlignment(unsigned Align) { - assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!"); - Alignment = Align; + unsigned getAlignment() const { + return (1u << Alignment) >> 1; } + void setAlignment(unsigned Align); VisibilityTypes getVisibility() const { return VisibilityTypes(Visibility); } bool hasDefaultVisibility() const { return Visibility == DefaultVisibility; } diff --git a/llvm/lib/VMCore/Globals.cpp b/llvm/lib/VMCore/Globals.cpp index b758eb8702a..96716eeb349 100644 --- a/llvm/lib/VMCore/Globals.cpp +++ b/llvm/lib/VMCore/Globals.cpp @@ -102,7 +102,14 @@ void GlobalValue::copyAttributesFrom(const GlobalValue *Src) { setVisibility(Src->getVisibility()); } - +void GlobalValue::setAlignment(unsigned Align) { + assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!"); + assert(Align <= MaximumAlignment && + "Alignment is greater than MaximumAlignment!"); + Alignment = Log2_32(Align) + 1; + assert(getAlignment() == Align && "Alignment representation error!"); +} + //===----------------------------------------------------------------------===// // GlobalVariable Implementation //===----------------------------------------------------------------------===// diff --git a/llvm/test/Assembler/align-inst.ll b/llvm/test/Assembler/align-inst.ll index 7bf0b6493b6..6f7100e065d 100644 --- a/llvm/test/Assembler/align-inst.ll +++ b/llvm/test/Assembler/align-inst.ll @@ -1,5 +1,7 @@ ; RUN: llvm-as %s -o /dev/null +@A = global i1 0, align 536870912 + define void @foo() { %p = alloca i1, align 536870912 load i1* %p, align 536870912 |

