mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 03:30:22 +00:00
86245071b5
Print the range of registers used with a single letter prefix. This better matches what the shader compiler produces and is overall less obnoxious than concatenating all of the subregister names together. Instead of SGPR0, it will print s0. Instead of SGPR0_SGPR1, it will print s[0:1] and so on. There doesn't appear to be a straightforward way to get the actual register info in the InstPrinter, so this parses the generated name to print with the new syntax. The required test changes are pretty nasty, and register matching regexes are now worse. Since there isn't a way to add to a variable in FileCheck, some of the tests now don't check the exact number of registers used, but I don't think that will be a real problem. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194443 91177308-0d34-0410-b5e6-96231b3b80d8
43 lines
1.6 KiB
LLVM
43 lines
1.6 KiB
LLVM
; RUN: llc < %s -march=r600 -mcpu=verde -verify-machineinstrs | FileCheck %s
|
|
|
|
; On Southern Islands GPUs the local address space(3) uses 32-bit pointers and
|
|
; the global address space(1) uses 64-bit pointers. These tests check to make sure
|
|
; the correct pointer size is used for the local address space.
|
|
|
|
; The e{{32|64}} suffix on the instructions refers to the encoding size and not
|
|
; the size of the operands. The operand size is denoted in the instruction name.
|
|
; Instructions with B32, U32, and I32 in their name take 32-bit operands, while
|
|
; instructions with B64, U64, and I64 take 64-bit operands.
|
|
|
|
; CHECK-LABEL: @local_address_load
|
|
; CHECK: V_MOV_B32_e{{32|64}} [[PTR:v[0-9]]]
|
|
; CHECK: DS_READ_B32 [[PTR]]
|
|
define void @local_address_load(i32 addrspace(1)* %out, i32 addrspace(3)* %in) {
|
|
entry:
|
|
%0 = load i32 addrspace(3)* %in
|
|
store i32 %0, i32 addrspace(1)* %out
|
|
ret void
|
|
}
|
|
|
|
; CHECK-LABEL: @local_address_gep
|
|
; CHECK: V_ADD_I32_e{{32|64}} [[PTR:v[0-9]]]
|
|
; CHECK: DS_READ_B32 [[PTR]]
|
|
define void @local_address_gep(i32 addrspace(1)* %out, i32 addrspace(3)* %in, i32 %offset) {
|
|
entry:
|
|
%0 = getelementptr i32 addrspace(3)* %in, i32 %offset
|
|
%1 = load i32 addrspace(3)* %0
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
ret void
|
|
}
|
|
|
|
; CHECK-LABEL: @local_address_gep_const_offset
|
|
; CHECK: V_ADD_I32_e{{32|64}} [[PTR:v[0-9]]]
|
|
; CHECK: DS_READ_B32 [[PTR]]
|
|
define void @local_address_gep_const_offset(i32 addrspace(1)* %out, i32 addrspace(3)* %in) {
|
|
entry:
|
|
%0 = getelementptr i32 addrspace(3)* %in, i32 1
|
|
%1 = load i32 addrspace(3)* %0
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
ret void
|
|
}
|