brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.9 KiB · 6b6941e Raw
58 lines · plain
1// REQUIRES: arm2// RUN: split-file %s %t3// RUN: llvm-mc --triple=armv7a-none-eabi --arm-add-build-attributes -filetype=obj -o %t.o %t/asm4// RUN: not ld.lld --script %t/lds %t.o -o /dev/null 2>&1 | FileCheck %s5 6//--- lds7SECTIONS {8    .text.0 0x0100000 : AT(0x0100000) { *(.text.0) }9    .text.1 0x0800000 : AT(0x0800000) { *(.text.1) }10    .text.2 0xf0f0000 : AT(0xf0f0000) { *(.text.2) }11}12 13//--- asm14/// This is a variant of arm-adr-long.s with some _NC relocs changed into their15/// checking counterparts, to verify that out-of-range references are caught.16 17 .section .text.0, "ax", %progbits18dat1:19 .word 020 21 .section .text.1, "ax", %progbits22 .global _start23 .type _start, %function24_start:25 .inst 0xe24f0008 // sub r0, pc, #826 .inst 0xe2400004 // sub r0, r0, #427 .reloc 0, R_ARM_ALU_PC_G0, dat128// CHECK: {{.*}}.s.tmp.o:(.text.1+0x0): unencodeable immediate 7340040 for relocation R_ARM_ALU_PC_G029 .reloc 4, R_ARM_ALU_PC_G1, dat130 31 .inst 0xe24f1008 // sub r1, pc, #832 .inst 0xe2411004 // sub r1, r1, #433 .inst 0xe2411000 // sub r1, r1, #034 .reloc 8, R_ARM_ALU_PC_G0_NC, dat235 .reloc 12, R_ARM_ALU_PC_G1, dat236// CHECK: {{.*}}.s.tmp.o:(.text.1+0xc): unencodeable immediate 244252656 for relocation R_ARM_ALU_PC_G137 .reloc 16, R_ARM_ALU_PC_G2, dat238 39 .inst 0xe24f0008 // sub r0, pc, #840 .inst 0xe2400004 // sub r0, r0, #441 .inst 0xe2400000 // sub r0, r0, #042 .reloc 20, R_ARM_ALU_PC_G0, dat143// CHECK: {{.*}}.s.tmp.o:(.text.1+0x14): unencodeable immediate 7340060 for relocation R_ARM_ALU_PC_G044 .reloc 24, R_ARM_ALU_PC_G1, dat145 .reloc 28, R_ARM_ALU_PC_G2, dat146 47 .inst 0xe24f0008 // sub r0, pc, #848 .inst 0xe2400004 // sub r0, r0, #449 .inst 0xe1c000d0 // ldrd r0, r1, [r0, #0]50 .reloc 32, R_ARM_ALU_PC_G0_NC, dat251 .reloc 36, R_ARM_ALU_PC_G1_NC, dat252// CHECK: {{.*}}.s.tmp.o:(.text.1+0x28): relocation R_ARM_LDRS_PC_G2 out of range: 4056 is not in [0, 255]; references 'dat2'53 .reloc 40, R_ARM_LDRS_PC_G2, dat254 55 .section .text.2, "ax", %progbits56dat2:57 .word 058