[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / Mips / 2008-07-15-SmallSection.ll
blob3f42489141f0b27c9bc8d5b58f8fa44177065b27
1 ; RUN: llc < %s -march=mips -mcpu=mips32 -mips-ssection-threshold=8 -verify-machineinstrs \
2 ; RUN:     -relocation-model=static -mattr=+noabicalls -mgpopt \
3 ; RUN:   | FileCheck %s --check-prefixes=BASIC,COMMON,ADDR32
4 ; RUN: llc < %s -march=mips -mcpu=mips32 -mips-ssection-threshold=8 -verify-machineinstrs \
5 ; RUN:     -relocation-model=static -mattr=+noabicalls -mgpopt -membedded-data \
6 ; RUN:   | FileCheck %s --check-prefixes=EMBDATA,COMMON,ADDR32
8 ; RUN: llc < %s -march=mips64 -mcpu=mips4 -mips-ssection-threshold=8 -verify-machineinstrs \
9 ; RUN:     -relocation-model=static -mattr=+noabicalls -mgpopt -target-abi n64 \
10 ; RUN:   | FileCheck %s --check-prefixes=BASIC,COMMON,N64
11 ; RUN: llc < %s -march=mips64 -mcpu=mips4 -mips-ssection-threshold=8 -verify-machineinstrs \
12 ; RUN:     -relocation-model=static -mattr=+noabicalls,+sym32 -mgpopt -target-abi n64 \
13 ; RUN:   | FileCheck %s --check-prefixes=BASIC,COMMON,N64
14 ; RUN: llc < %s -march=mips64 -mcpu=mips4 -mips-ssection-threshold=8 -verify-machineinstrs \
15 ; RUN:     -relocation-model=static -mattr=+noabicalls -mgpopt -target-abi n32 \
16 ; RUN:   | FileCheck %s --check-prefixes=BASIC,COMMON,ADDR32
18 ; Test the layout of objects when compiling for static, noabicalls environment.
20 %struct.anon = type { i32, i32 }
22 ; Check that when synthesizing a pointer to the second element of foo, that
23 ; we use the correct addition operation. O32 and N32 have 32-bit address
24 ; spaces, so they use addiu. N64 has a 64bit address space, but has a submode
25 ; where symbol sizes are 32 bits. In those cases we use daddiu.
27 ; CHECK-LABEL: A1:
28 ; N64:       daddiu ${{[0-9]+}}, $gp, %gp_rel(foo)
29 ; ADDR32:    addiu ${{[0-9]+}}, $gp, %gp_rel(foo)
31 ; BASIC: .type  s0,@object
32 ; BASIC-NEXT: .section .sdata,"aw",@progbits
34 ; EMDATA: .type  s0,@object
35 ; EMDATA-NEXT: .section .rodata,"a",@progbits
37 @s0 = constant [8 x i8] c"AAAAAAA\00", align 4
39 ; BASIC: .type  foo,@object
40 ; BASIC-NOT:  .section
42 ; EMBDATA: .type  foo,@object
43 ; EMBDATA-NEXT:  .section .sdata,"aw",@progbits
44 @foo = global %struct.anon { i32 2, i32 3 }
46 ; COMMON:  .type bar,@object
47 ; COMMON-NEXT:  .section  .sbss,"aw",@nobits
48 @bar = global %struct.anon zeroinitializer
50 define i8* @A0() nounwind {
51 entry:
52         ret i8* getelementptr ([8 x i8], [8 x i8]* @s0, i32 0, i32 0)
55 define i32 @A1() nounwind {
56 entry:
57   load i32, i32* getelementptr (%struct.anon, %struct.anon* @foo, i32 0, i32 0), align 8 
58   load i32, i32* getelementptr (%struct.anon, %struct.anon* @foo, i32 0, i32 1), align 4 
59   add i32 %1, %0
60   ret i32 %2