1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -relocation-model=pic -mtriple=sparc | FileCheck --check-prefix=SPARC %s
3 ; RUN: llc < %s -relocation-model=pic -mtriple=sparcv9 | FileCheck --check-prefix=SPARC64 %s
5 ;; SPARC32 and SPARC64 for classic UltraSPARCs implement GETPCX
7 ;; All other SPARC64 targets implement it with `rd %pc, %o7`.
8 ;; Need to do the tests in separate files because apparently `tune-cpu`
9 ;; attribute applies to the entire file at once.
11 @value = external global i32
13 define i32 @testCall() nounwind #0 {
14 ; SPARC-LABEL: testCall:
16 ; SPARC-NEXT: save %sp, -96, %sp
18 ; SPARC-NEXT: call .Ltmp1
20 ; SPARC-NEXT: sethi %hi(_GLOBAL_OFFSET_TABLE_+(.Ltmp2-.Ltmp0)), %i0
22 ; SPARC-NEXT: or %i0, %lo(_GLOBAL_OFFSET_TABLE_+(.Ltmp1-.Ltmp0)), %i0
23 ; SPARC-NEXT: add %i0, %o7, %i0
24 ; SPARC-NEXT: sethi %hi(value), %i1
25 ; SPARC-NEXT: add %i1, %lo(value), %i1
26 ; SPARC-NEXT: ld [%i0+%i1], %i0
27 ; SPARC-NEXT: ld [%i0], %i0
31 ; SPARC64-LABEL: testCall:
33 ; SPARC64-NEXT: save %sp, -128, %sp
34 ; SPARC64-NEXT: .Ltmp0:
35 ; SPARC64-NEXT: call .Ltmp1
36 ; SPARC64-NEXT: .Ltmp2:
37 ; SPARC64-NEXT: sethi %hi(_GLOBAL_OFFSET_TABLE_+(.Ltmp2-.Ltmp0)), %i0
38 ; SPARC64-NEXT: .Ltmp1:
39 ; SPARC64-NEXT: or %i0, %lo(_GLOBAL_OFFSET_TABLE_+(.Ltmp1-.Ltmp0)), %i0
40 ; SPARC64-NEXT: add %i0, %o7, %i0
41 ; SPARC64-NEXT: sethi %hi(value), %i1
42 ; SPARC64-NEXT: add %i1, %lo(value), %i1
43 ; SPARC64-NEXT: ldx [%i0+%i1], %i0
44 ; SPARC64-NEXT: ld [%i0], %i0
46 ; SPARC64-NEXT: restore
47 %1 = load i32, ptr @value
51 attributes #0 = { "tune-cpu"="ultrasparc" }