diff options
author | Walter Lee <walt@tilera.com> | 2012-02-25 19:51:34 +0000 |
---|---|---|
committer | Walter Lee <walt@tilera.com> | 2012-02-25 19:51:34 +0000 |
commit | fb6ceddedd56805fc4fd64792a0e73baa8c22a21 (patch) | |
tree | 035d5e8c3f9a3be2c2b82f975fcde4e4074ba612 /gas/config/tc-tilegx.c | |
parent | 825902491e89db303b036d82eef32ef0b07d4317 (diff) | |
download | gdb-fb6ceddedd56805fc4fd64792a0e73baa8c22a21.zip gdb-fb6ceddedd56805fc4fd64792a0e73baa8c22a21.tar.gz gdb-fb6ceddedd56805fc4fd64792a0e73baa8c22a21.tar.bz2 |
Add big-endian support for tilegx.
bfd/
* config.bfd (tilegx-*-*): rename little endian vector; add big
endian vector.
(tilegxbe-*-*): New case.
* configure.in (bfd_elf32_tilegx_vec): Rename...
(bfd_elf32_tilegx_le_vec): ... to this.
(bfd_elf32_tilegx_be_vec): New vector.
(bfd_elf64_tilegx_vec): Rename...
(bfd_elf64_tilegx_le_vec): ... to this.
(bfd_elf64_tilegx_be_vec): New vector.
* configure: Regenerate.
* elf32-tilegx.c (TARGET_LITTLE_SYM): Rename.
(TARGET_LITTLE_NAME): Ditto.
(TARGET_BIG_SYM): Define.
(TARGET_BIG_NAME): Define.
* elf64-tilegx.c (TARGET_LITTLE_SYM): Rename.
(TARGET_LITTLE_NAME): Ditto.
(TARGET_BIG_SYM): Define.
(TARGET_BIG_NAME): Define.
* targets.c (bfd_elf32_tilegx_vec): Rename...
(bfd_elf32_tilegx_le_vec): ... to this.
(bfd_elf32_tilegx_be_vec): Declare.
(bfd_elf64_tilegx_vec): Rename...
(bfd_elf64_tilegx_le_vec): ... to this.
(bfd_elf64_tilegx_be_vec): Declare.
(_bfd_target_vector): Add / rename above vectors.
binutils/testsuite/
* binutils-all/objdump.exp (cpus_expected): Add tilegx.
gas/
* tc-tilegx.c (tilegx_target_format): Handle big endian.
(OPTION_EB): Define.
(OPTION_EL): Define.
(md_longopts): Add entries for "EB" and "EL".
(md_parse_option): Handle OPTION_EB and OPTION_EL.
(md_show_usage): Add -EB and -EL.
(md_number_to_chars): New.
* tc-tilegx.h (TARGET_BYTES_BIG_ENDIAN): Guard definition with
ifndef.
(md_number_to_chars): Delete.
* configure.tgt (tilegx*be): Handle.
* doc/as.texinfo [TILE-Gx]: Document -EB and -EL.
* doc/c-tilegx.texi: Ditto.
ld/
* Makefile.am (ALL_EMULATION_SOURCES): Add eelf32tilegx_be.c.
(ALL_64_EMULATION_SOURCES): Add eelf64tilegx_be.c.
(eelf32tilegx_be.c): Add rule to build this file.
(eelf64tilegx_be.c): Ditto.
* Makefile.in: Regenerate.
* configure.tgt (tilegx-*-*): Support big endian.
(tilegxbe-*-*): New.
* emulparams/elf32tilegx.sh (OUTPUT_FORMAT): Rename.
(BIG_OUTPUT_FORMAT): Define.
(LITTLE_OUTPUT_FORMAT): Define.
* emulparams/elf32tilegx_be.sh: New.
* emulparams/elf64tilegx.sh (OUTPUT_FORMAT): Rename.
(BIG_OUTPUT_FORMAT): Define.
(LITTLE_OUTPUT_FORMAT): Define.
* emulparams/elf64tilegx_be.sh: New.
ld/testsuite/
* ld-tilegx/reloc-be.d: New.
* ld-tilegx/reloc-le.d: New.
* ld-tilegx/reloc.d: Delete.
* ld-tilegx/tilegx.exp: Test big and little endian.
Diffstat (limited to 'gas/config/tc-tilegx.c')
-rw-r--r-- | gas/config/tc-tilegx.c | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/gas/config/tc-tilegx.c b/gas/config/tc-tilegx.c index 9f6e349..01237d1 100644 --- a/gas/config/tc-tilegx.c +++ b/gas/config/tc-tilegx.c @@ -72,12 +72,18 @@ static int tilegx_arch_size = 64; const char * tilegx_target_format (void) { - return tilegx_arch_size == 64 ? "elf64-tilegx" : "elf32-tilegx"; + if (target_big_endian) { + return tilegx_arch_size == 64 ? "elf64-tilegx-be" : "elf32-tilegx-be"; + } else { + return tilegx_arch_size == 64 ? "elf64-tilegx-le" : "elf32-tilegx-le"; + } } #define OPTION_32 (OPTION_MD_BASE + 0) #define OPTION_64 (OPTION_MD_BASE + 1) +#define OPTION_EB (OPTION_MD_BASE + 2) +#define OPTION_EL (OPTION_MD_BASE + 3) const char *md_shortopts = "VQ:"; @@ -85,6 +91,8 @@ struct option md_longopts[] = { {"32", no_argument, NULL, OPTION_32}, {"64", no_argument, NULL, OPTION_64}, + {"EB", no_argument, NULL, OPTION_EB }, + {"EL", no_argument, NULL, OPTION_EL }, {NULL, no_argument, NULL, 0} }; @@ -113,6 +121,14 @@ md_parse_option (int c, char *arg ATTRIBUTE_UNUSED) tilegx_arch_size = 64; break; + case OPTION_EB: + target_big_endian = 1; + break; + + case OPTION_EL: + target_big_endian = 0; + break; + default: return 0; } @@ -126,6 +142,7 @@ md_show_usage (FILE *stream) fprintf (stream, _("\ -Q ignored\n\ -V print assembler version number\n\ + -EB/-EL generate big-endian/little-endian code\n\ --32/--64 generate 32bit/64bit code\n")); } @@ -1269,6 +1286,15 @@ const pseudo_typeS md_pseudo_table[] = /* Equal to MAX_PRECISION in atof-ieee.c */ #define MAX_LITTLENUMS 6 +void +md_number_to_chars (char * buf, valueT val, int n) +{ + if (target_big_endian) + number_to_chars_bigendian (buf, val, n); + else + number_to_chars_littleendian (buf, val, n); +} + /* Turn the string pointed to by litP into a floating point constant of type TYPE, and emit the appropriate bytes. The number of LITTLENUMS emitted is stored in *SIZEP. An error message is |