From: Allen Martin <amartin@nvidia.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 2/7] HACK: rearrange link order for thumb
Date: Fri, 6 Jul 2012 13:33:29 -0700 [thread overview]
Message-ID: <20120706203329.GA29103@nvidia.com> (raw)
In-Reply-To: <4FF737F7.8040008@wwwdotorg.org>
On Fri, Jul 06, 2012 at 12:09:43PM -0700, Stephen Warren wrote:
> On 07/06/2012 12:08 PM, Allen Martin wrote:
> > Rearrange the link order of libraries to avoid out of bound
> > relocations in thumb mode. I have no idea how to fix this for real.
>
> Are the relocations branches or something else? It looks like
> unconditional jump range is +/-4MB for Thumb1 and +/-16MB for Thumb2, so
> I'm surprised we'd be exceeding that, considering the U-boot binary is
> on the order of 256KB on Tegra right now.
This is the relcation type:
arch/arm/lib/libarm.o: In function `__flush_dcache_all':
/home/arm/u-boot/arch/arm/lib/cache.c:52: relocation truncated to fit: R_ARM_THM_JUMP11 against symbol `flush_cache' defined in .text section in arch/arm/cpu/armv7/libarmv7.o
The instruction is a "b.n" not a "b", which is what is causing the problem.
I think because of the weak alias the compiler used a short jump to
the local function, but when it got linked it resolved to a function
that was too far away for the short jump:
void flush_cache(unsigned long start, unsigned long size)
__attribute__((weak, alias("__flush_cache")));
00000002 <__flush_dcache_all>:
2: 2000 movs r0, #0
4: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff
8: e7fe b.n 0 <__flush_cache>
It looks like there's a "-fno-optimize-sibling-calls" option to gcc to
avoid this problem. Seems a shame to disable all short jumps for this
one case though.
-Allen
--
nvpublic
next prev parent reply other threads:[~2012-07-06 20:33 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-06 18:08 [U-Boot] [PATCH 0/7] tegra20: enable thumb Allen Martin
2012-07-06 18:08 ` [U-Boot] [PATCH 1/7] tegra20: remove inline assembly for u32 cast Allen Martin
2012-07-06 18:08 ` [U-Boot] [PATCH 2/7] HACK: rearrange link order for thumb Allen Martin
2012-07-06 19:09 ` Stephen Warren
2012-07-06 20:33 ` Allen Martin [this message]
2012-07-06 20:44 ` Stephen Warren
2012-07-06 21:32 ` Allen Martin
2012-07-06 23:04 ` Allen Martin
2012-07-06 23:17 ` Allen Martin
2012-07-07 10:15 ` Albert ARIBAUD
2012-07-07 18:42 ` Allen Martin
2012-07-10 0:45 ` Allen Martin
2012-07-10 0:57 ` Graeme Russ
2012-07-12 18:45 ` Albert ARIBAUD
2012-07-17 19:26 ` Allen Martin
2012-07-06 18:08 ` [U-Boot] [PATCH 3/7] tegra20: enable thumb build Allen Martin
2012-07-06 19:10 ` Stephen Warren
2012-07-06 20:34 ` Allen Martin
2012-07-06 18:08 ` [U-Boot] [PATCH 4/7] arm: add _thumb1_case_uqi to libgcc Allen Martin
2012-07-06 18:09 ` [U-Boot] [PATCH 5/7] arm: add thumb compatible return instructions Allen Martin
2012-07-06 18:09 ` [U-Boot] [PATCH 6/7] arm: use thumb compatible return in arm720t Allen Martin
2012-07-06 18:09 ` [U-Boot] [PATCH 7/7] arm: change arm720t to armv4t Allen Martin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120706203329.GA29103@nvidia.com \
--to=amartin@nvidia.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox