diff options
author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2009-01-14 07:32:53 -0500 |
---|---|---|
committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2009-01-16 03:38:05 -0500 |
commit | 61f3632fdcdcf547f6487f56b45976d7964756c4 (patch) | |
tree | cc24f13be370659b43d0ef517bd24d779f70e574 /arch/avr32 | |
parent | 8d29b7b9f81d6b83d869ff054e6c189d6da73f1f (diff) |
avr32: fix out-of-range rjmp instruction on large kernels
Use .subsection to place fixups closer to their jump targets. This
increases the maximum size of the kernel before we get link errors
significantly.
The problem here is that we don't have a "call"-ish pseudo-instruction
to use instead of rjmp...we could add one, but that means we'll have to
wait for a new toolchain release, wait until we're fairly sure most
people are using it, etc...
As an added bonus, it should decrease the RAM footprint slightly,
though it might pollute the icache a bit more.
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/include/asm/uaccess.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/avr32/include/asm/uaccess.h b/arch/avr32/include/asm/uaccess.h index ed092395215e..245b2ee213c9 100644 --- a/arch/avr32/include/asm/uaccess.h +++ b/arch/avr32/include/asm/uaccess.h | |||
@@ -230,10 +230,10 @@ extern int __put_user_bad(void); | |||
230 | asm volatile( \ | 230 | asm volatile( \ |
231 | "1: ld." suffix " %1, %3 \n" \ | 231 | "1: ld." suffix " %1, %3 \n" \ |
232 | "2: \n" \ | 232 | "2: \n" \ |
233 | " .section .fixup, \"ax\" \n" \ | 233 | " .subsection 1 \n" \ |
234 | "3: mov %0, %4 \n" \ | 234 | "3: mov %0, %4 \n" \ |
235 | " rjmp 2b \n" \ | 235 | " rjmp 2b \n" \ |
236 | " .previous \n" \ | 236 | " .subsection 0 \n" \ |
237 | " .section __ex_table, \"a\" \n" \ | 237 | " .section __ex_table, \"a\" \n" \ |
238 | " .long 1b, 3b \n" \ | 238 | " .long 1b, 3b \n" \ |
239 | " .previous \n" \ | 239 | " .previous \n" \ |
@@ -295,10 +295,10 @@ extern int __put_user_bad(void); | |||
295 | asm volatile( \ | 295 | asm volatile( \ |
296 | "1: st." suffix " %1, %3 \n" \ | 296 | "1: st." suffix " %1, %3 \n" \ |
297 | "2: \n" \ | 297 | "2: \n" \ |
298 | " .section .fixup, \"ax\" \n" \ | 298 | " .subsection 1 \n" \ |
299 | "3: mov %0, %4 \n" \ | 299 | "3: mov %0, %4 \n" \ |
300 | " rjmp 2b \n" \ | 300 | " rjmp 2b \n" \ |
301 | " .previous \n" \ | 301 | " .subsection 0 \n" \ |
302 | " .section __ex_table, \"a\" \n" \ | 302 | " .section __ex_table, \"a\" \n" \ |
303 | " .long 1b, 3b \n" \ | 303 | " .long 1b, 3b \n" \ |
304 | " .previous \n" \ | 304 | " .previous \n" \ |