ARM gcc 4.3.3 fix and armv5 .ltorg
Xerxes Rånby
xerxes at zafena.se
Fri Dec 9 04:32:52 PST 2011
Hi the following patch will re-enable compilation of the cppInterpreter_arm.S using GCC 4.3.3.
The second part will unbreak the armv5 buildbots where they currently complain that
bytecodes_arm.s:2717: Error: invalid literal constant: pool needs to be closer
the problematic opcode block of the generated bytecodes_arm.s then looks like this:
@-----------------------------------------------------------------------------
.macro iaccess_0 jpc_off=0, seq_len=4
...
DISPATCH_FINISH
.endm
Opcode iaccess_0
iaccess_0 <--- line 2717
the patch will fix the compile error by turning the generated opcode block into:
@-----------------------------------------------------------------------------
.macro iaccess_0 jpc_off=0, seq_len=4
...
DISPATCH_FINISH
.endm
Opcode iaccess_0
iaccess_0
.ltorg
OK to push into icedtea6 HEAD?
Cheers
Xerxes
diff -r 96ea1d0f5dc4 arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S
--- a/arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S Thu Dec 08 15:39:55 2011 +0100
+++ b/arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S Fri Dec 09 13:19:33 2011 +0100
@@ -624,15 +624,15 @@
.error "VOLATILE_VERSION macro used before non-volatile DISPATCH_FINISH."
.endif
.endm
-
- .eabi_attribute Tag_ABI_FP_denormal, 1
- .eabi_attribute Tag_ABI_FP_exceptions, 1
- .eabi_attribute Tag_ABI_FP_number_model, 3
- .eabi_attribute Tag_ABI_align8_needed, 1
- .eabi_attribute Tag_ABI_align8_preserved, 1
- .eabi_attribute Tag_ABI_enum_size, 2
- .eabi_attribute Tag_ABI_optimization_goals, 2
- .eabi_attribute Tag_ABI_PCS_wchar_t, 4
+
+ .eabi_attribute 20, 1 @ Tag_ABI_FP_denormal
+ .eabi_attribute 21, 1 @ Tag_ABI_FP_exceptions
+ .eabi_attribute 23, 3 @ Tag_ABI_FP_number_model
+ .eabi_attribute 24, 1 @ Tag_ABI_align8_needed
+ .eabi_attribute 25, 1 @ Tag_ABI_align8_preserved
+ .eabi_attribute 26, 2 @ Tag_ABI_enum_size
+ .eabi_attribute 30, 2 @ Tag_ABI_optimization_goals
+ .eabi_attribute 18, 4 @ Tag_ABI_PCS_wchar_t
.text
diff -r 96ea1d0f5dc4 arm_port/hotspot/tools/mkbc.c
--- a/arm_port/hotspot/tools/mkbc.c Thu Dec 08 15:39:55 2011 +0100
+++ b/arm_port/hotspot/tools/mkbc.c Fri Dec 09 13:19:33 2011 +0100
@@ -529,6 +529,7 @@
// fprintf(bci_f, "%s:\n", impl->do_name);
fprintf(bci_f, "\t%s\n", impl->name);
// fprintf(bci_f, "\tDISPATCH\t%d\n", impl->len);
+ fprintf(bci_f, "\t.ltorg\n");
}
impl = impl->next;
}
More information about the distro-pkg-dev
mailing list