[PATCH] D128483: [AVR] Support unaligned store
Ayke via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 15 05:30:06 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGde48717fcf1c: [AVR] Support unaligned store (authored by aykevl).
Changed prior to commit:
https://reviews.llvm.org/D128483?vs=439579&id=452638#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128483/new/
https://reviews.llvm.org/D128483
Files:
llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
llvm/test/CodeGen/AVR/unaligned-atomic-loads.ll
llvm/test/CodeGen/AVR/unaligned-atomic-ops.ll
Index: llvm/test/CodeGen/AVR/unaligned-atomic-ops.ll
===================================================================
--- llvm/test/CodeGen/AVR/unaligned-atomic-ops.ll
+++ llvm/test/CodeGen/AVR/unaligned-atomic-ops.ll
@@ -1,6 +1,6 @@
; RUN: llc -mattr=addsubiw < %s -march=avr | FileCheck %s
-; This verifies that the middle end can handle an unaligned atomic load.
+; This verifies that the backend can handle an unaligned atomic load and store.
;
; In the past, an assertion inside the SelectionDAGBuilder would always
; hit an assertion for unaligned loads and stores.
@@ -14,6 +14,7 @@
start:
%a = getelementptr inbounds %AtomicI16, %AtomicI16* %self, i16 0, i32 0, i32 0
load atomic i16, i16* %a seq_cst, align 1
+ store atomic i16 5, i16* %a seq_cst, align 1
ret void
}
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
===================================================================
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -4733,7 +4733,8 @@
EVT MemVT =
TLI.getMemValueType(DAG.getDataLayout(), I.getValueOperand()->getType());
- if (I.getAlign().value() < MemVT.getSizeInBits() / 8)
+ if (!TLI.supportsUnalignedAtomics() &&
+ I.getAlign().value() < MemVT.getSizeInBits() / 8)
report_fatal_error("Cannot generate unaligned atomic store");
auto Flags = TLI.getStoreMemOperandFlags(I, DAG.getDataLayout());
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D128483.452638.patch
Type: text/x-patch
Size: 1458 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220815/cbb0e380/attachment.bin>
More information about the llvm-commits
mailing list