reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
// REQUIRES: arm
// RUN: llvm-mc -arm-add-build-attributes -filetype=obj -triple=armv5-none-linux-gnueabi %s -o %t
// RUN: ld.lld %t -o %t2
// RUN: llvm-objdump -d %t2 -triple=armv5-none-linux-gnueabi | FileCheck %s
// RUN: ld.lld %t -o %t3 --shared
// RUN: llvm-objdump -d %t3 -triple=armv5-none-linux-gnueabi | FileCheck --check-prefix=CHECK-PI %s

// Test ARM Thumb Interworking on older Arm architectures using Thunks that do
// not use MOVT/MOVW instructions.
// For pure interworking (not considering range extension) there is only the
// case of an Arm B to a Thumb Symbol to consider as in older Arm architectures
// there is no Thumb B.w that we can intercept with a Thunk and we still assume
// support for the blx instruction for Thumb BL and BLX to an Arm symbol.
        .arm
        .text
        .syntax unified
        .cpu    arm10tdmi

        .text
        .globl _start
        .type _start, %function
        .balign 0x1000
_start:
        b thumb_func
        bl thumb_func
        blx thumb_func
        bx lr

// CHECK: _start:
// CHECK-NEXT: 12000: 03 00 00 ea     b       #12 <__ARMv5ABSLongThunk_thumb_func>
// CHECK-NEXT: 12004: 01 00 00 fa     blx     #4 <thumb_func>
// CHECK-NEXT: 12008: 00 00 00 fa     blx     #0 <thumb_func>
// CHECK-NEXT: 1200c: 1e ff 2f e1     bx      lr

// CHECK: thumb_func:
// CHECK-NEXT: 12010: 70 47   bx      lr

// CHECK: __ARMv5ABSLongThunk_thumb_func:
// CHECK-NEXT: 12014: 04 f0 1f e5     ldr     pc, [pc, #-4]
// CHECK: $d:
// CHECK-NEXT: 12018: 11 20 01 00     .word   0x00012011

// CHECK-PI: _start:
// CHECK-PI-NEXT: 2000: 03 00 00 ea     b       #12 <__ARMV5PILongThunk_thumb_func>
// CHECK-PI-NEXT: 2004: 01 00 00 fa     blx     #4 <thumb_func>
// CHECK-PI-NEXT: 2008: 00 00 00 fa     blx     #0 <thumb_func>
// CHECK-PI-NEXT: 200c: 1e ff 2f e1     bx      lr

// CHECK-PI: thumb_func:
// CHECK-PI-NEXT: 2010: 70 47   bx      lr

// CHECK-PI: __ARMV5PILongThunk_thumb_func:
// CHECK-PI-NEXT: 2014: 04 c0 9f e5     ldr     r12, [pc, #4]
// CHECK-PI-NEXT: 2018: 0c c0 8f e0     add     r12, pc, r12
// CHECK-PI-NEXT: 201c: 1c ff 2f e1     bx      r12
// CHECK-PI: $d:
// CHECK-PI-NEXT: 2020: f1 ff ff ff     .word   0xfffffff1

        .section .text.1, "ax", %progbits
        .thumb
        .hidden thumb_func
        .type thumb_func, %function
thumb_func:
        bx lr