brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.7 KiB · 094661f Raw
76 lines · plain
1# REQUIRES: mips2# Check handling of microMIPS relocations.3 4# RUN: echo "SECTIONS { \5# RUN:         . = 0x20000;  .text ALIGN(0x100) : { *(.text) } \6# RUN:         . = 0x20300;  .plt  : { *(.plt) } \7# RUN:         . = 0x30000;  .data : { *(.data) } \8# RUN:       }" > %t.script9 10# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux \11# RUN:         -mattr=micromips %S/Inputs/mips-micro.s -o %t1eb.o12# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux \13# RUN:         -mattr=micromips %s -o %t2eb.o14# RUN: ld.lld -o %teb.exe -script %t.script %t1eb.o %t2eb.o15# RUN: llvm-objdump --no-print-imm-hex -d -t -s --mattr=micromips --no-show-raw-insn %teb.exe \16# RUN:   | FileCheck --check-prefixes=ASM,EB %s17# RUN: llvm-readelf -h %teb.exe | FileCheck --check-prefix=ELF %s18 19# RUN: llvm-mc -filetype=obj -triple=mipsel-unknown-linux \20# RUN:         -mattr=micromips %S/Inputs/mips-micro.s -o %t1el.o21# RUN: llvm-mc -filetype=obj -triple=mipsel-unknown-linux \22# RUN:         -mattr=micromips %s -o %t2el.o23# RUN: ld.lld -o %tel.exe -script %t.script %t1el.o %t2el.o24# RUN: llvm-objdump --no-print-imm-hex -d -t -s --mattr=micromips --no-show-raw-insn %tel.exe \25# RUN:   | FileCheck --check-prefixes=ASM,EL %s26# RUN: llvm-readelf -h %tel.exe | FileCheck --check-prefix=ELF %s27 28# ASM: 00038000 l       .got   00000000 .hidden _gp29# ASM: 00020100 g F     .text  00000000 0x80 foo30# ASM: 00020110 g       .text  00000000 0x80 __start31 32# EB:      Contents of section .data:33# EB-NEXT:  30000 fffe811134 35# EB:      Contents of section .debug_info36# EB-NEXT:  0000 0002011137 38# EL:      Contents of section .data:39# EL-NEXT:  30000 1181feff40 41# EL:      Contents of section .debug_info42# EL-NEXT:  0000 1101020043 44# ASM:      <__start>:45# ASM-NEXT:      20110:  lui     $3, 146# ASM-NEXT:              addiu   $3, $3, 3249547# ASM-NEXT:              lw      $3, -32744($gp)48# ASM-NEXT:              lw      $3, -32744($3)49# ASM-NEXT:              beqz16  $6, 0x2010050# ASM-NEXT:              sll     $3, $fp, 051# ASM-NEXT:              b16     0x200fe52# ASM-NEXT:              nop53# ASM-NEXT:              b       0x2010054 55# ELF: Entry point address: 0x2011156 57  .text58  .set micromips59  .global __start60__start:61  lui     $3, %hi(_gp_disp)       # R_MICROMIPS_HI1662  addiu   $3, $3, %lo(_gp_disp)   # R_MICROMIPS_LO1663 64  lw      $3, %call16(foo)($gp)   # R_MICROMIPS_CALL1665  lw      $3, %got(foo)($3)       # R_MICROMIPS_GOT1666 67  beqz16  $6, foo                 # R_MICROMIPS_PC7_S168  b16     foo                     # R_MICROMIPS_PC10_S169  b       foo                     # R_MICROMIPS_PC16_S170 71  .data72  .gpword __start                 # R_MIPS_GPREL3273 74  .section .debug_info,"",@0x7000001e75  .word __start                   # R_MIPS_3276