Fixed issue with microMIPS JAL instruction.
[oota-llvm.git] / test / CodeGen / Mips / elf_eflags.ll
1 ; This tests ELF EFLAGS setting with direct object.
2 ; When the assembler is ready a .s file for it will
3 ; be created.
4
5 ; Non-shared (static) is the absence of pic and or cpic.
6
7 ; EF_MIPS_NOREORDER (0x00000001) is always on by default currently
8 ; EF_MIPS_PIC (0x00000002)
9 ; EF_MIPS_CPIC (0x00000004) - See note below
10 ; EF_MIPS_ABI2 (0x00000020) - n32 not tested yet
11 ; EF_MIPS_ARCH_32 (0x50000000)
12 ; EF_MIPS_ARCH_64 (0x60000000)
13 ; EF_MIPS_ARCH_32R2 (0x70000000)
14 ; EF_MIPS_ARCH_64R2 (0x80000000)
15
16 ; Note that EF_MIPS_CPIC is set by -mabicalls which is the default on Linux
17 ; TODO need to support -mno-abicalls
18
19 ; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips32 -relocation-model=static %s -o - | FileCheck -check-prefix=CHECK-LE32 %s
20 ; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips32 %s -o - | FileCheck -check-prefix=CHECK-LE32_PIC %s
21 ; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips32r2 -relocation-model=static %s -o - | FileCheck -check-prefix=CHECK-LE32R2 %s
22 ; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips32r2 %s -o - | FileCheck -check-prefix=CHECK-LE32R2_PIC %s
23 ; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips32r2 -mattr=+micromips -relocation-model=static %s -o - | FileCheck -check-prefix=CHECK-LE32R2-MICROMIPS %s
24 ; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips32r2 -mattr=+micromips %s -o - | FileCheck -check-prefix=CHECK-LE32R2-MICROMIPS_PIC %s
25
26 ; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips64 -relocation-model=static %s -o - | FileCheck -check-prefix=CHECK-LE64 %s
27 ; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips64 %s -o - | FileCheck -check-prefix=CHECK-LE64_PIC %s
28 ; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips64r2 -relocation-model=static %s -o - | FileCheck -check-prefix=CHECK-LE64R2 %s
29 ; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips64r2 %s -o - | FileCheck -check-prefix=CHECK-LE64R2_PIC %s
30
31 ; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips32r2 -mattr=+mips16 -relocation-model=pic %s -o - | FileCheck -check-prefix=CHECK-LE32R2-MIPS16 %s
32
33 ; 32(R1) bit with NO_REORDER and static
34 ; CHECK-LE32: .abicalls
35 ; CHECK-LE32: .option   pic0
36 ; CHECK-LE32: .set      noreorder
37 ;
38 ; 32(R1) bit with NO_REORDER and PIC
39 ; CHECK-LE32_PIC: .abicalls
40 ; CHECK-LE32_PIC: .set  noreorder
41 ;
42 ; 32R2 bit with NO_REORDER and static
43 ; CHECK-LE32R2: .abicalls
44 ; CHECK-LE32R2: .option pic0
45 ; CHECK-LE32R2: .set noreorder
46 ;
47 ; 32R2 bit with NO_REORDER and PIC
48 ; CHECK-LE32R2_PIC: .abicalls
49 ; CHECK-LE32R2_PIC: .set noreorder
50 ;
51 ; 32R2 bit MICROMIPS with NO_REORDER and static
52 ; CHECK-LE32R2-MICROMIPS: .abicalls
53 ; CHECK-LE32R2-MICROMIPS: .option pic0
54 ; CHECK-LE32R2-MICROMIPS: .set  micromips
55 ;
56 ; 32R2 bit MICROMIPS with NO_REORDER and PIC
57 ; CHECK-LE32R2-MICROMIPS_PIC: .abicalls
58 ; CHECK-LE32R2-MICROMIPS_PIC: .set micromips
59 ;
60 ; 64(R1) bit with NO_REORDER and static
61 ; CHECK-LE64: .abicalls
62 ; CHECK-LE64: .set noreorder
63 ;
64 ; 64(R1) bit with NO_REORDER and PIC
65 ; CHECK-LE64_PIC: .abicalls
66 ; CHECK-LE64_PIC: .set noreorder
67 ;
68 ; 64R2 bit with NO_REORDER and static
69 ; CHECK-LE64R2: .abicalls
70 ; CHECK-LE64R2: .set noreorder
71 ;
72 ; 64R2 bit with NO_REORDER and PIC
73 ; CHECK-LE64R2_PIC: .abicalls
74 ; CHECK-LE64R2_PIC: .set noreorder
75 ;
76 ; 32R2 bit MIPS16 with PIC
77 ; CHECK-LE32R2-MIPS16: .abicalls
78 ; CHECK-LE32R2-MIPS16: .set mips16
79
80 define i32 @main() nounwind {
81 entry:
82   ret i32 0
83 }