forked from cbarne200/gcc68k
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
/: * configure.ac (tilepro-*-*) Change to tilepro*-*-*. (tilegx-*-*): Change to tilegx*-*-*. * configure: Regenerate. contrib/: * config-list.mk (LIST): Add tilegxbe-linux-gnu. libcpp/: * configure.ac: Change "tilepro" triplet to "tilepro*". * configure: Regenerate. libgcc/: * config.host: Support "tilegx*" and "tilepro*" triplets. * config/tilegx/sfp-machine32.h (__BYTE_ORDER): Handle big endian. * config/tilegx/sfp-machine64.h (__BYTE_ORDER): Handle big endian. gcc/: * config.gcc (tilepro-*-*): Change to tilepro*-*-*. (tilegx-*-linux*): Change to tilegx*-*-linux*; Support tilegxbe triplet. * common/config/tilegx/tilegx-common.c (TARGET_DEFAULT_TARGET_FLAGS): Define. * config/tilegx/linux.h (ASM_SPEC): Add endian_spec. (LINK_SPEC): Ditto. * config/tilegx/sync.md (atomic_test_and_set): Handle big endian. * config/tilegx/tilegx.c (tilegx_return_in_msb): New. (tilegx_gimplify_va_arg_expr): Handle big endian. (tilegx_expand_unaligned_load): Ditto. (tilegx_expand_unaligned_store): Ditto. (TARGET_RETURN_IN_MSB): New. * config/tilegx/tilegx.h (TARGET_DEFAULT): New. (TARGET_ENDIAN_DEFAULT): New. (TARGET_BIG_ENDIAN): Handle big endian. (BYTES_BIG_ENDIAN): Ditto. (WORDS_BIG_ENDIAN): Ditto. (FLOAT_WORDS_BIG_ENDIAN): Ditto. (ENDIAN_SPEC): New. (EXTRA_SPECS): New. * config/tilegx/tilegx.md (extv): Handle big endian. (extzv): Ditto. (insn_st<n>): Ditto. (insn_st<n>_add<bitsuffix>): Ditto. (insn_stnt<n>): Ditto. (insn_stnt<n>_add<bitsuffix>):Ditto. (vec_interleave_highv8qi): Handle big endian. (vec_interleave_highv8qi_be): New. (vec_interleave_highv8qi_le): New. (insn_v1int_h): Handle big endian. (vec_interleave_lowv8qi): Handle big endian. (vec_interleave_lowv8qi_be): New. (vec_interleave_lowv8qi_le): New. (insn_v1int_l): Handle big endian. (vec_interleave_highv4hi): Handle big endian. (vec_interleave_highv4hi_be): New. (vec_interleave_highv4hi_le): New. (insn_v2int_h): Handle big endian. (vec_interleave_lowv4hi): Handle big endian. (vec_interleave_lowv4hi_be): New. (vec_interleave_lowv4hi_le): New. (insn_v2int_l): Handle big endian. (vec_interleave_highv2si): Handle big endian. (vec_interleave_highv2si_be): New. (vec_interleave_highv2si_le): New. (insn_v4int_h): Handle big endian. (vec_interleave_lowv2si): Handle big endian. (vec_interleave_lowv2si_be): New. (vec_interleave_lowv2si_le): New. (insn_v4int_l): Handle big endian. * config/tilegx/tilegx.opt (mbig-endian): New option. (mlittle-endian): New option. * doc/install.texi: Document tilegxbe-linux. * doc/invoke.texi: Document -mbig-endian and -mlittle-endian. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@208069 138bc75d-0d04-0410-961f-82ee72b054a4
- Loading branch information
walt
committed
Feb 24, 2014
1 parent
54c6250
commit 2da3551
Showing
23 changed files
with
502 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2014-02-24 Walter Lee <[email protected]> | ||
|
||
* configure.ac (tilepro-*-*) Change to tilepro*-*-*. | ||
(tilegx-*-*): Change to tilegx*-*-*. | ||
* configure: Regenerate. | ||
|
||
2014-02-17 Loren J. Rittle <[email protected]> | ||
|
||
* MAINTAINERS (Various Maintainers: c++ runtime libs): Remove myself. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
2014-02-24 Walter Lee <[email protected]> | ||
|
||
* config-list.mk (LIST): Add tilegxbe-linux-gnu. | ||
|
||
2014-02-13 Richard Biener <[email protected]> | ||
|
||
* download_prerequisites: Update ISL and CLOOG versions. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,61 @@ | ||
2014-02-24 Walter Lee <[email protected]> | ||
|
||
* config.gcc (tilepro-*-*): Change to tilepro*-*-*. | ||
(tilegx-*-linux*): Change to tilegx*-*-linux*; Support tilegxbe | ||
triplet. | ||
* common/config/tilegx/tilegx-common.c | ||
(TARGET_DEFAULT_TARGET_FLAGS): Define. | ||
* config/tilegx/linux.h (ASM_SPEC): Add endian_spec. | ||
(LINK_SPEC): Ditto. | ||
* config/tilegx/sync.md (atomic_test_and_set): Handle big endian. | ||
* config/tilegx/tilegx.c (tilegx_return_in_msb): New. | ||
(tilegx_gimplify_va_arg_expr): Handle big endian. | ||
(tilegx_expand_unaligned_load): Ditto. | ||
(tilegx_expand_unaligned_store): Ditto. | ||
(TARGET_RETURN_IN_MSB): New. | ||
* config/tilegx/tilegx.h (TARGET_DEFAULT): New. | ||
(TARGET_ENDIAN_DEFAULT): New. | ||
(TARGET_BIG_ENDIAN): Handle big endian. | ||
(BYTES_BIG_ENDIAN): Ditto. | ||
(WORDS_BIG_ENDIAN): Ditto. | ||
(FLOAT_WORDS_BIG_ENDIAN): Ditto. | ||
(ENDIAN_SPEC): New. | ||
(EXTRA_SPECS): New. | ||
* config/tilegx/tilegx.md (extv): Handle big endian. | ||
(extzv): Ditto. | ||
(insn_st<n>): Ditto. | ||
(insn_st<n>_add<bitsuffix>): Ditto. | ||
(insn_stnt<n>): Ditto. | ||
(insn_stnt<n>_add<bitsuffix>):Ditto. | ||
(vec_interleave_highv8qi): Handle big endian. | ||
(vec_interleave_highv8qi_be): New. | ||
(vec_interleave_highv8qi_le): New. | ||
(insn_v1int_h): Handle big endian. | ||
(vec_interleave_lowv8qi): Handle big endian. | ||
(vec_interleave_lowv8qi_be): New. | ||
(vec_interleave_lowv8qi_le): New. | ||
(insn_v1int_l): Handle big endian. | ||
(vec_interleave_highv4hi): Handle big endian. | ||
(vec_interleave_highv4hi_be): New. | ||
(vec_interleave_highv4hi_le): New. | ||
(insn_v2int_h): Handle big endian. | ||
(vec_interleave_lowv4hi): Handle big endian. | ||
(vec_interleave_lowv4hi_be): New. | ||
(vec_interleave_lowv4hi_le): New. | ||
(insn_v2int_l): Handle big endian. | ||
(vec_interleave_highv2si): Handle big endian. | ||
(vec_interleave_highv2si_be): New. | ||
(vec_interleave_highv2si_le): New. | ||
(insn_v4int_h): Handle big endian. | ||
(vec_interleave_lowv2si): Handle big endian. | ||
(vec_interleave_lowv2si_be): New. | ||
(vec_interleave_lowv2si_le): New. | ||
(insn_v4int_l): Handle big endian. | ||
* config/tilegx/tilegx.opt (mbig-endian): New option. | ||
(mlittle-endian): New option. | ||
* doc/install.texi: Document tilegxbe-linux. | ||
* doc/invoke.texi: Document -mbig-endian and -mlittle-endian. | ||
|
||
2014-02-24 Martin Jambor <[email protected]> | ||
|
||
PR ipa/60266 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.