Error out on CodeGen of unaligned load/store. Fix test so it isn't accidentally...
authorEli Friedman <eli.friedman@gmail.com>
Tue, 13 Sep 2011 20:50:54 +0000 (20:50 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Tue, 13 Sep 2011 20:50:54 +0000 (20:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139641 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
test/CodeGen/X86/atomic-load-store-wide.ll

index e0c0fc255cce8a1eae18892d9b5ca0bf78af97b7..4c58fe92266ee01dd00315b789c5cb1d881705e6 100644 (file)
@@ -3402,6 +3402,9 @@ void SelectionDAGBuilder::visitAtomicLoad(const LoadInst &I) {
 
   EVT VT = EVT::getEVT(I.getType());
 
+  if (I.getAlignment() * 8 != VT.getSizeInBits())
+    report_fatal_error("Cannot generate unaligned atomic load");
+
   SDValue L =
     DAG.getAtomic(ISD::ATOMIC_LOAD, dl, VT, VT, InChain,
                   getValue(I.getPointerOperand()),
@@ -3427,13 +3430,17 @@ void SelectionDAGBuilder::visitAtomicStore(const StoreInst &I) {
 
   SDValue InChain = getRoot();
 
+  EVT VT = EVT::getEVT(I.getValueOperand()->getType());
+
+  if (I.getAlignment() * 8 != VT.getSizeInBits())
+    report_fatal_error("Cannot generate unaligned atomic store");
+
   if (TLI.getInsertFencesForAtomic())
     InChain = InsertFenceForAtomic(InChain, Order, Scope, true, dl,
                                    DAG, TLI);
 
   SDValue OutChain =
-    DAG.getAtomic(ISD::ATOMIC_STORE, dl,
-                  getValue(I.getValueOperand()).getValueType().getSimpleVT(),
+    DAG.getAtomic(ISD::ATOMIC_STORE, dl, VT,
                   InChain,
                   getValue(I.getPointerOperand()),
                   getValue(I.getValueOperand()),
index 227883e55926b2fca2d6e18bdbf15ac61f378047..a9ebfef2ebeb1326e1aedcae9f1e15d761318ae2 100644 (file)
@@ -7,13 +7,13 @@ define void @test1(i64* %ptr, i64 %val1) {
 ; CHECK: test1
 ; CHECK: cmpxchg8b
 ; CHECK-NEXT: jne
-  store atomic i64 %val1, i64* %ptr seq_cst, align 4
+  store atomic i64 %val1, i64* %ptr seq_cst, align 8
   ret void
 }
 
 define i64 @test2(i64* %ptr) {
 ; CHECK: test2
 ; CHECK: cmpxchg8b
-  %val = load atomic i64* %ptr seq_cst, align 4
+  %val = load atomic i64* %ptr seq_cst, align 8
   ret i64 %val
 }