mirror of git://gcc.gnu.org/git/gcc.git
i386.h (TARGET_MPX): New define.
* config/i386/i386.h (TARGET_MPX): New define. (TARGET_MPX_P): Ditto. From-SVN: r204048
This commit is contained in:
parent
43ae206cf9
commit
cb61036706
|
|
@ -1,3 +1,8 @@
|
|||
2013-10-25 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* config/i386/i386.h (TARGET_MPX): New define.
|
||||
(TARGET_MPX_P): Ditto.
|
||||
|
||||
2013-10-24 Ilya Enkovich <ilya.enkovich@intel.com>
|
||||
|
||||
* config/i386/constraints.md (B): New.
|
||||
|
|
@ -112,8 +117,8 @@
|
|||
|
||||
2013-10-24 Igor Shevlyakov <igor.shevlyakov@gmail.com>
|
||||
|
||||
* expr.c (expand_expr_real_1): Use mode of memory reference rather
|
||||
than mode of address computation when calling memory_address_addr_space.
|
||||
* expr.c (expand_expr_real_1): Use mode of memory reference rather than
|
||||
mode of address computation when calling memory_address_addr_space.
|
||||
|
||||
2013-08-24 Richard Henderson <rth@twiddle.net>
|
||||
|
||||
|
|
@ -188,8 +193,7 @@
|
|||
|
||||
2013-10-24 Michael Matz <matz@suse.de>
|
||||
|
||||
* gengtype.c (is_file_equal): Check that files will be same
|
||||
length.
|
||||
* gengtype.c (is_file_equal): Check that files will be same length.
|
||||
|
||||
2013-10-25 Christian Bruel <christian.bruel@st.com>
|
||||
|
||||
|
|
@ -197,7 +201,7 @@
|
|||
* gcc/config/sh/t-sh (sh-mem.o): New rule.
|
||||
* gcc/config/sh/sh-mem.cc (expand_block_move): Moved here.
|
||||
(sh4_expand_cmpstr): New function.
|
||||
* gcc/config/sh/sh.c (force_into, expand_block_move): Move to sh-mem.c
|
||||
* gcc/config/sh/sh.c (force_into, expand_block_move): Move to sh-mem.c.
|
||||
* gcc/config/sh/sh-protos.h (sh4_expand_cmpstr): Declare.
|
||||
* gcc/config/sh/sh.md (cmpstrsi, cmpstr_t): New patterns.
|
||||
(rotlhi3_8): Rename.
|
||||
|
|
@ -220,8 +224,7 @@
|
|||
Write base class of type (if any).
|
||||
(read_state_struct_type): Read base class of type (if any).
|
||||
* gengtype.c (new_structure): Add a "base_class" parameter.
|
||||
(create_optional_field_): Update for new parameter to
|
||||
new_structure.
|
||||
(create_optional_field_): Update for new parameter to new_structure.
|
||||
(adjust_field_rtx_def): Likewise.
|
||||
(adjust_field_tree_exp): Likewise.
|
||||
* gengtype.h (struct type): Add "base_class" field to the s
|
||||
|
|
@ -290,13 +293,11 @@
|
|||
insert it.
|
||||
(get_stmt_uid_with_default): Remove.
|
||||
(build_and_add_sum): Use insert_stmt_after and
|
||||
reassoc_stmt_dominates_stmt_p. Fix up uid if bb contains only
|
||||
labels.
|
||||
reassoc_stmt_dominates_stmt_p. Fix up uid if bb contains only labels.
|
||||
(update_range_test): Set uid on stmts added by
|
||||
force_gimple_operand_gsi. Don't immediately modify statements
|
||||
in inter-bb optimization, just update oe->op values.
|
||||
(optimize_range_tests): Return bool whether any changed have
|
||||
been made.
|
||||
(optimize_range_tests): Return bool whether any changed have been made.
|
||||
(update_ops): New function.
|
||||
(struct inter_bb_range_test_entry): New type.
|
||||
(maybe_optimize_range_tests): Perform statement changes here.
|
||||
|
|
@ -515,10 +516,12 @@
|
|||
|
||||
2013-10-22 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* i386.h (TARGET_MISALIGNED_MOVE_STRING_PROLOGUES_EPILOGUES): New tuning flag.
|
||||
* i386.h (TARGET_MISALIGNED_MOVE_STRING_PROLOGUES_EPILOGUES): New
|
||||
tuning flag.
|
||||
* x86-tune.def (TARGET_MISALIGNED_MOVE_STRING_PROLOGUES): Define it.
|
||||
* i386.c (expand_small_movmem_or_setmem): New function.
|
||||
(expand_set_or_movmem_prologue_epilogue_by_misaligned_moves): New function
|
||||
(expand_set_or_movmem_prologue_epilogue_by_misaligned_moves): New
|
||||
function.
|
||||
(alg_usable_p): Add support for value ranges; cleanup.
|
||||
(ix86_expand_set_or_movmem): Add support for misaligned moves.
|
||||
|
||||
|
|
|
|||
|
|
@ -128,6 +128,8 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#define TARGET_XSAVE_P(x) TARGET_ISA_XSAVE_P(x)
|
||||
#define TARGET_XSAVEOPT TARGET_ISA_XSAVEOPT
|
||||
#define TARGET_XSAVEOPT_P(x) TARGET_ISA_XSAVEOPT_P(x)
|
||||
#define TARGET_MPX TARGET_ISA_MPX
|
||||
#define TARGET_MPX_P(x) TARGET_ISA_MPX_P(x)
|
||||
|
||||
#define TARGET_LP64 TARGET_ABI_64
|
||||
#define TARGET_LP64_P(x) TARGET_ABI_64_P(x)
|
||||
|
|
|
|||
Loading…
Reference in New Issue