diff options
| author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2019-01-26 01:42:13 +0000 |
|---|---|---|
| committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2019-01-26 01:42:13 +0000 |
| commit | cdc201fcdea869c6bd6290bd2611714eb195db0c (patch) | |
| tree | dc09b2b6c7a60f8379495edf412ffa4bfd5e8256 /llvm/test/CodeGen/AArch64 | |
| parent | bb01a098b15f1a87fee0f8882c28e6b2141eadda (diff) | |
| download | bcm5719-llvm-cdc201fcdea869c6bd6290bd2611714eb195db0c.tar.gz bcm5719-llvm-cdc201fcdea869c6bd6290bd2611714eb195db0c.zip | |
GlobalISel: Fix address space limit in LLT
The IR enforced limit for the address space is 24-bits, but LLT was
only using 23-bits. Additionally, the argument to the constructor was
truncating to 16-bits.
A similar problem still exists for the number of vector elements. The
IR enforces no limit, so if you try to use a vector with > 65535
elements the IRTranslator asserts in the LLT constructor.
llvm-svn: 352264
Diffstat (limited to 'llvm/test/CodeGen/AArch64')
| -rw-r--r-- | llvm/test/CodeGen/AArch64/GlobalISel/irtranslator-max-address-space.ll | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AArch64/GlobalISel/irtranslator-max-address-space.ll b/llvm/test/CodeGen/AArch64/GlobalISel/irtranslator-max-address-space.ll new file mode 100644 index 00000000000..5bbc0ede90c --- /dev/null +++ b/llvm/test/CodeGen/AArch64/GlobalISel/irtranslator-max-address-space.ll @@ -0,0 +1,26 @@ +; RUN: llc -O0 -mtriple=aarch64-apple-ios -global-isel -stop-after=irtranslator %s -o - | FileCheck %s + +; CHECK-LABEL: name: store_max_address_space +; CHECK: %0:_(p16777215) = COPY $x0 +; CHECK: G_STORE %1(s32), %0(p16777215) :: (store 4 into %ir.ptr, addrspace 16777215) +define void @store_max_address_space(i32 addrspace(16777215)* %ptr) { + store i32 0, i32 addrspace(16777215)* %ptr + ret void +} + +; CHECK-LABEL: name: store_max_address_space_vector +; CHECK: %0:_(<2 x p16777215>) = COPY $q0 +; CHECK: %1:_(p16777215) = G_EXTRACT_VECTOR_ELT %0(<2 x p16777215>), %2(s64) +; CHECK: %1(p16777215) :: (store 4 into %ir.elt0, addrspace 16777215) +define void @store_max_address_space_vector(<2 x i32 addrspace(16777215)*> %vptr) { + %elt0 = extractelement <2 x i32 addrspace(16777215)*> %vptr, i32 0 + store i32 0, i32 addrspace(16777215)* %elt0 + ret void +} + +; CHECK-LABEL: name: max_address_space_vector_max_num_elts +; CHECK: %0:_(<65535 x p16777215>) = G_LOAD %1(p0) :: (volatile load 524280 from `<65535 x i32 addrspace(16777215)*>* undef`, align 524288) +define void @max_address_space_vector_max_num_elts() { + %load = load volatile <65535 x i32 addrspace(16777215)*>, <65535 x i32 addrspace(16777215)*>* undef + ret void +} |

