1 ; RUN: llc -march=mipsel -relocation-model=pic < %s | FileCheck %s
3 @data = global [8193 x i32] zeroinitializer
5 define void @R(i32 *%p) nounwind {
9 call void asm sideeffect "lw $$1, $0", "*R,~{$1}"(i32* elementtype(i32) getelementptr inbounds ([8193 x i32], [8193 x i32]* @data, i32 0, i32 0))
11 ; CHECK: lw $[[BASEPTR:[0-9]+]], %got(data)(
13 ; CHECK: lw $1, 0($[[BASEPTR]])
19 define void @R_offset_4(i32 *%p) nounwind {
21 ; CHECK-LABEL: R_offset_4:
23 call void asm sideeffect "lw $$1, $0", "*R,~{$1}"(i32* elementtype(i32) getelementptr inbounds ([8193 x i32], [8193 x i32]* @data, i32 0, i32 1))
25 ; CHECK: lw $[[BASEPTR:[0-9]+]], %got(data)(
27 ; CHECK: lw $1, 4($[[BASEPTR]])
33 define void @R_offset_254(i32 *%p) nounwind {
35 ; CHECK-LABEL: R_offset_254:
37 call void asm sideeffect "lw $$1, $0", "*R,~{$1}"(i32* elementtype(i32) getelementptr inbounds ([8193 x i32], [8193 x i32]* @data, i32 0, i32 63))
39 ; CHECK-DAG: lw $[[BASEPTR:[0-9]+]], %got(data)(
41 ; CHECK: lw $1, 252($[[BASEPTR]])
47 define void @R_offset_256(i32 *%p) nounwind {
49 ; CHECK-LABEL: R_offset_256:
51 call void asm sideeffect "lw $$1, $0", "*R,~{$1}"(i32* elementtype(i32) getelementptr inbounds ([8193 x i32], [8193 x i32]* @data, i32 0, i32 64))
53 ; CHECK-DAG: lw $[[BASEPTR:[0-9]+]], %got(data)(
54 ; CHECK: addiu $[[BASEPTR2:[0-9]+]], $[[BASEPTR]], 256
56 ; CHECK: lw $1, 0($[[BASEPTR2]])