gcc/ 2014-11-05 Ilya Enkovich <ilya.enkovich@intel.com> * ipa-chkp.c: New. * ipa-chkp.h: New. * tree-chkp.c: New. * tree-chkp.h: New. * tree-chkp-opt.c: New. * rtl-chkp.c: New. * rtl-chkp.h: New. * Makefile.in (OBJS): Add ipa-chkp.o, rtl-chkp.o, tree-chkp.o tree-chkp-opt.o. (GTFILES): Add tree-chkp.c. * mode-classes.def (MODE_POINTER_BOUNDS): New. * tree.def (POINTER_BOUNDS_TYPE): New. * genmodes.c (complete_mode): Support MODE_POINTER_BOUNDS. (POINTER_BOUNDS_MODE): New. (make_pointer_bounds_mode): New. * machmode.h (POINTER_BOUNDS_MODE_P): New. * stor-layout.c (int_mode_for_mode): Support MODE_POINTER_BOUNDS. (layout_type): Support POINTER_BOUNDS_TYPE. * tree-pretty-print.c (dump_generic_node): Support POINTER_BOUNDS_TYPE. * tree-core.h (tree_index): Add TI_POINTER_BOUNDS_TYPE. * tree.c (build_int_cst_wide): Support POINTER_BOUNDS_TYPE. (type_contains_placeholder_1): Likewise. (build_common_tree_nodes): Initialize pointer_bounds_type_node. * tree.h (POINTER_BOUNDS_TYPE_P): New. (pointer_bounds_type_node): New. (POINTER_BOUNDS_P): New. (BOUNDED_TYPE_P): New. (BOUNDED_P): New. (CALL_WITH_BOUNDS_P): New. * gimple.h (gf_mask): Add GF_CALL_WITH_BOUNDS. (gimple_call_with_bounds_p): New. (gimple_call_set_with_bounds): New. (gimple_return_retbnd): New. (gimple_return_set_retbnd): New * gimple.c (gimple_build_return): Increase number of ops for return statement. (gimple_build_call_from_tree): Propagate CALL_WITH_BOUNDS_P flag. * gimple-pretty-print.c (dump_gimple_return): Print second op. * rtl.h (CALL_EXPR_WITH_BOUNDS_P): New. * gimplify.c (gimplify_init_constructor): Avoid infinite loop during gimplification of bounds initializer. * calls.c: Include tree-chkp.h, rtl-chkp.h, bitmap.h. (special_function_p): Use original decl name when analyzing instrumentation clone. (arg_data): Add fields special_slot, pointer_arg and pointer_offset. (store_bounds): New. (emit_call_1): Propagate instrumentation flag for CALL. (initialize_argument_information): Compute pointer_arg, pointer_offset and special_slot for pointer bounds arguments. (finalize_must_preallocate): Preallocate when storing bounds in bounds table. (compute_argument_addresses): Skip pointer bounds. (expand_call): Store bounds into tables separately. Return result joined with resulting bounds. * cfgexpand.c: Include tree-chkp.h, rtl-chkp.h. (expand_call_stmt): Propagate bounds flag for CALL_EXPR. (expand_return): Add returned bounds arg. Handle returned bounds. (expand_gimple_stmt_1): Adjust to new expand_return signature. (gimple_expand_cfg): Reset rtx bounds map. * expr.c: Include tree-chkp.h, rtl-chkp.h. (expand_assignment): Handle returned bounds. (store_expr_with_bounds): New. Replaces store_expr with new bounds target argument. Handle bounds returned by calls. (store_expr): Now wraps store_expr_with_bounds. * expr.h (store_expr_with_bounds): New. * function.c: Include tree-chkp.h, rtl-chkp.h. (bounds_parm_data): New. (use_register_for_decl): Do not registerize decls used for bounds stores and loads. (assign_parms_augmented_arg_list): Add bounds of the result structure pointer as the second argument. (assign_parm_find_entry_rtl): Mark bounds are never passed on the stack. (assign_parm_is_stack_parm): Likewise. (assign_parm_load_bounds): New. (assign_bounds): New. (assign_parms): Load bounds and determine a location for returned bounds. (diddle_return_value_1): New. (diddle_return_value): Handle returned bounds. * function.h (rtl_data): Add field for returned bounds. * varasm.c: Include tree-chkp.h. (output_constant): Support POINTER_BOUNDS_TYPE. (output_constant_pool_2): Support MODE_POINTER_BOUNDS. (ultimate_transparent_alias_target): Move up. (make_decl_rtl): For instrumented function use name of the original decl. (assemble_start_function): Mark function as global in case it is instrumentation clone of the global function. (do_assemble_alias): Follow transparent alias chain for identifier. Check if original alias is public. (maybe_assemble_visibility): Use visibility of the original function for instrumented version. (default_unique_section): Likewise. * emit-rtl.c (immed_double_const): Support MODE_POINTER_BOUNDS. (init_emit_once): Build pointer bounds zero constants. * explow.c (trunc_int_for_mode): Support MODE_POINTER_BOUNDS. * target.def (builtin_chkp_function): New. (chkp_bound_type): New. (chkp_bound_mode): New. (chkp_make_bounds_constant): New. (chkp_initialize_bounds): New. (load_bounds_for_arg): New. (store_bounds_for_arg): New. (load_returned_bounds): New. (store_returned_bounds): New. (chkp_function_value_bounds): New. (setup_incoming_vararg_bounds): New. (function_arg): Update hook description with new possible return value CONST_INT. * targhooks.h (default_load_bounds_for_arg): New. (default_store_bounds_for_arg): New. (default_load_returned_bounds): New. (default_store_returned_bounds): New. (default_chkp_bound_type): New. (default_chkp_bound_mode): New. (default_builtin_chkp_function): New. (default_chkp_function_value_bounds): New. (default_chkp_make_bounds_constant): New. (default_chkp_initialize_bounds): New. (default_setup_incoming_vararg_bounds): New. * targhooks.c (default_load_bounds_for_arg): New. (default_store_bounds_for_arg): New. (default_load_returned_bounds): New. (default_store_returned_bounds): New. (default_chkp_bound_type): New. (default_chkp_bound_mode); New. (default_builtin_chkp_function): New. (default_chkp_function_value_bounds): New. (default_chkp_make_bounds_constant): New. (default_chkp_initialize_bounds): New. (default_setup_incoming_vararg_bounds): New. * builtin-types.def (BT_BND): New. (BT_FN_PTR_CONST_PTR): New. (BT_FN_CONST_PTR_CONST_PTR): New. (BT_FN_BND_CONST_PTR): New. (BT_FN_CONST_PTR_BND): New. (BT_FN_PTR_CONST_PTR_SIZE): New. (BT_FN_PTR_CONST_PTR_CONST_PTR): New. (BT_FN_VOID_PTRPTR_CONST_PTR): New. (BT_FN_VOID_CONST_PTR_SIZE): New. (BT_FN_VOID_PTR_BND): New. (BT_FN_CONST_PTR_CONST_PTR_CONST_PTR): New. (BT_FN_BND_CONST_PTR_SIZE): New. (BT_FN_PTR_CONST_PTR_CONST_PTR_SIZE): New. (BT_FN_VOID_CONST_PTR_BND_CONST_PTR): New. * chkp-builtins.def: New. * builtins.def: include chkp-builtins.def. (DEF_CHKP_BUILTIN): New. * builtins.c: Include tree-chkp.h and rtl-chkp.h. (expand_builtin): Support BUILT_IN_CHKP_INIT_PTR_BOUNDS, BUILT_IN_CHKP_NULL_PTR_BOUNDS, BUILT_IN_CHKP_COPY_PTR_BOUNDS, BUILT_IN_CHKP_CHECK_PTR_LBOUNDS, BUILT_IN_CHKP_CHECK_PTR_UBOUNDS, BUILT_IN_CHKP_CHECK_PTR_BOUNDS, BUILT_IN_CHKP_SET_PTR_BOUNDS, BUILT_IN_CHKP_NARROW_PTR_BOUNDS, BUILT_IN_CHKP_STORE_PTR_BOUNDS, BUILT_IN_CHKP_GET_PTR_LBOUND, BUILT_IN_CHKP_GET_PTR_UBOUND, BUILT_IN_CHKP_BNDMK, BUILT_IN_CHKP_BNDSTX, BUILT_IN_CHKP_BNDCL, BUILT_IN_CHKP_BNDCU, BUILT_IN_CHKP_BNDLDX, BUILT_IN_CHKP_BNDRET, BUILT_IN_CHKP_INTERSECT, BUILT_IN_CHKP_NARROW, BUILT_IN_CHKP_EXTRACT_LOWER, BUILT_IN_CHKP_EXTRACT_UPPER. (std_expand_builtin_va_start): Init bounds for va_list. * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Add __CHKP__ macro when Pointer Bounds Checker is on. * params.def (PARAM_CHKP_MAX_CTOR_SIZE): New. * passes.def (pass_ipa_chkp_versioning): New. (pass_early_local_passes): Renamed to pass_build_ssa_passes. (pass_fixup_cfg): Moved to pass_chkp_instrumentation_passes. (pass_chkp_instrumentation_passes): New. (pass_ipa_chkp_produce_thunks): New. (pass_local_optimization_passes): New. (pass_chkp_opt): New. * tree-pass.h (make_pass_ipa_chkp_versioning): New. (make_pass_ipa_chkp_produce_thunks): New. (make_pass_chkp): New. (make_pass_chkp_opt): New. (make_pass_early_local_passes): Renamed to ... (make_pass_build_ssa_passes): This. (make_pass_chkp_instrumentation_passes): New. (make_pass_local_optimization_passes): New. * passes.c (pass_manager::execute_early_local_passes): Execute early passes in three steps. (execute_all_early_local_passes): Renamed to ... (execute_build_ssa_passes): This. (pass_data_early_local_passes): Renamed to ... (pass_data_build_ssa_passes): This. (pass_early_local_passes): Renamed to ... (pass_build_ssa_passes): This. (pass_data_chkp_instrumentation_passes): New. (pass_chkp_instrumentation_passes): New. (pass_data_local_optimization_passes): New. (pass_local_optimization_passes): New. (make_pass_early_local_passes): Renamed to ... (make_pass_build_ssa_passes): This. (make_pass_chkp_instrumentation_passes): New. (make_pass_local_optimization_passes): New. * c-family/c.opt (fcheck-pointer-bounds): New. (fchkp-check-incomplete-type): New. (fchkp-zero-input-bounds-for-main): New. (fchkp-first-field-has-own-bounds): New. (fchkp-narrow-bounds): New. (fchkp-narrow-to-innermost-array): New. (fchkp-optimize): New. (fchkp-use-fast-string-functions): New. (fchkp-use-nochk-string-functions): New. (fchkp-use-static-bounds): New. (fchkp-use-static-const-bounds): New. (fchkp-treat-zero-dynamic-size-as-infinite): New. (fchkp-check-read): New. (fchkp-check-write): New. (fchkp-store-bounds): New. (fchkp-instrument-calls): New. (fchkp-instrument-marked-only): New. (Wchkp): New. * c-family/c-common.c (handle_bnd_variable_size_attribute): New. (handle_bnd_legacy): New. (handle_bnd_instrument): New. (c_common_attribute_table): Add bnd_variable_size, bnd_legacy and bnd_instrument. Fix documentation. (c_common_format_attribute_table): Likewsie. * toplev.c: include tree-chkp.h. (process_options): Check Pointer Bounds Checker is supported. (compile_file): Add chkp_finish_file call. * ipa-cp.c (initialize_node_lattices): Use cgraph_local_p to handle instrumentation clones properly. (propagate_constants_accross_call): Do not propagate through instrumentation thunks. * ipa-pure-const.c (propagate_pure_const): Support IPA_REF_CHKP. * ipa-inline.c (early_inliner): Check edge has summary allocated. * ipa-split.c: Include tree-chkp.h. (find_retbnd): New. (split_part_set_ssa_name_p): New. (consider_split): Do not split retbnd and retval producers. (insert_bndret_call_after): new. (split_function): Propagate Pointer Bounds Checker instrumentation marks and handle returned bounds. * tree-ssa-sccvn.h (vn_reference_op_struct): Transform opcode into bit field and add with_bounds field. * tree-ssa-sccvn.c (copy_reference_ops_from_call): Set with_bounds field for instrumented calls. * tree-ssa-pre.c (create_component_ref_by_pieces_1): Restore CALL_WITH_BOUNDS_P flag for calls. * tree-ssa-ccp.c: Include tree-chkp.h. (insert_clobber_before_stack_restore): Handle BUILT_IN_CHKP_BNDRET calls. * tree-ssa-dce.c: Include tree-chkp.h. (propagate_necessity): For free call fed by alloc check bounds are also provided by the same alloc. (eliminate_unnecessary_stmts): Handle BUILT_IN_CHKP_BNDRET used by free calls. * tree-inline.c: Include tree-chkp.h. (declare_return_variable): Add arg holding returned bounds slot. Create and initialize returned bounds var. (remap_gimple_stmt): Handle returned bounds. Return sequence of statements instead of a single statement. (insert_init_stmt): Add declaration. (remap_gimple_seq): Adjust to new remap_gimple_stmt signature. (copy_bb): Adjust to changed return type of remap_gimple_stmt. Properly handle bounds in va_arg_pack and va_arg_pack_len. (expand_call_inline): Handle returned bounds. Add bounds copy for generated mem to mem assignments. * tree-inline.h (copy_body_data): Add fields retbnd and assign_stmts. * value-prof.c: Include tree-chkp.h. (gimple_ic): Support returned bounds. * ipa.c (cgraph_build_static_cdtor_1): Support contructors with "chkp ctor" and "bnd_legacy" attributes. (symtab_remove_unreachable_nodes): Keep initial values for pointer bounds to be used for checks eliminations. (process_references): Handle IPA_REF_CHKP. (walk_polymorphic_call_targets): Likewise. * ipa-visibility.c (cgraph_externally_visible_p): Mark instrumented 'main' as externally visible. (function_and_variable_visibility): Filter instrumentation thunks. * cgraph.h (cgraph_thunk_info): Add add_pointer_bounds_args field. (cgraph_node): Add instrumented_version, orig_decl and instrumentation_clone fields. (symtab_node::get_alias_target): Allow IPA_REF_CHKP reference. (varpool_node): Add need_bounds_init field. (cgraph_local_p): New. * cgraph.c: Include tree-chkp.h. (cgraph_node::remove): Fix instrumented_version of the referenced node if any. (cgraph_node::dump): Dump instrumentation_clone and instrumented_version fields. (cgraph_node::verify_node): Check correctness of IPA_REF_CHKP references and instrumentation thunks. (cgraph_can_remove_if_no_direct_calls_and_refs_p): Keep all not instrumented instrumentation clones alive. (cgraph_redirect_edge_call_stmt_to_callee): Support returned bounds. * cgraphbuild.c (rebuild_cgraph_edges): Rebuild IPA_REF_CHKP reference. (cgraph_rebuild_references): Likewise. * cgraphunit.c: Include tree-chkp.h. (assemble_thunks_and_aliases): Skip thunks calling instrumneted function version. (varpool_finalize_decl): Register statically initialized decls in Pointer Bounds Checker. (walk_polymorphic_call_targets): Do not mark generated call to __builtin_unreachable as with_bounds. (output_weakrefs): If there are both instrumented and original versions, output only one of them. (cgraph_node::expand_thunk): Set with_bounds flag for created call statement. * ipa-ref.h (ipa_ref_use): Add IPA_REF_CHKP. (ipa_ref): increase size of use field. * symtab.c (ipa_ref_use_name): Add element for IPA_REF_CHKP. * varpool.c (dump_varpool_node): Dump need_bounds_init field. (ctor_for_folding): Do not fold constant bounds vars. * lto-streamer.h (LTO_minor_version): Change minor version from 0 to 1. * lto-cgraph.c (compute_ltrans_boundary): Keep initial values for pointer bounds. (lto_output_node): Output instrumentation_clone, thunk.add_pointer_bounds_args and orig_decl field. (lto_output_ref): Adjust to new ipa_ref::use field size. (input_overwrite_node): Read instrumentation_clone field. (input_node): Read thunk.add_pointer_bounds_args and orig_decl fields. (input_ref): Adjust to new ipa_ref::use field size. (input_cgraph_1): Compute instrumented_version fields and restore IDENTIFIER_TRANSPARENT_ALIAS chains. (lto_output_varpool_node): Output need_bounds_init value. (input_varpool_node): Read need_bounds_init value. * lto-partition.c (add_symbol_to_partition_1): Keep original and instrumented versions together. (privatize_symbol_name): Restore transparent alias chain if required. (add_references_to_partition): Add references to pointer bounds vars. * dbxout.c (dbxout_type): Ignore POINTER_BOUNDS_TYPE. * dwarf2out.c (gen_subprogram_die): Ignore bound args. (gen_type_die_with_usage): Skip pointer bounds. (dwarf2out_global_decl): Likewise. (is_base_type): Support POINTER_BOUNDS_TYPE. (gen_formal_types_die): Skip pointer bounds. (gen_decl_die): Likewise. * var-tracking.c (vt_add_function_parameters): Skip bounds parameters. * ipa-icf.c (sem_function::merge): Do not merge when instrumentation thunk still exists. (sem_variable::merge): Reset need_bounds_init flag. * doc/extend.texi: Document Pointer Bounds Checker built-in functions and attributes. * doc/tm.texi.in (TARGET_LOAD_BOUNDS_FOR_ARG): New. (TARGET_STORE_BOUNDS_FOR_ARG): New. (TARGET_LOAD_RETURNED_BOUNDS): New. (TARGET_STORE_RETURNED_BOUNDS): New. (TARGET_CHKP_FUNCTION_VALUE_BOUNDS): New. (TARGET_SETUP_INCOMING_VARARG_BOUNDS): New. (TARGET_BUILTIN_CHKP_FUNCTION): New. (TARGET_CHKP_BOUND_TYPE): New. (TARGET_CHKP_BOUND_MODE): New. (TARGET_CHKP_MAKE_BOUNDS_CONSTANT): New. (TARGET_CHKP_INITIALIZE_BOUNDS): New. * doc/tm.texi: Regenerated. * doc/rtl.texi (MODE_POINTER_BOUNDS): New. (BND32mode): New. (BND64mode): New. * doc/invoke.texi (-mmpx): New. (-mno-mpx): New. (chkp-max-ctor-size): New. * config/i386/constraints.md (w): New. (Ti): New. (Tb): New. * config/i386/i386-c.c (ix86_target_macros_internal): Add __MPX__. * config/i386/i386-modes.def (BND32): New. (BND64): New. * config/i386/i386-protos.h (ix86_bnd_prefixed_insn_p): New. * config/i386/i386.c: Include tree-chkp.h, rtl-chkp.h, tree-iterator.h. (regclass_map): Add bound registers. (dbx_register_map): Likewise. (dbx64_register_map): Likewise. (svr4_dbx_register_map): Likewise. (isa_opts): Add -mmpx. (PTA_MPX): New. (ix86_option_override_internal): Support MPX ISA. (ix86_conditional_register_usage): Support bound registers. (ix86_code_end): Add MPX bnd prefix. (output_set_got): Likewise. (print_reg): Avoid prefixes for bound registers. (ix86_print_operand): Add '!' (MPX bnd) print prefix support. (ix86_print_operand_punct_valid_p): Likewise. (ix86_print_operand_address): Support UNSPEC_BNDMK_ADDR and UNSPEC_BNDLDX_ADDR. (ix86_output_call_insn): Add MPX bnd prefix to branch instructions. (ix86_class_likely_spilled_p): Add bound regs support. (ix86_hard_regno_mode_ok): Likewise. (x86_order_regs_for_local_alloc): Likewise. (ix86_bnd_prefixed_insn_p): New. (ix86_builtins): Add IX86_BUILTIN_BNDMK, IX86_BUILTIN_BNDSTX, IX86_BUILTIN_BNDLDX, IX86_BUILTIN_BNDCL, IX86_BUILTIN_BNDCU, IX86_BUILTIN_BNDRET, IX86_BUILTIN_BNDNARROW, IX86_BUILTIN_BNDINT, IX86_BUILTIN_SIZEOF, IX86_BUILTIN_BNDLOWER, IX86_BUILTIN_BNDUPPER. (builtin_isa): Add leaf_p and nothrow_p fields. (def_builtin): Initialize leaf_p and nothrow_p. (ix86_add_new_builtins): Handle leaf_p and nothrow_p flags. (bdesc_mpx): New. (bdesc_mpx_const): New. (ix86_init_mpx_builtins): New. (ix86_init_builtins): Call ix86_init_mpx_builtins. (ix86_emit_cmove): New. (ix86_emit_move_max): New. (ix86_expand_builtin): Expand IX86_BUILTIN_BNDMK, IX86_BUILTIN_BNDSTX, IX86_BUILTIN_BNDLDX, IX86_BUILTIN_BNDCL, IX86_BUILTIN_BNDCU, IX86_BUILTIN_BNDRET, IX86_BUILTIN_BNDNARROW, IX86_BUILTIN_BNDINT, IX86_BUILTIN_SIZEOF, IX86_BUILTIN_BNDLOWER, IX86_BUILTIN_BNDUPPER. (ix86_function_value_bounds): New. (ix86_builtin_mpx_function): New. (ix86_get_arg_address_for_bt): New. (ix86_load_bounds): New. (ix86_store_bounds): New. (ix86_load_returned_bounds): New. (ix86_store_returned_bounds): New. (ix86_mpx_bound_mode): New. (ix86_make_bounds_constant): New. (ix86_initialize_bounds): (TARGET_LOAD_BOUNDS_FOR_ARG): New. (TARGET_STORE_BOUNDS_FOR_ARG): New. (TARGET_LOAD_RETURNED_BOUNDS): New. (TARGET_STORE_RETURNED_BOUNDS): New. (TARGET_CHKP_BOUND_MODE): New. (TARGET_BUILTIN_CHKP_FUNCTION): New. (TARGET_CHKP_FUNCTION_VALUE_BOUNDS): New. (TARGET_CHKP_MAKE_BOUNDS_CONSTANT): New. (TARGET_CHKP_INITIALIZE_BOUNDS): New. (ix86_option_override_internal): Do not support x32 with MPX. (init_cumulative_args): Init stdarg, bnd_regno, bnds_in_bt and force_bnd_pass. (function_arg_advance_32): Return number of used integer registers. (function_arg_advance_64): Likewise. (function_arg_advance_ms_64): Likewise. (ix86_function_arg_advance): Handle pointer bounds. (ix86_function_arg): Likewise. (ix86_function_value_regno_p): Mark fisrt bounds registers as possible function value. (ix86_function_value_1): Handle pointer bounds type/mode (ix86_return_in_memory): Likewise. (ix86_print_operand): Analyse insn to decide abounf "bnd" prefix. (ix86_expand_call): Generate returned bounds. (ix86_setup_incoming_vararg_bounds): New. (ix86_va_start): Initialize bounds for pointers in va_list. (TARGET_SETUP_INCOMING_VARARG_BOUNDS): New. * config/i386/i386.h (TARGET_MPX): New. (TARGET_MPX_P): New. (FIRST_PSEUDO_REGISTER): Fix to new value. (FIXED_REGISTERS): Add bound registers. (CALL_USED_REGISTERS): Likewise. (REG_ALLOC_ORDER): Likewise. (HARD_REGNO_NREGS): Likewise. (VALID_BND_REG_MODE): New. (FIRST_BND_REG): New. (LAST_BND_REG): New. (reg_class): Add BND_REGS. (REG_CLASS_NAMES): Likewise. (REG_CLASS_CONTENTS): Likewise. (BND_REGNO_P): New. (ANY_BND_REG_P): New. (BNDmode): New. (HI_REGISTER_NAMES): Add bound registers. (ix86_args): Add bnd_regno, bnds_in_bt, force_bnd_pass and stdarg fields. * config/i386/i386.md (UNSPEC_BNDMK): New. (UNSPEC_BNDMK_ADDR): New. (UNSPEC_BNDSTX): New. (UNSPEC_BNDLDX): New. (UNSPEC_BNDLDX_ADDR): New. (UNSPEC_BNDCL): New. (UNSPEC_BNDCU): New. (UNSPEC_BNDCN): New. (UNSPEC_MPX_FENCE): New. (UNSPEC_SIZEOF): New. (BND0_REG): New. (BND1_REG): New. (type): Add mpxmov, mpxmk, mpxchk, mpxld, mpxst. (length_immediate): Support mpxmov, mpxmk, mpxchk, mpxld, mpxst. (prefix_rep): Check for bnd prefix. (prefix_0f): Support mpxmov, mpxmk, mpxchk, mpxld, mpxst. (length_nobnd): New. (length): Use length_nobnd when specified. (memory): Support mpxmov, mpxmk, mpxchk, mpxld, mpxst. (BND): New. (bnd_ptr): New. (BNDCHECK): New. (bndcheck): New. (*jcc_1): Add MPX bnd prefix. (*jcc_2): Likewise. (jump): Likewise. (*indirect_jump): Likewise. (*tablejump_1): Likewise. (simple_return_internal): Likewise. (simple_return_internal_long): Likewise. (simple_return_pop_internal): Likewise. (simple_return_indirect_internal): Likewise. (<mode>_mk): New. (*<mode>_mk): New. (mov<mode>): New. (*mov<mode>_internal_mpx): New. (<mode>_<bndcheck>): New. (*<mode>_<bndcheck>): New. (<mode>_ldx): New. (*<mode>_ldx): New. (<mode>_stx): New. (*<mode>_stx): New. move_size_reloc_<mode>): New. * config/i386/predicates.md (address_mpx_no_base_operand): New. (address_mpx_no_index_operand): New. (bnd_mem_operator): New. (symbol_operand): New. (x86_64_immediate_size_operand): New. * config/i386/i386.opt (mmpx): New. * config/i386/i386-builtin-types.def (BND): New. (ULONG): New. (BND_FTYPE_PCVOID_ULONG): New. (VOID_FTYPE_BND_PCVOID): New. (VOID_FTYPE_PCVOID_PCVOID_BND): New. (BND_FTYPE_PCVOID_PCVOID): New. (BND_FTYPE_PCVOID): New. (BND_FTYPE_BND_BND): New. (PVOID_FTYPE_PVOID_PVOID_ULONG): New. (PVOID_FTYPE_PCVOID_BND_ULONG): New. (ULONG_FTYPE_VOID): New. (PVOID_FTYPE_BND): New. gcc/testsuite/ 2014-11-05 Ilya Enkovich <ilya.enkovich@intel.com> * gcc.target/i386/chkp-builtins-1.c: New. * gcc.target/i386/chkp-builtins-2.c: New. * gcc.target/i386/chkp-builtins-3.c: New. * gcc.target/i386/chkp-builtins-4.c: New. * gcc.target/i386/chkp-remove-bndint-1.c: New. * gcc.target/i386/chkp-remove-bndint-2.c: New. * gcc.target/i386/chkp-const-check-1.c: New. * gcc.target/i386/chkp-const-check-2.c: New. * gcc.target/i386/chkp-lifetime-1.c: New. * gcc.dg/pr37858.c: Replace early_local_cleanups pass name with build_ssa_passes. From-SVN: r217125
Name |
Last commit
|
Last update |
---|---|---|
.. | ||
ada | Loading commit data... | |
c | Loading commit data... | |
c-family | Loading commit data... | |
common | Loading commit data... | |
config | Loading commit data... | |
cp | Loading commit data... | |
doc | Loading commit data... | |
fortran | Loading commit data... | |
ginclude | Loading commit data... | |
go | Loading commit data... | |
java | Loading commit data... | |
lto | Loading commit data... | |
objc | Loading commit data... | |
objcp | Loading commit data... | |
po | Loading commit data... | |
testsuite | Loading commit data... | |
ABOUT-GCC-NLS | Loading commit data... | |
BASE-VER | Loading commit data... | |
COPYING | Loading commit data... | |
COPYING.LIB | Loading commit data... | |
COPYING3 | Loading commit data... | |
COPYING3.LIB | Loading commit data... | |
ChangeLog | Loading commit data... | |
ChangeLog-1997 | Loading commit data... | |
ChangeLog-1998 | Loading commit data... | |
ChangeLog-1999 | Loading commit data... | |
ChangeLog-2000 | Loading commit data... | |
ChangeLog-2001 | Loading commit data... | |
ChangeLog-2002 | Loading commit data... | |
ChangeLog-2003 | Loading commit data... | |
ChangeLog-2004 | Loading commit data... | |
ChangeLog-2005 | Loading commit data... | |
ChangeLog-2006 | Loading commit data... | |
ChangeLog-2007 | Loading commit data... | |
ChangeLog-2008 | Loading commit data... | |
ChangeLog-2009 | Loading commit data... | |
ChangeLog-2010 | Loading commit data... | |
ChangeLog-2011 | Loading commit data... | |
ChangeLog-2012 | Loading commit data... | |
ChangeLog-2013 | Loading commit data... | |
ChangeLog.dataflow | Loading commit data... | |
ChangeLog.graphite | Loading commit data... | |
ChangeLog.lib | Loading commit data... | |
ChangeLog.ptr | Loading commit data... | |
ChangeLog.tree-ssa | Loading commit data... | |
ChangeLog.tuples | Loading commit data... | |
DATESTAMP | Loading commit data... | |
DEV-PHASE | Loading commit data... | |
FSFChangeLog | Loading commit data... | |
FSFChangeLog.10 | Loading commit data... | |
FSFChangeLog.11 | Loading commit data... | |
LANGUAGES | Loading commit data... | |
Makefile.in | Loading commit data... | |
ONEWS | Loading commit data... | |
README.Portability | Loading commit data... | |
acinclude.m4 | Loading commit data... | |
aclocal.m4 | Loading commit data... | |
addresses.h | Loading commit data... | |
alias.c | Loading commit data... | |
alias.h | Loading commit data... | |
alloc-pool.c | Loading commit data... | |
alloc-pool.h | Loading commit data... | |
asan.c | Loading commit data... | |
asan.h | Loading commit data... | |
attribs.c | Loading commit data... | |
attribs.h | Loading commit data... | |
auto-inc-dec.c | Loading commit data... | |
auto-profile.c | Loading commit data... | |
auto-profile.h | Loading commit data... | |
basic-block.h | Loading commit data... | |
bb-reorder.c | Loading commit data... | |
bb-reorder.h | Loading commit data... | |
bitmap.c | Loading commit data... | |
bitmap.h | Loading commit data... | |
bt-load.c | Loading commit data... | |
builtin-attrs.def | Loading commit data... | |
builtin-types.def | Loading commit data... | |
builtins.c | Loading commit data... | |
builtins.def | Loading commit data... | |
builtins.h | Loading commit data... | |
caller-save.c | Loading commit data... | |
calls.c | Loading commit data... | |
calls.h | Loading commit data... | |
cfg-flags.def | Loading commit data... | |
cfg.c | Loading commit data... | |
cfg.h | Loading commit data... | |
cfganal.c | Loading commit data... | |
cfganal.h | Loading commit data... | |
cfgbuild.c | Loading commit data... | |
cfgbuild.h | Loading commit data... | |
cfgcleanup.c | Loading commit data... | |
cfgcleanup.h | Loading commit data... | |
cfgexpand.c | Loading commit data... | |
cfgexpand.h | Loading commit data... | |
cfghooks.c | Loading commit data... | |
cfghooks.h | Loading commit data... | |
cfgloop.c | Loading commit data... | |
cfgloop.h | Loading commit data... | |
cfgloopanal.c | Loading commit data... | |
cfgloopmanip.c | Loading commit data... | |
cfgloopmanip.h | Loading commit data... | |
cfgrtl.c | Loading commit data... | |
cfgrtl.h | Loading commit data... | |
cgraph.c | Loading commit data... | |
cgraph.h | Loading commit data... | |
cgraphbuild.c | Loading commit data... | |
cgraphclones.c | Loading commit data... | |
cgraphunit.c | Loading commit data... | |
chkp-builtins.def | Loading commit data... | |
cif-code.def | Loading commit data... | |
cilk-builtins.def | Loading commit data... | |
cilk-common.c | Loading commit data... | |
cilk.h | Loading commit data... | |
cilkplus.def | Loading commit data... | |
collect-utils.c | Loading commit data... | |
collect-utils.h | Loading commit data... | |
collect2-aix.c | Loading commit data... | |
collect2-aix.h | Loading commit data... | |
collect2.c | Loading commit data... | |
collect2.h | Loading commit data... | |
combine-stack-adj.c | Loading commit data... | |
combine.c | Loading commit data... | |
common.md | Loading commit data... | |
common.opt | Loading commit data... | |
compare-elim.c | Loading commit data... | |
conditions.h | Loading commit data... | |
config.build | Loading commit data... | |
config.gcc | Loading commit data... | |
config.host | Loading commit data... | |
config.in | Loading commit data... | |
configure | Loading commit data... | |
configure.ac | Loading commit data... | |
context.c | Loading commit data... | |
context.h | Loading commit data... | |
convert.c | Loading commit data... | |
convert.h | Loading commit data... | |
coretypes.h | Loading commit data... | |
coverage.c | Loading commit data... | |
coverage.h | Loading commit data... | |
cppbuiltin.c | Loading commit data... | |
cppbuiltin.h | Loading commit data... | |
cppdefault.c | Loading commit data... | |
cppdefault.h | Loading commit data... | |
cprop.c | Loading commit data... | |
cse.c | Loading commit data... | |
cselib.c | Loading commit data... | |
cselib.h | Loading commit data... | |
cstamp-h.in | Loading commit data... | |
data-streamer-in.c | Loading commit data... | |
data-streamer-out.c | Loading commit data... | |
data-streamer.c | Loading commit data... | |
data-streamer.h | Loading commit data... | |
dbgcnt.c | Loading commit data... | |
dbgcnt.def | Loading commit data... | |
dbgcnt.h | Loading commit data... | |
dbxout.c | Loading commit data... | |
dbxout.h | Loading commit data... | |
dce.c | Loading commit data... | |
dce.h | Loading commit data... | |
ddg.c | Loading commit data... | |
ddg.h | Loading commit data... | |
debug.c | Loading commit data... | |
debug.h | Loading commit data... | |
defaults.h | Loading commit data... | |
df-core.c | Loading commit data... | |
df-problems.c | Loading commit data... | |
df-scan.c | Loading commit data... | |
df.h | Loading commit data... | |
dfp.c | Loading commit data... | |
dfp.h | Loading commit data... | |
diagnostic-color.c | Loading commit data... | |
diagnostic-color.h | Loading commit data... | |
diagnostic-core.h | Loading commit data... | |
diagnostic.c | Loading commit data... | |
diagnostic.def | Loading commit data... | |
diagnostic.h | Loading commit data... | |
dojump.c | Loading commit data... | |
dominance.c | Loading commit data... | |
dominance.h | Loading commit data... | |
domwalk.c | Loading commit data... | |
domwalk.h | Loading commit data... | |
double-int.c | Loading commit data... | |
double-int.h | Loading commit data... | |
dse.c | Loading commit data... | |
dumpfile.c | Loading commit data... | |
dumpfile.h | Loading commit data... | |
dwarf2asm.c | Loading commit data... | |
dwarf2asm.h | Loading commit data... | |
dwarf2cfi.c | Loading commit data... | |
dwarf2out.c | Loading commit data... | |
dwarf2out.h | Loading commit data... | |
emit-rtl.c | Loading commit data... | |
emit-rtl.h | Loading commit data... | |
errors.c | Loading commit data... | |
errors.h | Loading commit data... | |
et-forest.c | Loading commit data... | |
et-forest.h | Loading commit data... | |
except.c | Loading commit data... | |
except.h | Loading commit data... | |
exec-tool.in | Loading commit data... | |
explow.c | Loading commit data... | |
expmed.c | Loading commit data... | |
expmed.h | Loading commit data... | |
expr.c | Loading commit data... | |
expr.h | Loading commit data... | |
file-find.c | Loading commit data... | |
file-find.h | Loading commit data... | |
final.c | Loading commit data... | |
fixed-value.c | Loading commit data... | |
fixed-value.h | Loading commit data... | |
flag-types.h | Loading commit data... | |
flags.h | Loading commit data... | |
fold-const.c | Loading commit data... | |
fold-const.h | Loading commit data... | |
fp-test.c | Loading commit data... | |
function.c | Loading commit data... | |
function.h | Loading commit data... | |
fwprop.c | Loading commit data... | |
gcc-ar.c | Loading commit data... | |
gcc-plugin.h | Loading commit data... | |
gcc-symtab.h | Loading commit data... | |
gcc.c | Loading commit data... | |
gcc.h | Loading commit data... | |
gcov-counter.def | Loading commit data... | |
gcov-dump.c | Loading commit data... | |
gcov-io.c | Loading commit data... | |
gcov-io.h | Loading commit data... | |
gcov-iov.c | Loading commit data... | |
gcov-tool.c | Loading commit data... | |
gcov.c | Loading commit data... | |
gcse.c | Loading commit data... | |
gcse.h | Loading commit data... | |
gdbasan.in | Loading commit data... | |
gdbhooks.py | Loading commit data... | |
gdbinit.in | Loading commit data... | |
gen-pass-instances.awk | Loading commit data... | |
genattr-common.c | Loading commit data... | |
genattr.c | Loading commit data... | |
genattrtab.c | Loading commit data... | |
genautomata.c | Loading commit data... | |
gencheck.c | Loading commit data... | |
genchecksum.c | Loading commit data... | |
gencodes.c | Loading commit data... | |
genconditions.c | Loading commit data... | |
genconfig.c | Loading commit data... | |
genconstants.c | Loading commit data... | |
genemit.c | Loading commit data... | |
genenums.c | Loading commit data... | |
generic-match-head.c | Loading commit data... | |
generic-match.h | Loading commit data... | |
genextract.c | Loading commit data... | |
genflags.c | Loading commit data... | |
gengenrtl.c | Loading commit data... | |
gengtype-lex.l | Loading commit data... | |
gengtype-parse.c | Loading commit data... | |
gengtype-state.c | Loading commit data... | |
gengtype.c | Loading commit data... | |
gengtype.h | Loading commit data... | |
genhooks.c | Loading commit data... | |
genmatch.c | Loading commit data... | |
genmddeps.c | Loading commit data... | |
genmddump.c | Loading commit data... | |
genmodes.c | Loading commit data... | |
genmultilib | Loading commit data... | |
genopinit.c | Loading commit data... | |
genoutput.c | Loading commit data... | |
genpeep.c | Loading commit data... | |
genpreds.c | Loading commit data... | |
genrecog.c | Loading commit data... | |
gensupport.c | Loading commit data... | |
gensupport.h | Loading commit data... | |
ggc-common.c | Loading commit data... | |
ggc-internal.h | Loading commit data... | |
ggc-none.c | Loading commit data... | |
ggc-page.c | Loading commit data... | |
ggc.h | Loading commit data... | |
gimple-builder.c | Loading commit data... | |
gimple-builder.h | Loading commit data... | |
gimple-expr.c | Loading commit data... | |
gimple-expr.h | Loading commit data... | |
gimple-fold.c | Loading commit data... | |
gimple-fold.h | Loading commit data... | |
gimple-iterator.c | Loading commit data... | |
gimple-iterator.h | Loading commit data... | |
gimple-low.c | Loading commit data... | |
gimple-low.h | Loading commit data... | |
gimple-match-head.c | Loading commit data... | |
gimple-match.h | Loading commit data... | |
gimple-pretty-print.c | Loading commit data... | |
gimple-pretty-print.h | Loading commit data... | |
gimple-ssa-isolate-paths.c | Loading commit data... | |
gimple-ssa-strength-reduction.c | Loading commit data... | |
gimple-ssa.h | Loading commit data... | |
gimple-streamer-in.c | Loading commit data... | |
gimple-streamer-out.c | Loading commit data... | |
gimple-streamer.h | Loading commit data... | |
gimple-walk.c | Loading commit data... | |
gimple-walk.h | Loading commit data... | |
gimple.c | Loading commit data... | |
gimple.def | Loading commit data... | |
gimple.h | Loading commit data... | |
gimplify-me.c | Loading commit data... | |
gimplify-me.h | Loading commit data... | |
gimplify.c | Loading commit data... | |
gimplify.h | Loading commit data... | |
glimits.h | Loading commit data... | |
godump.c | Loading commit data... | |
graph.c | Loading commit data... | |
graph.h | Loading commit data... | |
graphds.c | Loading commit data... | |
graphds.h | Loading commit data... | |
graphite-blocking.c | Loading commit data... | |
graphite-clast-to-gimple.c | Loading commit data... | |
graphite-clast-to-gimple.h | Loading commit data... | |
graphite-dependences.c | Loading commit data... | |
graphite-htab.h | Loading commit data... | |
graphite-interchange.c | Loading commit data... | |
graphite-isl-ast-to-gimple.c | Loading commit data... | |
graphite-isl-ast-to-gimple.h | Loading commit data... | |
graphite-optimize-isl.c | Loading commit data... | |
graphite-poly.c | Loading commit data... | |
graphite-poly.h | Loading commit data... | |
graphite-scop-detection.c | Loading commit data... | |
graphite-scop-detection.h | Loading commit data... | |
graphite-sese-to-poly.c | Loading commit data... | |
graphite-sese-to-poly.h | Loading commit data... | |
graphite.c | Loading commit data... | |
gsstruct.def | Loading commit data... | |
gstab.h | Loading commit data... | |
gsyms.h | Loading commit data... | |
gsyslimits.h | Loading commit data... | |
gtm-builtins.def | Loading commit data... | |
haifa-sched.c | Loading commit data... | |
hard-reg-set.h | Loading commit data... | |
hash-map.h | Loading commit data... | |
hash-set.h | Loading commit data... | |
hash-table.c | Loading commit data... | |
hash-table.h | Loading commit data... | |
highlev-plugin-common.h | Loading commit data... | |
hooks.c | Loading commit data... | |
hooks.h | Loading commit data... | |
host-default.c | Loading commit data... | |
hosthooks-def.h | Loading commit data... | |
hosthooks.h | Loading commit data... | |
hw-doloop.c | Loading commit data... | |
hw-doloop.h | Loading commit data... | |
hwint.c | Loading commit data... | |
hwint.h | Loading commit data... | |
ifcvt.c | Loading commit data... | |
ifcvt.h | Loading commit data... | |
inchash.c | Loading commit data... | |
inchash.h | Loading commit data... | |
incpath.c | Loading commit data... | |
incpath.h | Loading commit data... | |
init-regs.c | Loading commit data... | |
input.c | Loading commit data... | |
input.h | Loading commit data... | |
insn-addr.h | Loading commit data... | |
insn-notes.def | Loading commit data... | |
internal-fn.c | Loading commit data... | |
internal-fn.def | Loading commit data... | |
internal-fn.h | Loading commit data... | |
intl.c | Loading commit data... | |
intl.h | Loading commit data... | |
ipa-chkp.c | Loading commit data... | |
ipa-chkp.h | Loading commit data... | |
ipa-comdats.c | Loading commit data... | |
ipa-cp.c | Loading commit data... | |
ipa-devirt.c | Loading commit data... | |
ipa-icf-gimple.c | Loading commit data... | |
ipa-icf-gimple.h | Loading commit data... | |
ipa-icf.c | Loading commit data... | |
ipa-icf.h | Loading commit data... | |
ipa-inline-analysis.c | Loading commit data... | |
ipa-inline-transform.c | Loading commit data... | |
ipa-inline.c | Loading commit data... | |
ipa-inline.h | Loading commit data... | |
ipa-polymorphic-call.c | Loading commit data... | |
ipa-profile.c | Loading commit data... | |
ipa-prop.c | Loading commit data... | |
ipa-prop.h | Loading commit data... | |
ipa-pure-const.c | Loading commit data... | |
ipa-ref.c | Loading commit data... | |
ipa-ref.h | Loading commit data... | |
ipa-reference.c | Loading commit data... | |
ipa-reference.h | Loading commit data... | |
ipa-split.c | Loading commit data... | |
ipa-utils.c | Loading commit data... | |
ipa-utils.h | Loading commit data... | |
ipa-visibility.c | Loading commit data... | |
ipa.c | Loading commit data... | |
ira-build.c | Loading commit data... | |
ira-color.c | Loading commit data... | |
ira-conflicts.c | Loading commit data... | |
ira-costs.c | Loading commit data... | |
ira-emit.c | Loading commit data... | |
ira-int.h | Loading commit data... | |
ira-lives.c | Loading commit data... | |
ira.c | Loading commit data... | |
ira.h | Loading commit data... | |
is-a.h | Loading commit data... | |
jump.c | Loading commit data... | |
langhooks-def.h | Loading commit data... | |
langhooks.c | Loading commit data... | |
langhooks.h | Loading commit data... | |
lcm.c | Loading commit data... | |
lcm.h | Loading commit data... | |
libfuncs.h | Loading commit data... | |
limitx.h | Loading commit data... | |
limity.h | Loading commit data... | |
lists.c | Loading commit data... | |
lock-and-run.sh | Loading commit data... | |
loop-doloop.c | Loading commit data... | |
loop-init.c | Loading commit data... | |
loop-invariant.c | Loading commit data... | |
loop-iv.c | Loading commit data... | |
loop-unroll.c | Loading commit data... | |
loop-unroll.h | Loading commit data... | |
lower-subreg.c | Loading commit data... | |
lower-subreg.h | Loading commit data... | |
lra-assigns.c | Loading commit data... | |
lra-coalesce.c | Loading commit data... | |
lra-constraints.c | Loading commit data... | |
lra-eliminations.c | Loading commit data... | |
lra-int.h | Loading commit data... | |
lra-lives.c | Loading commit data... | |
lra-spills.c | Loading commit data... | |
lra.c | Loading commit data... | |
lra.h | Loading commit data... | |
lto-cgraph.c | Loading commit data... | |
lto-compress.c | Loading commit data... | |
lto-compress.h | Loading commit data... | |
lto-opts.c | Loading commit data... | |
lto-section-in.c | Loading commit data... | |
lto-section-names.h | Loading commit data... | |
lto-section-out.c | Loading commit data... | |
lto-streamer-in.c | Loading commit data... | |
lto-streamer-out.c | Loading commit data... | |
lto-streamer.c | Loading commit data... | |
lto-streamer.h | Loading commit data... | |
lto-wrapper.c | Loading commit data... | |
machmode.def | Loading commit data... | |
machmode.h | Loading commit data... | |
main.c | Loading commit data... | |
match.pd | Loading commit data... | |
mcf.c | Loading commit data... | |
mkconfig.sh | Loading commit data... | |
mode-classes.def | Loading commit data... | |
mode-switching.c | Loading commit data... | |
modulo-sched.c | Loading commit data... | |
omega.c | Loading commit data... | |
omega.h | Loading commit data... | |
omp-builtins.def | Loading commit data... | |
omp-low.c | Loading commit data... | |
omp-low.h | Loading commit data... | |
opt-functions.awk | Loading commit data... | |
opt-gather.awk | Loading commit data... | |
opt-include.awk | Loading commit data... | |
opt-read.awk | Loading commit data... | |
optabs.c | Loading commit data... | |
optabs.def | Loading commit data... | |
optabs.h | Loading commit data... | |
optc-gen.awk | Loading commit data... | |
optc-save-gen.awk | Loading commit data... | |
opth-gen.awk | Loading commit data... | |
opts-common.c | Loading commit data... | |
opts-diagnostic.h | Loading commit data... | |
opts-global.c | Loading commit data... | |
opts.c | Loading commit data... | |
opts.h | Loading commit data... | |
output.h | Loading commit data... | |
params.c | Loading commit data... | |
params.def | Loading commit data... | |
params.h | Loading commit data... | |
pass_manager.h | Loading commit data... | |
passes.c | Loading commit data... | |
passes.def | Loading commit data... | |
plugin.c | Loading commit data... | |
plugin.def | Loading commit data... | |
plugin.h | Loading commit data... | |
postreload-gcse.c | Loading commit data... | |
postreload.c | Loading commit data... | |
predict.c | Loading commit data... | |
predict.def | Loading commit data... | |
predict.h | Loading commit data... | |
prefix.c | Loading commit data... | |
prefix.h | Loading commit data... | |
pretty-print.c | Loading commit data... | |
pretty-print.h | Loading commit data... | |
print-rtl.c | Loading commit data... | |
print-rtl.h | Loading commit data... | |
print-tree.c | Loading commit data... | |
print-tree.h | Loading commit data... | |
profile.c | Loading commit data... | |
profile.h | Loading commit data... | |
read-md.c | Loading commit data... | |
read-md.h | Loading commit data... | |
read-rtl.c | Loading commit data... | |
real.c | Loading commit data... | |
real.h | Loading commit data... | |
realmpfr.c | Loading commit data... | |
realmpfr.h | Loading commit data... | |
recog.c | Loading commit data... | |
recog.h | Loading commit data... | |
ree.c | Loading commit data... | |
reg-notes.def | Loading commit data... | |
reg-stack.c | Loading commit data... | |
regcprop.c | Loading commit data... | |
regcprop.h | Loading commit data... | |
reginfo.c | Loading commit data... | |
regrename.c | Loading commit data... | |
regrename.h | Loading commit data... | |
regs.h | Loading commit data... | |
regset.h | Loading commit data... | |
regstat.c | Loading commit data... | |
reload.c | Loading commit data... | |
reload.h | Loading commit data... | |
reload1.c | Loading commit data... | |
reorg.c | Loading commit data... | |
resource.c | Loading commit data... | |
resource.h | Loading commit data... | |
rtl-chkp.c | Loading commit data... | |
rtl-chkp.h | Loading commit data... | |
rtl-error.c | Loading commit data... | |
rtl-error.h | Loading commit data... | |
rtl-iter.h | Loading commit data... | |
rtl.c | Loading commit data... | |
rtl.def | Loading commit data... | |
rtl.h | Loading commit data... | |
rtlanal.c | Loading commit data... | |
rtlhash.c | Loading commit data... | |
rtlhash.h | Loading commit data... | |
rtlhooks-def.h | Loading commit data... | |
rtlhooks.c | Loading commit data... | |
sanitizer.def | Loading commit data... | |
sanopt.c | Loading commit data... | |
sbitmap.c | Loading commit data... | |
sbitmap.h | Loading commit data... | |
sched-deps.c | Loading commit data... | |
sched-ebb.c | Loading commit data... | |
sched-int.h | Loading commit data... | |
sched-rgn.c | Loading commit data... | |
sched-vis.c | Loading commit data... | |
sdbout.c | Loading commit data... | |
sdbout.h | Loading commit data... | |
sel-sched-dump.c | Loading commit data... | |
sel-sched-dump.h | Loading commit data... | |
sel-sched-ir.c | Loading commit data... | |
sel-sched-ir.h | Loading commit data... | |
sel-sched.c | Loading commit data... | |
sel-sched.h | Loading commit data... | |
sese.c | Loading commit data... | |
sese.h | Loading commit data... | |
shrink-wrap.c | Loading commit data... | |
shrink-wrap.h | Loading commit data... | |
signop.h | Loading commit data... | |
simplify-rtx.c | Loading commit data... | |
sparseset.c | Loading commit data... | |
sparseset.h | Loading commit data... | |
sreal.c | Loading commit data... | |
sreal.h | Loading commit data... | |
ssa-iterators.h | Loading commit data... | |
stab.def | Loading commit data... | |
stack-ptr-mod.c | Loading commit data... | |
statistics.c | Loading commit data... | |
statistics.h | Loading commit data... | |
stmt.c | Loading commit data... | |
stmt.h | Loading commit data... | |
stor-layout.c | Loading commit data... | |
stor-layout.h | Loading commit data... | |
store-motion.c | Loading commit data... | |
streamer-hooks.c | Loading commit data... | |
streamer-hooks.h | Loading commit data... | |
stringpool.c | Loading commit data... | |
stringpool.h | Loading commit data... | |
symtab.c | Loading commit data... | |
sync-builtins.def | Loading commit data... | |
system.h | Loading commit data... | |
target-def.h | Loading commit data... | |
target-globals.c | Loading commit data... | |
target-globals.h | Loading commit data... | |
target-hooks-macros.h | Loading commit data... | |
target.def | Loading commit data... | |
target.h | Loading commit data... | |
targhooks.c | Loading commit data... | |
targhooks.h | Loading commit data... | |
timevar.c | Loading commit data... | |
timevar.def | Loading commit data... | |
timevar.h | Loading commit data... | |
tlink.c | Loading commit data... | |
toplev.c | Loading commit data... | |
toplev.h | Loading commit data... | |
tracer.c | Loading commit data... | |
trans-mem.c | Loading commit data... | |
trans-mem.h | Loading commit data... | |
tree-affine.c | Loading commit data... | |
tree-affine.h | Loading commit data... | |
tree-browser.c | Loading commit data... | |
tree-browser.def | Loading commit data... | |
tree-call-cdce.c | Loading commit data... | |
tree-cfg.c | Loading commit data... | |
tree-cfg.h | Loading commit data... | |
tree-cfgcleanup.c | Loading commit data... | |
tree-cfgcleanup.h | Loading commit data... | |
tree-chkp-opt.c | Loading commit data... | |
tree-chkp.c | Loading commit data... | |
tree-chkp.h | Loading commit data... | |
tree-chrec.c | Loading commit data... | |
tree-chrec.h | Loading commit data... | |
tree-complex.c | Loading commit data... | |
tree-core.h | Loading commit data... | |
tree-data-ref.c | Loading commit data... | |
tree-data-ref.h | Loading commit data... | |
tree-dfa.c | Loading commit data... | |
tree-dfa.h | Loading commit data... | |
tree-diagnostic.c | Loading commit data... | |
tree-diagnostic.h | Loading commit data... | |
tree-dump.c | Loading commit data... | |
tree-dump.h | Loading commit data... | |
tree-eh.c | Loading commit data... | |
tree-eh.h | Loading commit data... | |
tree-emutls.c | Loading commit data... | |
tree-hasher.h | Loading commit data... | |
tree-if-conv.c | Loading commit data... | |
tree-inline.c | Loading commit data... | |
tree-inline.h | Loading commit data... | |
tree-into-ssa.c | Loading commit data... | |
tree-into-ssa.h | Loading commit data... | |
tree-iterator.c | Loading commit data... | |
tree-iterator.h | Loading commit data... | |
tree-loop-distribution.c | Loading commit data... | |
tree-nested.c | Loading commit data... | |
tree-nested.h | Loading commit data... | |
tree-nrv.c | Loading commit data... | |
tree-object-size.c | Loading commit data... | |
tree-object-size.h | Loading commit data... | |
tree-outof-ssa.c | Loading commit data... | |
tree-outof-ssa.h | Loading commit data... | |
tree-parloops.c | Loading commit data... | |
tree-parloops.h | Loading commit data... | |
tree-pass.h | Loading commit data... | |
tree-phinodes.c | Loading commit data... | |
tree-phinodes.h | Loading commit data... | |
tree-predcom.c | Loading commit data... | |
tree-pretty-print.c | Loading commit data... | |
tree-pretty-print.h | Loading commit data... | |
tree-profile.c | Loading commit data... | |
tree-scalar-evolution.c | Loading commit data... | |
tree-scalar-evolution.h | Loading commit data... | |
tree-sra.c | Loading commit data... | |
tree-ssa-address.c | Loading commit data... | |
tree-ssa-address.h | Loading commit data... | |
tree-ssa-alias.c | Loading commit data... | |
tree-ssa-alias.h | Loading commit data... | |
tree-ssa-ccp.c | Loading commit data... | |
tree-ssa-coalesce.c | Loading commit data... | |
tree-ssa-coalesce.h | Loading commit data... | |
tree-ssa-copy.c | Loading commit data... | |
tree-ssa-copyrename.c | Loading commit data... | |
tree-ssa-dce.c | Loading commit data... | |
tree-ssa-dom.c | Loading commit data... | |
tree-ssa-dom.h | Loading commit data... | |
tree-ssa-dse.c | Loading commit data... | |
tree-ssa-forwprop.c | Loading commit data... | |
tree-ssa-ifcombine.c | Loading commit data... | |
tree-ssa-live.c | Loading commit data... | |
tree-ssa-live.h | Loading commit data... | |
tree-ssa-loop-ch.c | Loading commit data... | |
tree-ssa-loop-im.c | Loading commit data... | |
tree-ssa-loop-ivcanon.c | Loading commit data... | |
tree-ssa-loop-ivopts.c | Loading commit data... | |
tree-ssa-loop-ivopts.h | Loading commit data... | |
tree-ssa-loop-manip.c | Loading commit data... | |
tree-ssa-loop-manip.h | Loading commit data... | |
tree-ssa-loop-niter.c | Loading commit data... | |
tree-ssa-loop-niter.h | Loading commit data... | |
tree-ssa-loop-prefetch.c | Loading commit data... | |
tree-ssa-loop-unswitch.c | Loading commit data... | |
tree-ssa-loop.c | Loading commit data... | |
tree-ssa-loop.h | Loading commit data... | |
tree-ssa-math-opts.c | Loading commit data... | |
tree-ssa-operands.c | Loading commit data... | |
tree-ssa-operands.h | Loading commit data... | |
tree-ssa-phiopt.c | Loading commit data... | |
tree-ssa-phiprop.c | Loading commit data... | |
tree-ssa-pre.c | Loading commit data... | |
tree-ssa-propagate.c | Loading commit data... | |
tree-ssa-propagate.h | Loading commit data... | |
tree-ssa-reassoc.c | Loading commit data... | |
tree-ssa-sccvn.c | Loading commit data... | |
tree-ssa-sccvn.h | Loading commit data... | |
tree-ssa-sink.c | Loading commit data... | |
tree-ssa-strlen.c | Loading commit data... | |
tree-ssa-structalias.c | Loading commit data... | |
tree-ssa-tail-merge.c | Loading commit data... | |
tree-ssa-ter.c | Loading commit data... | |
tree-ssa-ter.h | Loading commit data... | |
tree-ssa-threadedge.c | Loading commit data... | |
tree-ssa-threadedge.h | Loading commit data... | |
tree-ssa-threadupdate.c | Loading commit data... | |
tree-ssa-threadupdate.h | Loading commit data... | |
tree-ssa-uncprop.c | Loading commit data... | |
tree-ssa-uninit.c | Loading commit data... | |
tree-ssa.c | Loading commit data... | |
tree-ssa.h | Loading commit data... | |
tree-ssanames.c | Loading commit data... | |
tree-ssanames.h | Loading commit data... | |
tree-stdarg.c | Loading commit data... | |
tree-stdarg.h | Loading commit data... | |
tree-streamer-in.c | Loading commit data... | |
tree-streamer-out.c | Loading commit data... | |
tree-streamer.c | Loading commit data... | |
tree-streamer.h | Loading commit data... | |
tree-switch-conversion.c | Loading commit data... | |
tree-tailcall.c | Loading commit data... | |
tree-vect-data-refs.c | Loading commit data... | |
tree-vect-generic.c | Loading commit data... | |
tree-vect-loop-manip.c | Loading commit data... | |
tree-vect-loop.c | Loading commit data... | |
tree-vect-patterns.c | Loading commit data... | |
tree-vect-slp.c | Loading commit data... | |
tree-vect-stmts.c | Loading commit data... | |
tree-vectorizer.c | Loading commit data... | |
tree-vectorizer.h | Loading commit data... | |
tree-vrp.c | Loading commit data... | |
tree.c | Loading commit data... | |
tree.def | Loading commit data... | |
tree.h | Loading commit data... | |
treestruct.def | Loading commit data... | |
tsan.c | Loading commit data... | |
tsan.h | Loading commit data... | |
tsystem.h | Loading commit data... | |
typeclass.h | Loading commit data... | |
ubsan.c | Loading commit data... | |
ubsan.h | Loading commit data... | |
valtrack.c | Loading commit data... | |
valtrack.h | Loading commit data... | |
value-prof.c | Loading commit data... | |
value-prof.h | Loading commit data... | |
var-tracking.c | Loading commit data... | |
varasm.c | Loading commit data... | |
varasm.h | Loading commit data... | |
varpool.c | Loading commit data... | |
vec.c | Loading commit data... | |
vec.h | Loading commit data... | |
version.c | Loading commit data... | |
version.h | Loading commit data... | |
vmsdbg.h | Loading commit data... | |
vmsdbgout.c | Loading commit data... | |
vtable-verify.c | Loading commit data... | |
vtable-verify.h | Loading commit data... | |
web.c | Loading commit data... | |
wide-int-print.cc | Loading commit data... | |
wide-int-print.h | Loading commit data... | |
wide-int.cc | Loading commit data... | |
wide-int.h | Loading commit data... | |
xcoff.h | Loading commit data... | |
xcoffout.c | Loading commit data... | |
xcoffout.h | Loading commit data... |