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 -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips32 -relocation-model=static %s -o - | llvm-readobj -h | FileCheck -check-prefix=CHECK-BE32 %s 20; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips32 %s -o - | llvm-readobj -h | FileCheck -check-prefix=CHECK-BE32_PIC %s 21; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips32r2 -relocation-model=static %s -o - | llvm-readobj -h | FileCheck -check-prefix=CHECK-BE32R2 %s 22; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips32r2 %s -o - | llvm-readobj -h | FileCheck -check-prefix=CHECK-BE32R2_PIC %s 23; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips32r2 -mattr=+micromips -relocation-model=static %s -o - | llvm-readobj -h | FileCheck -check-prefix=CHECK-BE32R2-MICROMIPS %s 24; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips32r2 -mattr=+micromips %s -o - | llvm-readobj -h | FileCheck -check-prefix=CHECK-BE32R2-MICROMIPS_PIC %s 25 26; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips64 -relocation-model=static %s -o - | llvm-readobj -h | FileCheck -check-prefix=CHECK-BE64 %s 27; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips64 %s -o - | llvm-readobj -h | FileCheck -check-prefix=CHECK-BE64_PIC %s 28; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips64r2 -relocation-model=static %s -o - | llvm-readobj -h | FileCheck -check-prefix=CHECK-BE64R2 %s 29; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips64r2 %s -o - | llvm-readobj -h | FileCheck -check-prefix=CHECK-BE64R2_PIC %s 30 31; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips32r2 -mattr=+mips16 -relocation-model=pic %s -o - | llvm-readobj -h | FileCheck -check-prefix=CHECK-LE32R2-MIPS16 %s 32 33; 32(R1) bit with NO_REORDER and static 34; CHECK-BE32: Flags [ (0x50001005) 35; 36; 32(R1) bit with NO_REORDER and PIC 37; CHECK-BE32_PIC: Flags [ (0x50001007) 38; 39; 32R2 bit with NO_REORDER and static 40; CHECK-BE32R2: Flags [ (0x70001005) 41; 42; 32R2 bit with NO_REORDER and PIC 43; CHECK-BE32R2_PIC: Flags [ (0x70001007) 44; 45; 32R2 bit MICROMIPS with NO_REORDER and static 46; CHECK-BE32R2-MICROMIPS: Flags [ (0x72001005) 47; 48; 32R2 bit MICROMIPS with NO_REORDER and PIC 49;CHECK-BE32R2-MICROMIPS_PIC: Flags [ (0x72001007) 50; 51; 64(R1) bit with NO_REORDER and static 52; CHECK-BE64: Flags [ (0x60000005) 53; 54; 64(R1) bit with NO_REORDER and PIC 55; CHECK-BE64_PIC: Flags [ (0x60000007) 56; 57; 64R2 bit with NO_REORDER and static 58; CHECK-BE64R2: Flags [ (0x80000005) 59; 60; 64R2 bit with NO_REORDER and PIC 61; CHECK-BE64R2_PIC: Flags [ (0x80000007) 62; 63; 32R2 bit MIPS16 with PIC 64; CHECK-LE32R2-MIPS16: Flags [ (0x74001006) 65 66define i32 @main() nounwind { 67entry: 68 ret i32 0 69} 70