2012-03-26 19:18:29 +00:00
|
|
|
@ Test to ensure that a Thumb to ARM call exceeding 4Mb generates a stub.
|
2014-09-12 22:14:23 +00:00
|
|
|
@ Check that we can generate two types of stub in the same section.
|
2012-03-26 19:18:29 +00:00
|
|
|
|
|
|
|
.global _start
|
|
|
|
.syntax unified
|
|
|
|
|
2014-09-12 22:14:23 +00:00
|
|
|
@ We will place the section .text at 0x1c01010.
|
2012-03-26 19:18:29 +00:00
|
|
|
|
|
|
|
.text
|
|
|
|
.thumb_func
|
|
|
|
_start:
|
2014-09-12 22:14:23 +00:00
|
|
|
.global bar
|
|
|
|
bl bar
|
|
|
|
@ This call is close enough to generate a "short branch" stub
|
|
|
|
@ or no stub if blx is available.
|
|
|
|
.space 0x0300000
|
2012-03-26 19:18:29 +00:00
|
|
|
bl bar
|
|
|
|
|
|
|
|
@ We will place the section .foo at 0x2001014.
|
|
|
|
|
|
|
|
.section .foo, "xa"
|
|
|
|
|
|
|
|
.arm
|
|
|
|
.type bar, %function
|
|
|
|
bar:
|
|
|
|
bx lr
|
|
|
|
|