osprey/be/cg/ia64/float_rf.cxx File Reference

#include "float_rf.h"
#include <stdio.h>
#include <inttypes.h>
#include <stdlib.h>

Include dependency graph for float_rf.cxx:

Go to the source code of this file.

Defines

#define EXP_INF   0x1ffff
#define EXP_NAN   0x1ffff
#define EXP_NATVAL   0x1ffff
#define EXP_BIAS   0xffff
#define SIGN_SHIFT   17
#define ULONGLONG_MAX   0xffffffffffffffffull
#define LONGLONG_MAX   0x7fffffffffffffffll
#define EXP_MIN   -65534
#define GUARD_BIT   0x8000000000000000ull
#define STICKY_BIT   0x4000000000000000ull
#define HIGH_BIT   0x8000000000000000ull
#define BIT23   (1ull << 23)
#define BIT52   (1ull << 52)
#define FP_RN   0
#define FP_RM   1
#define FP_RP   2
#define FP_RZ   3
#define INFINITY   1
#define MAXVAL   2
#define MINFINITY   3
#define MMAXVAL   4
#define UNDEF   -1
#define SNGL   0
#define DBL   2
#define DBL_EXT   3
#define NATVAL   1
#define SIGNALING_NAN   2
#define QUIET_NAN   4
#define STICKY_MASK   0x7fffffffffffffffull
#define FALSE   0
#define TRUE   1
#define SEXP_MIN   -126
#define SEXP_MAX   127
#define DEXP_MIN   -1022
#define DEXP_MAX   1023
#define DEEXP_MIN   -16382
#define DEEXP_MAX   16383
#define WEXP_MIN   -65534
#define WEXP_MAX   65535
#define LOW32BITS   0xffffffffull

Typedefs

typedef unsigned long long uint64_t

Enumerations

enum  fp_op_type {
  op_fcmp, op_fpcmp, op_fcvt_fx, op_fpcvt_fx,
  op_fcvt_fxu, op_fpcvt_fxu, op_fma, op_fpma,
  op_fminmax, op_fpminmax, op_fms_fnma, op_fpms_fpnma,
  op_fnorm, op_frcpa, op_fprcpa, op_frsqrta,
  op_fprsqrta
}

Functions/Subroutines

int fp_software_assistance_required (fp_op_type opcode, const float_rf *fr2, const float_rf *fr3, const float_rf *fr4, int sf_dd)
int fp_is_natval (const float_rf *freg)
int fp_is_inf (const float_rf *freg)
int fp_is_nan (const float_rf *freg)
int fp_is_qnan (const float_rf *freg)
int fp_is_snan (const float_rf *freg)
int fp_is_neg_inf (const float_rf *freg)
int fp_is_neg_non_zero (const float_rf *freg)
int fp_is_normal (const float_rf *freg)
int fp_is_pos_inf (const float_rf *freg)
int fp_is_pos_non_zero (const float_rf *freg)
int fp_is_pseudo_zero (const float_rf *freg)
int fp_is_unorm (const float_rf *freg)
int fp_is_unorm_not_pseudo_denorm (const float_rf *freg)
int fp_is_unsupported (const float_rf *freg)
int fp_is_zero (const float_rf *freg)
float_rf fma (const float_rf *rs, const float_rf *rt, const float_rf *rr, status_field *sf)
float_rf fnorm (const float_rf *rs, const float_rf *rt, const float_rf *rr, status_field *sf)
float_rf fms (const float_rf *rs, const float_rf *rt, const float_rf *rr, status_field *sf)
float_rf fnma (const float_rf *rs, const float_rf *rt, const float_rf *rr, status_field *sf)
float_rf fmin (const float_rf *rs, const float_rf *rt, status_field *sf)
float_rf fmax (const float_rf *rs, const float_rf *rt, status_field *sf)
float_rf famin (const float_rf *rs, const float_rf *rt, status_field *sf)
float_rf famax (const float_rf *rs, const float_rf *rt, status_field *sf)
float_rf fcvtfx (const float_rf *rs, status_field *sf)
float_rf fcvtfxtrunc (const float_rf *rs, status_field *sf)
float_rf fcvtfxu (const float_rf *rs, status_field *sf)
float_rf fcvtfxutrunc (const float_rf *rs, status_field *sf)
float_rf fcvtxf (const float_rf *rs)
int32_t fcmp_eq (const float_rf *rs, const float_rf *rt, status_field *sf)
int32_t fcmp_lt (const float_rf *rs, const float_rf *rt, status_field *sf)
int32_t fcmp_le (const float_rf *rs, const float_rf *rt, status_field *sf)
int32_t fcmp_unord (const float_rf *rs, const float_rf *rt, status_field *sf)
float_rf frcpa (int32_t *pr, const float_rf *rs, const float_rf *rt, status_field *sf)
float_rf soft_div (uint32_t rssign, int32_t rsexp, uint64_t rsfrac, uint32_t rtsign, int32_t rtexp, uint64_t rtfrac, status_field *sf)
float_rf frsqrta (int32_t *pr, const float_rf *rs, status_field *sf)
float_rf recip_sqrt (uint32_t rssign, int32_t rsexp, uint64_t rsfrac)
float_rf madd (uint32_t rssign, int32_t rsexp, uint64_t rsfrac, uint32_t rtsign, int32_t rtexp, uint64_t rtfrac, uint32_t rrsign, int32_t rrexp, uint64_t rrfrac, status_field *sf)
float_rf round_l (uint32_t sign, int64_t rs, uint64_t guard_bits, status_field *sf)
float_rf round (uint32_t rssign, int32_t rsexp, uint64_t rsfrac, uint64_t guard_bits, status_field *sf)
int32_t renorm (uint64_t *p_val)
void breakout (const float_rf *rs, uint32_t *rssign, int32_t *rsexp, uint64_t *rsfrac, status_field *sf)
int32_t breakout_and_test (const float_rf *rs, uint32_t *rssign, int32_t *rsexp, uint64_t *rsfrac, status_field *sf)
int32_t breakout_and_test2 (const float_rf *rs, uint32_t *rssign, int32_t *rsexp, uint64_t *rsfrac, const float_rf *rt, uint32_t *rtsign, int32_t *rtexp, uint64_t *rtfrac, status_field *sf)
int32_t breakout_and_test3 (const float_rf *rs, uint32_t *rssign, int32_t *rsexp, uint64_t *rsfrac, const float_rf *rt, uint32_t *rtsign, int32_t *rtexp, uint64_t *rtfrac, const float_rf *rr, uint32_t *rrsign, int32_t *rrexp, uint64_t *rrfrac, status_field *sf)
uint64_t mul64 (uint64_t x, uint64_t y, uint64_t *low_bits)

Variables

float_rf Infinity_rf
float_rf Quiet_nan_rf
float_rf NaTVal_rf
float_rf Zero_rf
static unsigned short recip_table [256]
unsigned short recip_sqrt_table [256]
static const int8_t carry_bit [4][2][2][2][2]
static int64_t overflow_result [4][2]
static int8_t shift_count [16]


Define Documentation

#define BIT23   (1ull << 23)

Definition at line 72 of file float_rf.cxx.

Referenced by round().

#define BIT52   (1ull << 52)

Definition at line 73 of file float_rf.cxx.

Referenced by round().

#define DBL   2

Definition at line 88 of file float_rf.cxx.

Referenced by frcpa(), frsqrta(), round(), and soft_div().

#define DBL_EXT   3

Definition at line 89 of file float_rf.cxx.

Referenced by round().

#define DEEXP_MAX   16383

Definition at line 111 of file float_rf.cxx.

Referenced by frcpa(), frsqrta(), and round().

#define DEEXP_MIN   -16382

Definition at line 110 of file float_rf.cxx.

Referenced by frcpa(), frsqrta(), and round().

#define DEXP_MAX   1023

Definition at line 108 of file float_rf.cxx.

Referenced by frcpa(), frsqrta(), and round().

#define DEXP_MIN   -1022

Definition at line 107 of file float_rf.cxx.

Referenced by frcpa(), frsqrta(), and round().

#define EXP_BIAS   0xffff

Definition at line 59 of file float_rf.cxx.

Referenced by fcvtfx(), fcvtfxtrunc(), fcvtfxu(), fcvtfxutrunc(), frcpa(), frsqrta(), madd(), recip_sqrt(), and round().

#define EXP_INF   0x1ffff

Definition at line 56 of file float_rf.cxx.

Referenced by frcpa(), frsqrta(), madd(), and round().

#define EXP_MIN   -65534

Definition at line 67 of file float_rf.cxx.

#define EXP_NAN   0x1ffff

#define EXP_NATVAL   0x1ffff

Definition at line 58 of file float_rf.cxx.

Referenced by breakout_and_test(), breakout_and_test2(), breakout_and_test3(), and fcvtxf().

#define FALSE   0

Definition at line 98 of file float_rf.cxx.

Referenced by $auxread(), VALNUM_FRE::_all_same_occurs(), W2CF_TRANSLATOR::_Array_Segment_To_String(), _bfd_add_bfd_to_archive_cache(), _bfd_add_merge_section(), _bfd_archive_bsd_construct_extended_name_table(), _bfd_archive_bsd_update_armap_timestamp(), _bfd_coff_arm_set_private_flags(), _bfd_coff_final_link(), _bfd_coff_generic_relocate_section(), _bfd_coff_get_external_symbols(), _bfd_coff_link_add_symbols(), _bfd_coff_link_input_bfd(), _bfd_coff_reloc_link_order(), _bfd_coff_write_global_sym(), _bfd_compute_and_write_armap(), _bfd_construct_extended_name_table(), _bfd_default_link_order(), _bfd_discard_section_stabs(), _bfd_do_ns32k_reloc_contents(), _bfd_dwarf1_find_nearest_line(), _bfd_dwarf2_find_nearest_line(), _bfd_ecoff_archive_p(), _bfd_ecoff_bfd_copy_private_bfd_data(), _bfd_ecoff_bfd_final_link(), _bfd_ecoff_bfd_link_add_symbols(), _bfd_ecoff_find_nearest_line(), _bfd_ecoff_locate_line(), _bfd_ecoff_make_empty_symbol(), _bfd_ecoff_mkobject(), _bfd_ecoff_set_section_contents(), _bfd_ecoff_slurp_armap(), _bfd_ecoff_slurp_symbol_table(), _bfd_ecoff_slurp_symbolic_info(), _bfd_ecoff_write_armap(), _bfd_ecoff_write_object_contents(), _bfd_elf_add_default_symbol(), _bfd_elf_add_dynamic_entry(), _bfd_elf_adjust_dynamic_symbol(), _bfd_elf_archive_symbol_lookup(), _bfd_elf_canonicalize_reloc(), _bfd_elf_canonicalize_symtab(), _bfd_elf_compute_section_file_positions(), _bfd_elf_copy_private_header_data(), _bfd_elf_create_dynamic_sections(), _bfd_elf_create_got_section(), _bfd_elf_discard_section_eh_frame(), _bfd_elf_discard_section_eh_frame_hdr(), _bfd_elf_dynamic_symbol_p(), _bfd_elf_export_symbol(), _bfd_elf_find_nearest_line(), _bfd_elf_fix_symbol_flags(), _bfd_elf_gc_mark(), _bfd_elf_init_reloc_shdr(), _bfd_elf_is_local_label_name(), _bfd_elf_link_assign_sym_version(), _bfd_elf_link_create_dynamic_sections(), _bfd_elf_link_create_dynstrtab(), _bfd_elf_link_find_version_dependencies(), _bfd_elf_link_hash_table_init(), _bfd_elf_link_omit_section_dynsym(), _bfd_elf_link_output_relocs(), _bfd_elf_link_size_reloc_section(), _bfd_elf_make_section_from_phdr(), _bfd_elf_make_section_from_shdr(), _bfd_elf_merge_sections(), _bfd_elf_merge_symbol(), _bfd_elf_mips_get_relocated_section_contents(), _bfd_elf_new_section_hook(), _bfd_elf_print_private_bfd_data(), _bfd_elf_set_arch_mach(), _bfd_elf_set_section_contents(), _bfd_elf_setup_group_pointers(), _bfd_elf_slurp_version_tables(), _bfd_elf_stringtab_init(), _bfd_elf_strtab_emit(), _bfd_elf_symbol_refs_local_p(), _bfd_elf_validate_reloc(), _bfd_elf_write_object_contents(), _bfd_elf_write_section_eh_frame_hdr(), _bfd_elfcore_make_pseudosection(), _bfd_generic_final_link(), _bfd_generic_get_section_contents(), _bfd_generic_get_section_contents_in_window(), _bfd_generic_link_add_archive_symbols(), _bfd_generic_link_add_one_symbol(), _bfd_generic_link_add_symbols(), _bfd_generic_link_hash_newfunc(), _bfd_generic_link_output_symbols(), _bfd_generic_link_split_section(), _bfd_generic_link_write_global_symbol(), _bfd_generic_mkarchive(), _bfd_generic_reloc_link_order(), _bfd_generic_section_already_linked(), _bfd_generic_set_section_contents(), _bfd_generic_verify_endian_match(), _bfd_link_section_stabs(), _bfd_m32r_elf_section_from_bfd_section(), _bfd_m68hc11_elf_merge_private_bfd_data(), _bfd_merged_section_offset(), _bfd_mips_elf32_gprel16_reloc(), _bfd_mips_elf_add_symbol_hook(), _bfd_mips_elf_always_size_sections(), _bfd_mips_elf_check_relocs(), _bfd_mips_elf_create_dynamic_sections(), _bfd_mips_elf_discard_info(), _bfd_mips_elf_final_link(), _bfd_mips_elf_find_nearest_line(), _bfd_mips_elf_finish_dynamic_sections(), _bfd_mips_elf_finish_dynamic_symbol(), _bfd_mips_elf_generic_reloc(), _bfd_mips_elf_hide_symbol(), _bfd_mips_elf_ignore_discarded_relocs(), _bfd_mips_elf_link_hash_table_create(), _bfd_mips_elf_lo16_reloc(), _bfd_mips_elf_merge_private_bfd_data(), _bfd_mips_elf_modify_segment_map(), _bfd_mips_elf_new_section_hook(), _bfd_mips_elf_read_ecoff_info(), _bfd_mips_elf_relocate_section(), _bfd_mips_elf_section_from_bfd_section(), _bfd_mips_elf_section_from_shdr(), _bfd_mips_elf_section_processing(), _bfd_mips_elf_set_section_contents(), _bfd_mips_elf_size_dynamic_sections(), _bfd_mips_elf_write_section(), _bfd_mips_relax_section(), _bfd_mmix_after_linker_allocation(), _bfd_mmix_before_linker_allocation(), _bfd_mmix_check_all_relocs(), _bfd_mn10300_elf_adjust_dynamic_symbol(), _bfd_mn10300_elf_create_dynamic_sections(), _bfd_mn10300_elf_create_got_section(), _bfd_mn10300_elf_merge_private_bfd_data(), _bfd_mn10300_elf_size_dynamic_sections(), _bfd_new_bfd(), _bfd_nocore_core_file_matches_executable_p(), _bfd_save_vms_section(), _bfd_sh_align_load_span(), _bfd_slurp_extended_name_table(), _bfd_stab_section_find_nearest_line(), _bfd_stringtab_emit(), _bfd_stringtab_init(), _bfd_vms_enter_symbol(), _bfd_vms_slurp_eom(), _bfd_vms_slurp_gsd(), _bfd_vms_write_tir(), _bfd_write_archive_contents(), _bfd_write_merged_section(), _bfd_write_stab_strings(), _bfd_xcoff64_put_ldsymbol_name(), _bfd_xcoff64_put_symbol_name(), _bfd_xcoff_bfd_final_link(), _bfd_xcoff_bfd_link_add_symbols(), _bfd_xcoff_bfd_link_hash_table_create(), _bfd_xcoff_is_local_label_name(), _bfd_xcoff_mkobject(), _bfd_xcoff_put_ldsymbol_name(), _bfd_xcoff_put_symbol_name(), _bfd_xcoff_slurp_armap(), _bfd_XX_bfd_copy_private_section_data(), _bfd_XXi_final_link_postscript(), CFG_NODE_MAP::_bubble_sort(), VALNUM_FRE::_check_cr_compatible(), FRAC::_checksz(), W2CF_TRANSLATOR::_Clause_Exprs_To_String(), W2CF_TRANSLATOR::_Clause_Symbols_To_String(), TRACK_CYCLE::_Clear(), SRC_BB_MGR::_compute_cutting_set(), VALNUM_FRE::_contains_undef_val(), VALNUM_FRE::_cr_maybe_removed(), _CSHIFT(), _dwarf_setup(), ANL_PRAGMA_CONSTRUCT::_End_Is_Part_Of_Construct(), _EOSHIFT(), ANL_FILE_MNGR::_Exists(), ANL_PRAGMA_CONSTRUCT::_Find_Pragma_End_Stmt(), _fmt_parse(), _frv_create_got_section(), _frvfdpic_count_got_plt_entries(), _frvfdpic_emit_got_relocs_plt_entries(), _frvfdpic_link_omit_section_dynsym(), _frvfdpic_relax_tls_entries(), _frvfdpic_size_got_plt(), VN_IVC::_get_literal_diff(), ANL_PRAGMA_CONSTRUCT::_Get_Max_Construct_Srcpos(), VALNUM_FRE::_get_occur_cr(), VALNUM_FRE::_get_worklist_info(), VALNUM_FRE::_grow_exprid_maps(), VALNUM_FRE::_grow_valnum_maps(), VALNUM_FRE::_has_valid_stmtrep_occurrence(), RGN_CFLOW_MGR::_init_data_member(), CG_GROUPING::_init_resource(), ANL_PRAGMA_ATTRIBUTE::_Is_Assertion(), W2CF_TRANSLATOR::_Is_Ptr_Expr(), VALNUM_FRE::_is_vnfre_candidate(), VALNUM_FRE::_ivc_classify(), VALNUM_FRE::_ivc_coalesce(), VALNUM_FRE::_ivc_substitute(), RGN_CFLOW_MGR::_node_cflow_info(), _PACK(), VN::_print_vn_to_exprid(), FRAC::_reduce2(), VALNUM_FRE::_remove_nested_occurs(), VALNUM_FRE::_rename_valnums(), _RESHAPE(), VALNUM_FRE::_select_and_sort_valnums(), VN::_set_valnum(), W2CF_TRANSLATOR::_Skip_Ignored_Clauses(), SORTED_MAP< KEY, RANGE >::_sort(), _SPREAD(), SRC_BB_MGR::_src_bb_is_qualified(), _tagRGN_CFG_PATH_INFO::_tagRGN_CFG_PATH_INFO(), _TRANS(), _TRANSFER(), _UNPACK(), VN::_valnum_expr(), VN::_valnum_lhs(), VN::_valnum_memloc_load(), VN::_valnum_memloc_store(), VN::_valnum_op(), VN::_valnum_phi_list(), VALNUM_FRE::_verify_and_remove_occurs(), _wrfmt(), ANL_LOOP_CONSTRUCT::_Write_Loop_Directive(), ANL_PRAGMA_CONSTRUCT::_Write_Pragma_Directives(), ANL_REGION_CONSTRUCT::_Write_Region_Directive(), _X_PROP_INTERSECTION_IS_NONEMPTY_(), _xanalyze_stmt_for_conds(), _xcreate_shackle_map_for_arrays_in_func(), _xdependence_is_preserved(), _xfunc_has_stmts2prevent_shackle(), _xis_legal_shackle(), _xis_simple_shackle_case(), a29k_reloc(), abs_intrinsic(), ACCESS_VECTOR::ACCESS_VECTOR(), Access_Vector_Condition_Provable(), Access_vector_is_too_messy(), accum_operand(), Accumulate_Preg_Info(), EXEC_PATH_MGR::Acquire_Path_Info(), SYSTEM_OF_EQUATIONS::Acy_Set_Var(), SYSTEM_OF_EQUATIONS::Acyclic_Test(), ADDR_LINEAR_EXPR::Add(), MA_OFFSET::Add(), LINEX::Add_access(), Add_Actual_To_Map(), add_archive_element(), LOCAL_CLSC::Add_aux_id_to_bs(), Add_Bkwd_REG_Arcs(), Add_BRANCH_Arcs(), add_command_line_arg(), LFTR_VAR::Add_comparison(), Add_Condition(), add_cref(), ARA_LOOP_INFO::Add_Dependence(), Add_Doacross_Comments(), Add_DST_variable(), FB_CFG::Add_edge(), REGIONAL_CFG::Add_Edge(), Add_Edges_For_Node(), DSE::Add_EH_exposed_use(), IPAA_FORMAL_MAP::Add_elmt(), CODEMAP::Add_expr(), add_extra_plt_sections(), add_file_args(), add_file_shuffle(), Add_Forw_REG_Arcs(), RINIT::Add_goto(), DCE::Add_goto_stmt(), PF_LG::Add_Group(), add_gtn_use_arc(), CODEMAP::Add_idef(), add_implied_string(), AGGINIT::Add_Init_For_Label_Values(), AGGINIT::Add_Init_For_WHIRL(), AGGINIT::Add_Inito_For_Tree(), Add_Inito_For_Tree(), AGGINIT::Add_Initv_For_Tree(), Add_Initv_For_Tree(), add_inline_option(), add_ipl_cmd_string(), Add_Item(), RINIT::Add_label_alias(), SYSTEM_OF_EQUATIONS::Add_Le_Non_Redundant(), Add_Map_To_Map(), Add_MEM_Arcs(), add_mem_arcs_from(), Add_Memory_Barriers(), add_memory_shuffle(), Add_MISC_Arcs(), DSE::Add_MU_list_for_calls(), ACCESS_VECTOR::Add_Nonlin(), CFG::Add_one_io_stmt(), Add_One_Node(), CFG::Add_one_stmt(), Add_Or_Subtract(), Add_Ordered_Item(), DCE::Add_path_to_ipdom(), Add_Pragma_To_MP_Regions(), Add_Predicate_Valid_BB(), Add_Predicate_Valid_OP(), Add_PregTNs_To_BB(), PF_LG::Add_Ref(), LEGO_AFFINITY::Add_Ref(), PF_UGS::Add_Ref(), PF_LOOPNODE::Add_Ref(), LEGO_UGS::Add_Ref(), PF_BASE_ARRAY::Add_Ref(), PARTITION_GRAPH::Add_Relation(), Add_Scheduling_Note(), add_special_options(), Add_Stmt_Dependence(), ACCESS_VECTOR::Add_Symbol(), add_symbol_adjust(), Add_Symbols(), CODEMAP::Add_tcon(), add_to_stringtab(), Add_To_Symbol(), TRANSPOSE_DIRECTED_GRAPH16::Add_Vertex(), SYSTEM_OF_EQUATIONS::Add_Work_Var(), addr_invariant_in_loop(), addr_subtract(), WB_BROWSER::Address_Walk(), Address_Walk(), Adjust_Alloca_Code(), adjust_arc_for_rw_elim(), adjust_char_value_len(), adjust_continued_macro(), FB_CFG::Adjust_edge(), Adjust_Exit(), Adjust_GP_Entry(), Adjust_GP_Exit(), Adjust_Opt_Level(), WOPT_SWITCHES::Adjust_Optimization(), Adjust_Recovery_Block(), OPT_STAB::Adjust_vsym(), Adjusted_Alignment(), adjustl_intrinsic(), AGGINIT::AGGINIT(), aimag_intrinsic(), aint_intrinsic(), ALIAS_MANAGER::ALIAS_MANAGER(), LOOP_INVAR_CODE_MOTION::Alias_With_Call(), PT_SET::Aliased(), ALIAS_RULE::Aliased_ANSI_Type_Rule(), ALIAS_RULE::Aliased_Attribute_Rule(), DSE::Aliased_aux(), ALIAS_RULE::Aliased_Base_Rule(), ALIAS_RULE::Aliased_C_Qualifier_Rule(), ALIAS_RULE::Aliased_Disjoint(), ALIAS_RULE::Aliased_F_Param_Rule(), ALIAS_RULE::Aliased_Memop_By_Declaration(), ALIAS_RULE::Aliased_Qualifier_Rule(), ALIAS_RULE::Aliased_Ragnarok_Restrict(), ALIAS_RULE::Aliased_Ragnarok_Unnamed(), ALIAS_RULE::Aliased_Strongly_Typed_Rule(), ALIAS_RULE::Aliased_with_Call(), align_bit_length(), all_bbs_in(), all_bbs_mapped(), All_Bits_Set(), all_intrinsic(), All_O3(), All_Uses_Outside_Of_Loop(), All_Uses_Within(), ESSA::Alloc_and_generate_injured_phi_res(), alloc_obj_opr_handler(), Alloc_Regs_For_BB(), alloc_res(), Alloc_Result_TNs(), Allocate_All_Formals(), allocate_dynrel_entries(), allocate_dynrelocs(), allocate_fptr(), allocate_global_data_dlt(), allocate_global_data_opd(), SWP_REG_ASSIGNMENT::Allocate_Loop_Variants(), Allocate_Lvs(), Allocate_Object(), allocate_plt_static(), allocate_reg_life_data(), Allocate_Register(), Allocate_Stacked_Register(), allocate_stmt_semantics(), allocated_intrinsic(), DCE::Allow_dce_prop(), LRANGE::Allowed_Registers(), alpha_ecoff_bad_format_hook(), alpha_ecoff_get_relocated_section_contents(), alpha_end_function(), alpha_output_filename(), alpha_relocate_section(), alu_op_defines_rflags_used(), ARA_LOOP_INFO::Always_Enough_Parallel_Work(), Always_Executes(), Among_top_nth_coderep(), Analyse_Dependencies(), Analyze_all_indices(), MEM_ACCESS_ANALYZER::Analyze_array_access(), Analyze_bases(), WN_UNROLL::Analyze_body_expr(), WN_UNROLL::Analyze_body_stmt(), Analyze_index(), RVI::Analyze_live_range(), MEM_ACCESS_ANALYZER::Analyze_mem_access(), Analyze_one_address(), RVI_LR::Analyze_preds(), SX_INFO::Analyze_Reduction(), analyze_relocations(), Analyze_Spilling_Live_Range(), POINTS_TO::Analyze_ST(), analyze_stmts_in_func_for_if(), RVI_LR::Analyze_succs(), LMV_LOOP_INFO::Analyze_var_value_range(), GOTO_TABLE::Ancestor_Through_If(), and_opr_handler(), AND_Predicate_To_OP(), anint_intrinsic(), Anl_Fini(), Anl_Init(), ANL_LOOP_CONSTRUCT::ANL_LOOP_CONSTRUCT(), ANL_PRAGMA_CONSTRUCT::ANL_PRAGMA_CONSTRUCT(), ANL_REGION_CONSTRUCT::ANL_REGION_CONSTRUCT(), Anl_Static_Analysis(), Anl_Validate_Options(), HOIST_SUMMARY::Anticipated_at_CD(), CODEREP::Antloc_rec(), any_bbs_in(), Any_Loop_In_SNL_Parallelizable(), EXP_PHI::Any_opnd_injured(), aout_adobe_mkobject(), aout_adobe_set_arch_mach(), aout_adobe_set_section_contents(), aout_adobe_write_object_contents(), aout_get_external_symbols(), aout_link_add_object_symbols(), aout_link_add_symbols(), aout_link_check_ar_symbols(), aout_link_check_archive_element(), aout_link_input_bfd(), aout_link_input_section(), aout_link_reloc_link_order(), aout_link_write_other_symbol(), aout_link_write_symbols(), SLIST::Append(), CLIST::Append(), append_char(), Append_F77_Indented_Newline(), Append_Indented_Newline(), Append_MP_Schedtype(), Append_Nest_Clauses(), UNAME_SPACE::Append_new_name(), append_objects_to_list(), EXP_WORKLST::Append_occurrence(), Append_Op_To_BB(), Append_Pragma_Clauses(), Append_Succ(), CIO_RWTRAN::Append_TN_Copy(), VALNUM_FRE::apply(), OCCUR_REPLACEMENT::apply(), Apply_Back_Sub_Invariant(), Apply_Back_Sub_Variant(), Apply_Controls(), SSA_RENAME::Apply_cr(), Appropriate_Shackle_Size_Set(), ARA_LOOP_INFO::ARA_LOOP_INFO(), ARA_REF::ARA_REF(), ARB_are_equivalent(), arc_final_prescan_insn(), ARC_is_control_spec(), ARC_is_ctlspec(), ARC_is_data_spec(), ARC_is_postchk(), arc_output_function_epilogue(), SCHED_DFLOW_MGR::Are_Defs_Live_In(), SCHED_DFLOW_MGR::Are_Defs_Live_Out(), Are_different(), WN_Verifier::Are_enclosed_pragmas(), Are_Equal_Dims(), Are_Independent_Regions(), Are_Permutations(), Are_Similar_Dimensions(), Are_Similar_Regions(), arith_if_stmt_semantics(), arm_cannot_copy_insn_p(), arm_check_note(), arm_coproc_mem_operand(), arm_final_prescan_insn(), arm_gen_movmemqi(), arm_gen_movstrqi(), arm_hard_regno_mode_ok(), arm_output_addr_const_extra(), arm_output_epilogue(), arm_output_function_epilogue(), arm_symbol_is_valid(), REGIONAL_CFG::ARN_Is_Log_If(), array_bounds_resolution(), array_construct_opr_handler(), array_construct_semantics(), array_dim_resolution(), Array_Edge_To_Level_Edge(), Array_Element_Then_Struct(), array_element_to_scalar(), Array_Is_HFA(), ARRAY_REF_LIST::ARRAY_REF_LIST(), ARRAY_REF_NODE::ARRAY_REF_NODE(), Array_Shapes_Match_At_Formal(), Array_Subscript_Uses_IV(), Array_TY_OK(), arrayexp_in_subtree(), ARY_Item_In_List(), AS_Traverse(), asg_opnd_to_tmp(), Assemble_Simulated_OP(), assign_file_positions_except_relocs(), assign_file_positions_for_segments(), assign_new_idxs(), assign_offset(), assign_offsets_for_equiv_groups(), Assign_Registers(), Assign_Registers_For_OP(), assign_section_numbers(), Assign_ST_To_Named_Section(), assign_storage_blk(), Assign_Temp_Regs(), ALIAS_CLASSIFICATION::Assignment_may_xfer_pointer(), assignment_stmt_semantics(), AssignPregExprPos(), associated_intrinsic(), At_Unallocated_Op_Definition(), atan2_intrinsic(), Atoi_KMG(), Atomic_Direct(), Atomic_Using_Critical(), Atomic_Using_Swap(), Attempt_Merge(), Attempt_Reshape(), attr_init_semantics(), attr_is_in_list(), attr_link_resolution(), attr_semantics(), Augment_Simple_Basic_Shackle(), Auto_Parallelization(), Autognum_Driver(), Automatic_Data_Distribute(), LOCAL_CLSC::Aux_id_in_bs(), Avoid_Unit_Spill(), b_out_bfd_get_relocated_section_contents(), b_out_bfd_relax_section(), b_out_mkobject(), b_out_set_arch_mach(), b_out_set_section_contents(), b_out_slurp_reloc_table(), b_out_squirt_out_relocs(), b_out_write_object_contents(), Backend_Processing(), CIO_RWTRAN::Backpatch_Op_In_Epilog(), CIO_RWTRAN::Backpatch_Op_In_Prolog(), backspace_stmt_semantics(), DEPV_COMPUTE::Base_Test(), baseAddress(), BB_Add_Ancestors(), BB_Add_Annotation(), DCE::BB_branch_live(), BB_Can_Retarget_Branch(), BB_Check_Bundle_Integrity(), BB_Has_Addr_Taken_Label(), BB_Has_Already_Been_Splitted(), BB_has_backedge(), BB_has_backedge_and_is_invariant(), BB_has_barrier(), BB_Has_Exc_Label(), BB_has_goto_bb(), BB_Has_Outer_Block_Label(), BB_Has_Store(), BB_has_target_bb(), BB_has_unpaired_dma_begin(), BB_Hold_Disjoint_Speculative_Code(), BB_Is_Cold(), BB_Is_Followed_By_Call(), EDGE_PROFILE::BB_Is_For_Instru(), EDGE_PROFILE::BB_Is_In_BBLIST(), RGN_CFLOW_MGR::BB_Is_Reachable(), BB_Is_Unique_Instr_Predecessor(), BB_LOOP::BB_LOOP(), BB_MAP_create_kind(), BB_MAP_grow(), BB_Move_Delay_Slot_Op(), FAVOR_DELAY_HEUR::BB_Need_Adjusting_Delay(), REGIONAL_CFG_NODE::BB_Node(), BB_not_processed(), REGIONAL_CFG::BB_Not_Suit_Duplicate(), BB_OP_MAP_Create_Kind(), BB_REGION_Calculate_Dominators(), BB_REGION_Recompute_Global_Live_Info(), BB_Retarget_Branch(), BB_SET_Calculate_Dominators(), BB_Unique_Successor_Not_In_Set(), BB_Verify_Chk_Split(), BB_Verify_Flags(), BB_Verify_Recovery(), BB_Verify_Reg_Alloc(), BB_Verify_Sched(), SRC_BB_MGR::BBs_Between_Cutting_Set_and_Src(), BE_Symtab_Finalize(), BE_symtab_initialize_be_scopes(), VECTOR_SPACE< T >::Beautify(), bfd_alt_mach_code(), bfd_arm_get_bfd_for_interworking(), bfd_arm_merge_machines(), bfd_arm_update_notes(), bfd_boolean(), bfd_cache_delete(), bfd_cache_init(), bfd_check_format_matches(), bfd_close(), bfd_coff_get_auxent(), bfd_coff_get_syment(), bfd_coff_reloc16_get_value(), bfd_coff_reloc16_relax_section(), bfd_coff_set_symbol_class(), bfd_default_scan(), bfd_default_set_arch_mach(), bfd_ecoff_debug_accumulate(), bfd_ecoff_debug_accumulate_other(), bfd_ecoff_debug_externals(), bfd_ecoff_debug_one_external(), bfd_ecoff_set_gp_value(), bfd_ecoff_set_regmasks(), bfd_ecoff_write_accumulated_debug(), bfd_ecoff_write_debug(), bfd_elf64_archive_slurp_armap(), bfd_elf64_archive_write_armap(), bfd_elf_discard_info(), bfd_elf_final_link(), bfd_elf_gc_common_final_link(), bfd_elf_gc_common_finalize_got_offsets(), bfd_elf_gc_record_vtentry(), bfd_elf_gc_record_vtinherit(), bfd_elf_gc_sections(), bfd_elf_get_bfd_needed_list(), bfd_elf_link_add_symbols(), bfd_elf_link_record_dynamic_symbol(), bfd_elf_link_record_local_dynamic_symbol(), bfd_elf_match_symbols_in_sections(), bfd_elf_mkobject(), bfd_elf_record_link_assignment(), bfd_elf_reloc_symbol_deleted_p(), bfd_elf_set_group_contents(), bfd_elf_size_dynamic_sections(), bfd_false(), bfd_fill_in_gnu_debuglink_section(), bfd_find_target(), bfd_generic_archive_p(), bfd_generic_is_group_section(), bfd_generic_relax_section(), bfd_get_section_by_name(), bfd_get_section_by_name_if(), bfd_get_section_contents(), bfd_get_unique_section_name(), bfd_hash_table_init_n(), bfd_i386linux_size_dynamic_sections(), bfd_is_local_label(), bfd_m68k_coff_create_embedded_relocs(), bfd_m68k_elf32_create_embedded_relocs(), bfd_m68klinux_size_dynamic_sections(), bfd_mach_o_mkobject(), bfd_mach_o_write_contents(), bfd_make_readable(), bfd_make_section(), bfd_make_section_anyway(), bfd_make_section_old_way(), bfd_make_writable(), bfd_malloc_and_get_section(), bfd_preserve_save(), bfd_record_phdr(), bfd_section_already_linked_table_lookup(), bfd_section_from_phdr(), bfd_section_from_shdr(), bfd_set_default_target(), bfd_set_file_flags(), bfd_set_format(), bfd_set_section_contents(), bfd_set_section_size(), bfd_set_symtab(), bfd_slurp_armap(), bfd_slurp_bsd_armap_f2(), bfd_sparclinux_size_dynamic_sections(), bfd_sunos_record_link_assignment(), bfd_sunos_size_dynamic_sections(), bfd_sym_read_header(), bfd_wrapped_link_hash_lookup(), bfd_xcoff_ar_archive_set_magic(), bfd_xcoff_export_symbol(), bfd_xcoff_import_symbol(), bfd_xcoff_link_count_reloc(), bfd_xcoff_link_generate_rtinit(), bfd_xcoff_link_record_set(), bfd_xcoff_record_link_assignment(), bfd_xcoff_size_dynamic_sections(), bfin_expand_prologue(), bin_array_syntax_check(), binary_get_section_contents(), binary_set_section_contents(), bitmap_release_memory(), bits_and_bytes_to_words(), bitset_operand(), blk_match_err(), Block_Has_Prompf_Construct(), Block_Is_Empty(), block_jumps_and_fallthru_p(), Block_Loop_Depth(), block_move_sequence(), BND_Verify_Expression(), BND_Verify_Nest_Bounds(), Bool_Group_Value(), boolean_operator(), Both_Invariant(), GLOBAL_ANNOT::Bottom(), ETABLE::Bottom_up_cr(), ETABLE::Bottom_up_stmt(), Bound_Difference_To_Linex(), Bound_Is_Too_Messy(), bound_resolution(), bound_semantics(), bounds_cdir_handler(), ARA_LOOP_INFO::Bounds_Depend_On_Index(), DEPV_COMPUTE::Bounds_Set_Is_Used(), br_flag_operand(), br_flag_or_constant_operand(), Branch_In_Region_List(), branch_operator(), branch_prob(), Branch_Skips_First_Op(), branch_zero_operator(), Branches_Around(), BS_Choose(), BS_Choose_Next(), BS_ContainsP(), BS_Crosses_MP_Region(), BS_EmptyP(), BS_EqualP(), BS_Find_Region(), BS_Has_If_In_Region(), BS_Has_Use_In_Subscript(), BS_Has_Varying_Access_Array_In_Region(), BS_Intersection_Choose(), BS_Intersection_Choose_Next(), BS_Intersection_MemberP(), BS_IntersectsP(), BS_Is_Index_Variable(), BS_Is_Linearized(), BS_Loop_Within_Equivalence_Class(), BS_Matching_Load(), BS_MemberP(), BS_Range_Check(), BS_Replace_Load(), bsd_write_armap(), btest_intrinsic(), buffer_stmt_semantics(), GOTO_TABLE::Build(), FIZ_FUSE_INFO::Build(), GTABLE::Build(), Build_Array_Dependence_Graph(), Build_Blocks_In_Region_List(), Build_CFG(), AEQUIV::Build_CFG_Rec(), Build_Cyclic_Arcs(), Build_Fde_For_Proc(), build_for_clause_list(), Build_Incoming_Edges(), LOOPINFO::Build_linex(), build_link_order(), build_loop_tbl(), Build_Outgoing_Edges(), build_parallel_clause_list(), build_parallel_for_clause_list(), build_parallel_sections_clause_list(), ARRAY_REF::Build_Rec(), ARRAY_LOWER_LOOP::Build_Refs(), build_search_list(), build_sections_clause_list(), build_single_clause_list(), Build_Skiplist(), RVI::Build_up_live_range(), Bundle_Helper(), bundle_ops_fail(), bv_is_cover(), EXEC_PATH_SET::BV_WORD_Test_Bit(), bypass_jumps(), c_lex(), Cache_Access_Same_Line(), Cache_Adjust_Latency(), Cache_Analysis_End(), Cache_Has_Conflict(), Cache_Is_Normal(), Cache_L1_Analysis(), Cache_L1_Has_Data(), Cache_L2_Analysis(), Cache_L2_Has_Data(), Cache_Line_Edge_Reuse(), Cache_Location_Analysis(), Cache_Model(), CACHE_REGION::CACHE_REGION(), Calc_Actual_Area(), SRC_BB_MGR::Calc_Cutting_Set_Between_Src_And_Targ(), ARRAY_REF_LIST::Calc_Regs_And_Refs(), Calculate_BB_Cycle(), Calculate_Control_Dependences(), Calculate_Dominators(), Calculate_Interim_Split_Priority(), calculate_iteration_count(), LOCAL_CLSC::Calculate_liveness(), LRANGE::Calculate_Priority(), WN_Verifier::Call_children_are_PARM(), Call_Heuristic(), CALL_INFO::CALL_INFO(), call_insn_operand(), call_list_semantics(), call_operand(), WN_Verifier::CALL_parent_LDID(), call_stmt_semantics(), ALIAS_CLASSIFICATION::Callee_changes_no_points_to(), IP_ALIAS_CLASSIFICATION::Callee_frees_memory(), IP_ALIAS_CLASSIFICATION::Callee_returns_new_memory(), ALIAS_CLASSIFICATION::Callee_returns_new_memory(), Calls_Alloca(), Can_Append_Succ(), Can_Apply_Default_Private(), Can_BB_Potentially_Donate_P_Ready_Cands(), Can_Be_Immediate(), Can_Be_Moved(), CODEREP::Can_be_speculated(), Can_Be_Tail_Call(), SCHEDULER::Can_Cntl_Spec_If_Converted_Code(), Can_Def_Be_Moved(), Can_Do_Fast_Divide(), Can_Do_Fast_Multiply(), Can_Do_Fast_Remainder(), Can_Do_Safe_Predicate_Movement(), Can_Do_Tail_Calls_For_PU(), Can_Evaluate_Cost(), Can_fallthru(), Can_Fix_Array_Deps_On_Index_Variable(), Can_Inline_Call(), Can_Inst_Be_Moved(), Can_Map_Linex(), Can_Map_Projected_Region(), Can_Map_Term(), Can_Mem_Op_Be_Moved(), IF_CONVERTOR::Can_Merge_Into_One_BB(), GOTO_TABLE::Can_Move_Into_Else(), LFTR::Can_only_increase(), Can_OP_Move(), Can_raise_to_doloop(), EMITTER::Can_raise_to_scf(), Can_Schedule_HB(), HB_Schedule::Can_Schedule_Op(), Can_Use_Be_Moved(), cancel_in_relop(), RINIT::Cancel_internal_gotos(), STR_RED::Candidate(), STR_RED::Candidate_opc(), STR_RED::Candidate_phi_res(), CODEMAP::Canon_add_sub(), CANON_EXPR::Canon_expr(), CODEMAP::Canon_mpy(), CODEMAP::Canonicalize_compare(), carry_compare_operand(), carry_operand(), cast_to_cg_default(), cast_to_type_idx(), cast_typeless_constant(), cc_get_stmt(), cc_get_token(), cc_operand(), cc_register(), ccr_eqne_operator(), ceiling_intrinsic(), LU_MAT< T >::Cfactor_And_Insert(), CFG::CFG(), Cflow_Change_Succ(), CFLOW_Optimize(), CG_BROWSER::CG_BROWSER(), CG_Configure_Opt_Level(), CG_DEP_Add_Same_Res_Arcs(), CG_DEP_Alloca_Aliases(), CG_DEP_Call_Aliases(), CG_DEP_Can_OP_Move_Across_Call(), CG_DEP_Compute_Region_Graph(), CG_DEP_Mem_Ops_Alias(), CG_DEP_Mem_Ops_Offsets_Overlap(), CG_DEP_Prune_Dependence_Arcs(), CG_DEP_Trace_Op_Arcs(), CG_DEP_Trace_Op_SCC_Arcs(), Cg_Dwarf_Gen_Asm_File_Table(), Cg_Dwarf_Process_PU(), Cg_Dwarf_Write_Assembly_From_Elf(), Cg_Dwarf_Write_Assembly_From_Symbolic_Relocs(), CG_Edge_Profile_Annotation(), CG_End_Gcov(), CG_Gcov_Generation(), CG_Generate_Code(), CG_Init(), CG_Init_Gcov(), CG_LOOP::CG_LOOP(), CG_LOOP_Init(), CG_LOOP_Make_Strongly_Connected_Components(), CG_LOOP_Optimize(), CG_LOOP_Remove_Epilog_OPs(), CG_LOOP_Remove_Notations(), CG_LOOP_Remove_Prolog_OPs(), CG_LOOP_Skip(), CG_PU_Initialize(), CG_SCHED_EST_Create(), CG_SCHED_EST_Create_Empty(), CG_SCHED_EST_Is_Region(), CG_THR::CG_THR(), CGEMIT_Call(), CGEMIT_Print_Initialized_Variable(), CGEMIT_Print_INITV(), CGEMIT_Print_TCON(), CGEMIT_Print_Variable_Info(), CGEMIT_Prn_Scn_In_Asm(), CGEMIT_Relocs_In_Asm(), CGEMIT_Relocs_In_Object(), CGEMIT_Setup_Ctrl_Register(), CGEMIT_Use_Base_ST_For_Reloc(), CGEMIT_Write_Literal_TCON(), CGEXP_Can_Do_Fast_Multiply(), CGGRP_Begin_BB(), CGGRP_Bundle_BB(), CGGRP_Bundle_OPS(), CGGRP_Check_Split_BB(), CGGRP_Cycle_Full(), CGGRP_Init(), CGGRP_Issue_OP(), CGSPILL_Append_Ops(), CGSPILL_Insert_Ops_After(), CGTARG_Analyze_Compare(), CGTARG_Branches_On_True(), CGTARG_Bundle_Slot_Available(), CGTARG_Can_Be_Speculative(), CGTARG_Can_Change_To_Brlikely(), CGTARG_Can_daddu_Be_Folded(), CGTARG_Can_Fit_Immediate_In_Add_Instruction(), CGTARG_Can_Load_Immediate_In_Single_Instruction(), CGTARG_Can_Predicate(), CGTARG_Can_Predicate_Branches(), CGTARG_Can_Predicate_Calls(), CGTARG_Can_Predicate_Returns(), CGTARG_Check_OP_For_HB_Suitability(), CGTARG_Compute_Branch_Parameters(), CGTARG_Copy_Operand(), CGTARG_Dependence_Required(), CGTARG_Generate_Branch_Cloop(), CGTARG_Generate_Countdown_Loop(), CGTARG_Generate_Remainder_Branch(), CGTARG_Get_unc_Variant(), CGTARG_Handle_Bundle_Hazard(), CGTARG_Handle_Errata_Hazard(), CGTARG_Have_Indexed_Mem_Insts(), CGTARG_Init_Assoc_Base(), CGTARG_Init_OP_cond_def_kind(), CGTARG_Initialize(), CGTARG_Interference_Finalize(), CGTARG_Interference_Initialize(), CGTARG_Interference_Required(), CGTARG_Invert_Branch(), CGTARG_Is_Bad_Shift_Op(), CGTARG_Is_Long_Latency(), CGTARG_Is_OP_Addr_Incr(), CGTARG_Is_OP_Advanced_Load(), CGTARG_Is_OP_Barrier(), CGTARG_Is_OP_Check_Load(), CGTARG_Is_OP_daddu(), CGTARG_Is_OP_Speculative(), CGTARG_Is_OP_Speculative_Load(), CGTARG_Is_Preference_Copy(), CGTARG_Is_Right_Shift_Op(), CGTARG_Is_Thread_Local_Memory_OP(), CGTARG_Latency(), CGTARG_live_out_of(), CGTARG_Load_with_UNAT(), CGTARG_LOOP_Optimize(), CGTARG_Mem_Ref_Bytes(), CGTARG_Modified_Asm_Opnd_Name(), CGTARG_OP_Defs_TN(), CGTARG_OP_is_counted_loop(), CGTARG_OP_Refs_TN(), CGTARG_Operand_Live_Range(), CGTARG_Perform_THR_Code_Generation(), CGTARG_Predicate_OP(), CGTARG_Preg_Register_And_Class(), CGTARG_Print_PRC_INFO(), CGTARG_Result_Live_Range(), CGTARG_Simulated_Top(), CGTARG_Store_With_UNAT(), CGTARG_TN_And_Name_For_Asm_Constraint(), CGTARG_TN_For_Asm_Operand(), CGTARG_Unconditional_Compare(), CGTARG_Unconditional_Compare_Helper(), CGTARG_Use_Brlikely(), CGTARG_Which_OP_Select(), SYSTEM_OF_EQUATIONS::Change_Base(), CFG::Change_block_kind(), Change_ld_Form(), SCHED_SPEC_HANDSHAKE::Change_Load_Spec_Form(), change_subscript(), Change_Switchtable_Entries(), Change_types_to_32bit(), char_bounds_resolution(), char_intrinsic(), char_len_resolution(), character_to_character(), FIZ_FUSE_INFO::Check(), PROMPF_INFO::Check(), check_absence_pattern_sets(), check_actual_and_dummy(), Check_Actual_Stack_Size(), check_allocatable_pointer_optional(), Check_Allow_Reorder(), Check_Allow_Reschedule(), IPAA_DF_SOLVER::Check_and_accumulate_ref_info(), check_and_allocate_common_storage(), check_arg_for_co_array(), check_array_bounds(), Check_Arrays(), check_asg_semantics(), Check_BB_Consistency(), Check_BB_For_HB_Suitability(), check_branch_target_aligned(), Check_CFG_Consistency(), check_cond_move_block(), DCE::Check_conditional_branches_dom(), DCE::Check_conditional_branches_pred(), DCE::Check_constant_cond_br(), FOLD::check_convert(), Check_Cross_Boundary(), check_dependence(), Check_Divide(), Check_Doacross_Sync_Coverage(), Check_Dwarf_Rela(), check_elemental_conformance(), check_existence_of_phases(), Check_Expr(), Check_FF2C_Script(), Check_For_Bundle_Hazards(), Check_for_Cycles(), Check_For_Delay_Slot_Hazards(), check_for_driver_controls(), check_for_legal_define(), LFTR::Check_for_obsolete_comparison(), check_for_scripts_dir(), check_for_unqueriable(), check_for_whirl(), check_forall_triplet_for_index(), check_format_info_main(), Check_Global_Preference(), check_gsymbol_for_invalid_type(), Check_HB_For_PQS_Suitability(), Check_If_Dedicated_TN_Is_Global(), Check_If_Ignore_BB(), NORMALIZE_LOOP::Check_if_index_is_passed(), CFG::Check_if_it_can_reach_body_first_bb(), Check_Inline_Script(), check_interoperable_constraints(), check_interoperable_data(), check_interoperable_type(), check_ir_for_attrs(), Check_loadbw_execute(), Check_Local_Pool_Initialized(), check_loop_aligned(), PROMPF_INFO::Check_New_Ids(), Check_No_Use_Between(), check_nocrossref(), PROMPF_INFO::Check_Old_Ids(), check_presence_pattern_sets(), DCE::Check_redundant_cond_br_new(), Check_Region(), Check_Region_Recur(), check_reorder_legality_of_type(), DCE::Check_required_doend(), DSE::Check_Required_Expr(), DATA_SPEC_RES_CONSTRAIT_MGR::Check_Res_Constraint(), DATA_SPEC_RES_CONSTRAIT_MGR::Check_Res_Constraint_Helper(), check_section_callback(), check_section_ebb_pcrels_fit(), check_section_ebb_reduces(), check_section_open_mp_context(), Check_Select_Expansion(), check_size(), check_size_and_freq(), check_stat_variable(), check_substring_bounds(), check_target_and_value(), CG_THR::Check_THR_Profitability(), PROMPF_INFO::Check_Traverse(), Check_Trip_Counts(), Check_Undefined_Results(), check_unit_distributions_to_automata(), Check_Vertices_Traverse(), Check_volatility(), W2FC_FLAG_ARRAY::Check_w2fc_flag(), check_where_conformance(), Choose_Avoiding_Neighbor_Preferences(), Choose_Best_Register(), Choose_Noones_Preference(), Choose_Preference(), IVR::Choose_primary_IV(), Choose_Stack_Model(), DISTR_DIM::Chunksize(), CIO_RWTRAN::CICSE_Transform(), cif_call_site_rec(), cif_flush_include_recs(), cif_object_rec_for_func_result(), cif_prog_unit_init(), cif_send_attr(), cif_send_sytb(), cif_stmt_type_rec(), cif_unit_rec(), CIO_RWTRAN::CIO_Copy_Remove(), ck_lbl_construct_name(), Classes_Match(), Classify_Aggregate(), Classify_BB(), SUMMARIZE< program >::Classify_const_value(), IP_ALIAS_CLASSIFICATION::Classify_deref_of_expr(), ALIAS_CLASSIFICATION::Classify_deref_of_expr(), SUMMARIZE< program >::Classify_indirect(), IP_ALIAS_CLASSIFICATION::Classify_lhs_of_store(), ALIAS_CLASSIFICATION::Classify_lhs_of_store(), classify_line(), ALIAS_CLASSIFICATION::Classify_memops(), IP_ALIAS_CLASSIFICATION::Classify_wn_and_kids(), ALIAS_CLASSIFICATION::Classify_wn_and_kids(), W2CF_TRANSLATOR::ClauseList_To_String(), daVinci::cleanup(), DAVINCI::cleanup(), cleanup_matches(), CYCLE_STATE::Clear(), _tagRGN_CFG_PATH_INFO::Clear(), clear_cdir_switches(), SUMMARY_VALUE::Clear_convertible_to_global(), Clear_Fat_Point_Calculation(), RGN_SUMMARY::Clear_Has_Call(), RGN_SUMMARY::Clear_Has_Cannot_Move_Across_Rgn(), SUMMARY_EXPR::Clear_has_const_operand(), RGN_SUMMARY::Clear_Has_Load(), RGN_SUMMARY::Clear_Has_Nested_Rgn(), RGN_SUMMARY::Clear_Has_Rotating_Kernel(), RGN_SUMMARY::Clear_Has_Store(), SUMMARY_VALUE::Clear_is_addr_of(), SUMMARY_VALUE::Clear_is_global_st_idx(), SUMMARY_EXPR::Clear_is_trip_count(), SUMMARY_VALUE::Clear_is_trip_count(), CLIST_ITER::CLIST_ITER(), clock_intrinsic(), BB_NODE::Clonable(), CHI_NODE::Clone(), STMTREP::Clone(), Clone_Blocks(), IPO_INLINE::Clone_Callee(), clone_section(), close_stmt_semantics(), SD_INFO::Closure_ILoad(), SD_INFO::Closure_IStore(), SD_INFO::Closure_Ldid(), SD_INFO::Closure_Stid(), cmp_ref_trees(), cmplx_intrinsic(), CNTL_DEP::CNTL_DEP(), coalesce_shared_literal(), LOOP_INVAR_CODE_MOTION::Code_Motion_Is_Profitable(), CODEMAP::CODEMAP(), coff_a29k_adjust_symndx(), coff_a29k_relocate_section(), coff_arm_adjust_symndx(), coff_arm_copy_private_bfd_data(), coff_arm_final_link_postscript(), coff_arm_is_local_label_name(), coff_arm_merge_private_bfd_data(), coff_arm_relocate_section(), coff_bfd_make_debug_symbol(), coff_find_nearest_line(), coff_i960_adjust_symndx(), coff_i960_relocate_section(), coff_i960_start_final_link(), coff_link_add_object_symbols(), coff_link_add_symbols(), coff_link_check_ar_symbols(), coff_link_check_archive_element(), coff_m68k_aux_link_add_one_symbol(), coff_make_empty_symbol(), coff_mcore_relocate_section(), coff_or32_adjust_symndx(), coff_or32_relocate_section(), coff_pe_mips_relocate_section(), coff_ppc_relocate_section(), coff_renumber_symbols(), coff_small_new_section_hook(), coff_tic80_relocate_section(), coff_write_armap(), coff_write_linenumbers(), coff_write_symbol(), coff_write_symbols(), collapse_interface_blk(), Collect_addr_passed_for_io(), SCHEDULER::Collect_And_Analyse_Other_Than_Dep_Constraints(), SCHEDULER::Collect_And_Analyse_Unresolved_Dep(), VALNUM_FRE::collect_cr_occurrences(), SNL_BOUNDS_INFO::Collect_Do_Info(), SNL_BOUNDS_INFO::Collect_If_Info(), PARTITION_GRAPH::Collect_Info(), COND_BOUNDS_INFO::Collect_Outer_Info(), SNL_BOUNDS_INFO::Collect_Outer_Info(), SINGLE_LOOP::Collect_Refs_Prefs(), collect_source_relocs(), OPT_STAB::Collect_ST_attr(), combine_adjacent_loads(), Combine_div_operator(), Combine_intrinsic_operator(), Combine_L1_L2_Prefetches(), Combine_minmax_operator(), Combine_Operations(), Combine_rem_operator(), SCHEDULER::Commit_Schedule(), Common_Variable(), comp_unit_contains_address(), comp_unit_find_nearest_line(), PROJECTED_REGION::Compare(), compare_and_swap_intrinsic(), compare_array_entries(), compare_bit(), CODEREP::Compare_bitpos(), compare_cn_and_value(), Compare_Cost(), compare_darg_or_rslt_types(), compare_darg_to_actual_arg(), compare_derived_types(), compare_dummy_arguments(), compare_duplicate_interface_bodies(), compare_entry_to_func_rslt(), compare_func_result(), compare_global_args(), compare_global_array(), compare_global_derived_type(), compare_global_type_rank(), compare_il(), compare_ir(), compare_opnds(), Compare_Self_Recursive_Cost(), compare_target_consts(), compare_value_to_cn(), compared_operand_has_index(), Compatible_Expressions(), Compatible_Type(), Complement_TN_Reference(), complete_intrinsic_definition(), Completely_replaced(), Compose_Addr(), compress_type_tbl(), DEPV_COMPUTE::Compute(), Compute_BR_Prob_From_Hint(), REGIONAL_CFG::Compute_Completion_Prob(), FAVOR_DELAY_HEUR::Compute_Delay(), Compute_Doacross_Delay_Cycle(), INTERVAL_PROCESSOR::Compute_Dominators(), compute_ebb_actions(), compute_ebb_proposed_actions(), OPT_STAB::Compute_FFA(), Compute_Footprint(), OPT_STAB::Compute_FSA_stmt_or_expr(), EXP_WORKLST::Compute_fully_avail_stops(), REGIONAL_CFG::Compute_Nodes_To_Be_Duplicated(), REGIONAL_CFG::Compute_Num_Of_Ops(), Compute_Reg_State(), REGION_STRIDE_PREFETCH::Compute_Region_Cycles(), OPT_STAB::Compute_region_mu_chi(), compute_removed_literals(), Compute_Return_Pregs(), REGIONAL_CFG::Compute_Scope_Based_On_Main_Exit(), Compute_Split_Regions(), compute_text_actions(), IVR::Compute_trip_count(), EMITTER::Compute_use_def(), EMITTER::Compute_use_def_var(), PF_UGS::ComputePFVec(), concat_opr_handler(), COND_Do_Info(), cond_exec_operand(), cond_exec_process_if_block(), cond_exec_process_insns(), COND_If_Info(), Cond_Is_64Bit(), Cond_Is_Unsigned(), cond_move_dest_operand(), cond_move_operand(), cond_move_process_if_block(), condexec_addsub_operator(), condexec_binary_operator(), condexec_branch_operator(), condexec_dest_operand(), condexec_extend_operator(), condexec_memory_operand(), condexec_sf_add_operator(), condexec_sf_conv_operator(), condexec_shiftl_operator(), condexec_si_binary_operator(), condexec_si_divide_operator(), condexec_si_media_operator(), condexec_si_unary_operator(), condexec_source_operand(), condexec_test_operator(), condexec_unary_operator(), condition_optimization(), condition_redundant(), conditional_move_operand(), Conditionally_Assigned(), Configure(), Configure_Alias_Options(), Configure_CG_Options(), Configure_Ofast(), Configure_Prefetch(), Configure_Source(), Configure_Source_Target(), Configure_Target(), ARRAY_REF_LIST::Conflict_Refs(), conform_check(), conjg_intrinsic(), Connect_Clones_with_CHK(), Consistency_Check(), Consistent_Layout(), const_addr_memory_operand(), const_float_1_operand(), const_init_semantics(), const_ok_for_arm(), ARA_LOOP_INFO::Const_Work_Estimate(), constant_array_base(), PROJECTED_REGION::Constant_bounds(), Constant_Dimension(), Constant_Linex_Value(), Constant_Operand0(), Constant_Operand1(), Constant_Propogate(), constant_value_semantics(), constantpool_address_p(), constantpool_mem_p(), constraint_by_address(), constraint_supported(), SSA::Construct(), Construct_Fld_Path(), INTERVAL_PROCESSOR::Construct_Loops(), Contain_Vectorizable_Intrinsic(), Contained_In_Loop(), SYMBOL_LIST::Contains(), REGION_UN::Contains(), CODEREP_CONTAINER::Contains(), CODEREP_LIST_CONTAINER::Contains(), CODEREP::Contains(), BB_LIST_CONTAINER::Contains(), CR_PAIR_LIST::Contains(), MU_LIST::Contains(), USE_LIST::Contains(), BB_LOOP::Contains(), BB_LIST::Contains(), DEF_LIST::Contains(), CR_PAIR_LIST_CONTAINER::Contains(), CODEREP_LIST::Contains(), REGION::Contains(), DEPV_LIST::Contains_All_Equals(), Contains_Array(), Contains_Calls(), Contains_Dedicated_Preg(), Contains_FP_Non_Load(), Contains_ILoad_Without_Vertex(), CODEREP::Contains_image(), Contains_Index_Variable(), Contains_Indirect_Load(), Contains_Intrinsic_Op(), Contains_Load(), CODEREP::Contains_only_constants(), Contains_only_the_var(), TRANSPOSE_DIRECTED_GRAPH16::Contains_Parallelizable(), Contains_Reshaped_Array(), AEQUIV::Contains_Unread_Array(), Contains_Varying_Indirect_Load(), Contains_Vertex(), STMTREP::Contains_volatile_ref(), Contains_Work(), CANT_BE_AVAIL_SEARCH< PRE_DIRECTION >::Continue_from_to(), CFG::Conv_to_select(), Convert_Alloca_To_Intrinsic(), OPT_STAB::Convert_black_box(), Convert_Branch(), IF_CONVERTOR::Convert_Candidates(), convert_const(), Convert_Goto_To_If(), Convert_Goto_To_Return(), convert_hex_literal(), Convert_If_To_Goto(), Convert_Imm_Add(), Convert_Imm_And(), Convert_Imm_Cmp(), Convert_Imm_Mul(), Convert_Imm_Or(), Convert_Imm_Xor(), Convert_Indirect_Goto_To_Direct(), Convert_OP_to_base_update_form(), convert_precise(), Convert_Regs(), OPT_STAB::Convert_ST_to_AUX(), convert_stmt_list_to_OPs(), convert_to_do_var_type(), convert_to_reference(), Convert_Tree_Leaves(), CODEREP::Convert_type(), Convert_WHIRL_To_OPs(), Convex_Peeling_Depth(), copy_and_replace_tmps(), DEPV_COMPUTE::Copy_Bound_To_Work(), DEPV_COMPUTE::Copy_Bounds_To_Work(), DEPV_COMPUTE::Copy_Call_Ref_To_Work(), DEPV_COMPUTE::Copy_Call_To_Work(), Copy_Entry_BB_Annotation(), copy_entry_exit_sh_list(), DEPV_COMPUTE::Copy_Equal_To_Work(), DEPV_COMPUTE::Copy_Equals_To_Work(), Copy_Exit_BB_Annot(), copy_from_gl_subtree(), IPO_SYMTAB::Copy_INITO(), SYSTEM_OF_EQUATIONS::Copy_Inverse_To_Work(), DEPV_COMPUTE::Copy_Le_To_Work(), IPO_SYMTAB::Copy_Local_Tables(), Copy_Non_MP_Tree(), Copy_Non_MP_Tree_Rec(), CIO_RWTRAN::Copy_Ops_To_Prolog(), copy_phase_options(), copy_private_bfd_data(), COPYPROP::Copy_propagate_cr(), COPYPROP::Copy_propagate_stmt(), copy_rf_sequence(), copy_sbtree(), Copy_Shackle_Prompf_Info(), copy_simplification(), DEPV_COMPUTE::Copy_Stride_To_Work(), SUMMARIZE< program >::Copy_summary_ctrl_dep(), SYSTEM_OF_EQUATIONS::Copy_To_Work(), SYSTEM_OF_EQUATIONS::Copy_To_Work_Eq(), copyout_temp_to_var(), COPYPROP::COPYPROP(), core_file_matches_executable_p(), count_dyn_reloc(), Count_occurs(), CODEREP::Count_parents(), PATTERN_TYPE::Count_Slot(), OPT_STAB::Count_syms(), Count_tree_size(), Count_tree_size_tuning(), CR_Create(), CR_is_equivalent(), CR_match_kids(), CR_opcode(), cr_operand(), CR_operator(), FOLD::CR_Simplify_Expr(), FOLD::CR_Simplify_Tree(), CR_st(), CR_To_PR(), OPT_STAB::Create(), create_ainsns(), create_alloc_descriptor(), create_argchck_descriptor(), create_array_constructor_asg(), create_bd_ntry_for_const(), Create_Chance_For_MLBR(), Create_Cold_Region(), Create_Common_Block(), CFG::Create_conditional(), create_constructor_constant(), Create_Dedicated_TN(), Create_Dope_From_IoItem(), Create_DopeVector_WN(), Create_DST_type_For_Tree(), Create_Dummy_Access_Array(), create_dv_type_code(), CODEREP::Create_exp_in_bb(), Create_fcd(), Create_Field_Entry(), Create_Folded_Literal(), create_format_tmp(), Create_Func_DST(), create_got_section(), Create_Initialize_Loop(), create_interp_stmts(), create_io_call_descriptor(), Create_Io_Entry(), create_kwd_text(), create_lda_of_temp(), create_linkage_sections(), Create_Local_Array_ST(), Create_Local_Block(), LEGO_INFO::Create_Local_Index(), Create_Local_Symbol(), Create_Local_Variables(), create_loop_stmts(), Create_Maligned_TY(), Create_MicroTask(), create_mod_info_file(), create_mod_info_tbl(), create_namelist_descriptor(), Create_New_Array_Type(), Create_New_DST(), ARA_LOOP_INFO::Create_New_IF_Clause(), Create_New_Section(), OPT_STAB::Create_preg(), Create_Region(), create_runtime_array_constructor(), create_runtime_struct_constructor(), Create_Scalar_Literal_From_Int(), create_scalar_type_tbl(), Create_Shackle_If_Per_Stmt(), Create_Simd_Prog_Const(), Create_Simple_Shackle_Loops(), Create_Single_Region(), Create_ST_For_Tree(), Create_ST_TO_FLD_MAP(), create_strct_tbl(), create_struct_argchck_tbl(), create_struct_constructor_asg(), Create_Stub_BB(), Create_Sync_Structure(), create_tmp_asg(), create_tmp_DV_asg(), create_tmp_from_stmt_func(), Create_TN_Pair(), Create_TY_For_Tree(), Create_Unique_Defs_For_TNs(), Create_Unnamed_Critical_Lock(), Create_Unroll_Copy(), Create_Vector_Load_Stores(), cris_elf_check_relocs(), cris_elf_copy_private_bfd_data(), cris_elf_grok_prstatus(), cris_elf_grok_psinfo(), cris_elf_merge_private_bfd_data(), cris_elf_object_p(), cris_elf_relocate_section(), cris_elf_set_mach_from_flags(), cris_parse_disassembler_options(), RGN_CFLOW_MGR::Critical_Edge_Present(), Critical_Path_Len(), crx_addr_reg_p(), crx_legitimate_address_p(), CSE::CSE(), Cse_Or_Dup(), cshift_intrinsic(), csmg_intrinsic(), CODEMAP::Cur_def(), SRC_BB_MGR::Cutting_Set(), cvmgp_intrinsic(), cvrt_exp_to_pdg(), cvrt_opr_handler(), cvrt_proc_to_pdg(), cwh_addr_address_ST(), cwh_addr_f90_pointer_reference(), cwh_addr_f90_pointer_reference_ls(), cwh_addr_iload(), cwh_addr_istore(), cwh_addr_lda(), cwh_addr_load_WN(), cwh_addr_mload(), cwh_addr_mstore(), cwh_addr_store_WN(), cwh_addr_temp_section(), cwh_auxst_add_item(), cwh_auxst_dump(), cwh_auxst_find_dummy(), cwh_auxst_find_entry(), cwh_auxst_get_list(), cwh_auxst_read_flag(), cwh_auxst_set_tylist(), cwh_block_add_to_enclosing_regions(), cwh_block_init_pu(), cwh_block_push_block(), cwh_create_str_st(), cwh_directive_add_pragma_to_loop(), cwh_directive_barrier_insert(), cwh_directive_fill_align(), cwh_directive_work_dist(), cwh_do_tranformational(), cwh_doacross(), cwh_dope_from_expression(), cwh_dope_initialize(), cwh_dst_dope_bounds(), cwh_dst_has_dope(), cwh_dst_is_character_TY(), cwh_dst_member(), cwh_dst_mk_common(), cwh_dst_mk_const(), cwh_dst_mk_dope_bound(), cwh_dst_mk_formal(), cwh_dst_mk_func(), cwh_dst_mk_MAIN(), cwh_dst_mk_subroutine_type(), cwh_dst_mk_var(), cwh_dst_mk_variable(), cwh_dst_struct_has_DST(), cwh_dst_struct_type(), cwh_dst_subrange(), cwh_expr_compare_bitwise(), cwh_expr_compare_char(), cwh_expr_str_operand(), cwh_expr_temp(), cwh_inline_allocate(), cwh_intrin_ieee_intrin_call_helper(), cwh_intrin_ieee_intrin_helper(), cwh_intrin_sync_intrin(), cwh_intrin_wrap_value_parm(), cwh_io_analyse_arr(), cwh_io_analyse_expr(), cwh_io_analyse_io_item(), cwh_io_analyse_io_statement(), cwh_io_ioitem(), cwh_io_no_desc(), cwh_io_null_address(), cwh_io_scalar_type(), cwh_io_unmark(), cwh_parallel(), cwh_reorder(), cwh_stab_altentry_temp(), cwh_stab_altres_offset(), cwh_stab_distrib_pragmas(), cwh_stab_end_procs(), cwh_stab_find_auxst(), cwh_stab_mk_fn_0args(), cwh_stab_split_common(), cwh_stab_split_ST(), cwh_stab_to_list_of_equivs(), cwh_stk_is_byte_STR(), cwh_stmt_add_to_preamble(), cwh_stmt_call_helper(), cwh_stmt_character_icall(), cwh_stmt_init_pu(), cwh_stmt_insert_conformance_check(), cwh_types_copyin_pragma(), cwh_types_dope_TY(), cwh_types_fld_dummy(), cwh_types_in_dtype(), cwh_types_is_character_function(), cwh_types_is_dope(), cwh_types_mk_array_TY(), cwh_types_mk_basic_TY(), cwh_types_mk_f90_pointer_ty(), PARTITION_GRAPH::Cycle_Detector(), DISTR_DIM::CyclicOne(), CYG_Instrument_Block(), d30v_emit_cond_move(), d30v_memory_operand(), d30v_mode_dependent_address_p(), MAT< T >::D_Add_Col(), MAT< T >::D_Add_Row(), DISTR_ARRAY::DACT_Equiv(), darg_in_entry_list(), data_imp_do_semantics(), data_repeat_semantics(), data_stmt_semantics(), IPA_DATA_FLOW::dataflow(), daVinci::daVinci(), CG_BROWSER::DaVinci_Toggle(), WB_BROWSER::DaVinci_Toggle(), DB_Rename_Cond_TN(), DB_Rename_Cond_TN_Finish(), DB_Rename_Cond_TN_Init(), DB_Trace_BB(), dbg_tokens(), dbl_memory_one_insn_operand(), dbl_memory_two_insn_operand(), LOOP_DCE::Dead_Code_Elimination(), dead_or_predicable(), Dead_Stid(), DCE::Dead_store_elim(), DSE::Dead_store_elim(), Dealloc_HashTable_Entries(), dealloc_obj_opr_handler(), deallocate_local_allocatables(), deallocate_stmt_semantics(), Deallocate_TN_BB_LIST_MAPs(), DEBUG_Pop_Config(), dec_dynrel_count(), decl_semantics(), decl_semantics_driver(), decompose_address(), CODEREP::Def_at_entry(), Def_Before_Use(), LOOP_INVAR_CODE_MOTION::Def_Dominate_All_Use(), ARA_LOOP_INFO::Def_Is_Whole_Array(), HOIST_SUMMARY::Def_occur_allows_hoisting(), default_data_link_order(), default_indirect_link_order(), default_init_semantics(), defined_bin_opr_handler(), STR_RED::Defined_by_iv_update(), STR_RED::Defined_by_iv_update_no_def(), defined_un_opr_handler(), Defines_Mapped_TN(), Defs_Can_Be_Merged(), Del_Cur_Item(), REGIONAL_CFG::Del_Edge(), Del_Item(), REGIONAL_CFG::Del_Node(), PARTITION_GRAPH_NODE::Del_Related_TN(), PARTITION_GRAPH::Del_Relation(), Delay_Scheduling_OP(), VALNUM_FRE::delete_all_occurs(), Delete_Avail_Reg(), CFG::Delete_bb(), Delete_Call(), BITWISE_DCE::Delete_cvtls(), delete_duplicate_op(), delete_gtn_use_arc(), delete_memory_op(), delete_reload_across_dependency(), delete_subset_mem_op(), Delete_Unreachable_Blocks(), Delete_Unwanted_Prefetches(), Delinearize_Shape(), Dep_Carried_By_Outer_Loop(), Dep_Carried_Outside_Or_Zero(), DEP_Lex_Pos_Compose(), Dep_Preserved(), Dependence_Walk(), Dependent_Between_OPs(), Depv_Already_On_List(), Depv_Carried_By_Outer_Loop(), Depv_Collapse(), _tagRGN_CFG_PATH_INFO::Derive_RGN_CFG_PATH_INFO_from_BB_Node(), _tagRGN_CFG_PATH_INFO::Derive_RGN_CFG_PATH_INFO_from_REGION_Node(), IF_CONVERTOR::Detect_Para_Comp(), Detect_Post_Hazard(), Determine_Candidate_Blocks(), EXP_WORKLST::Determine_inserts_saves_deletions(), STR_RED::Determine_iv_update(), STR_RED::Determine_iv_update_phi(), ARA_LOOP_INFO::Determine_Last_Value(), determine_lb_ub(), determine_stmt_type(), CG_LOOP::Determine_SWP_Unroll_Factor(), determine_tmp_size(), IVR::Determine_trip_IV_and_exit_count(), CG_LOOP::Determine_Unroll_Factor(), df_ri_alloc(), DFBASE::DFBASE(), DFS_Search(), di_operand(), POINTS_TO::Different_base(), Digest_Archive(), digit_is_format_label(), dim_intrinsic(), direct_return(), direct_return_p(), DIRECTED_GRAPH16< EDGE_TYPE, VERTEX_TYPE >::DIRECTED_GRAPH16(), directive_region_error(), directive_stmt_semantics(), directory_is_writable(), VHO_Switches_Mgr::Disable(), PROMPF_INFO::Disable(), Disable_opt(), FAVOR_DELAY_HEUR::Disable_Trace_Cand_Sel_Process(), Disallowed_Homeable(), Disambiguate_Aliased_Actuals(), discombobulate_structure_ref(), GTABLE::Dismantle(), DISTR_INFO::DISTR_INFO(), PAR_STAT::Distribute(), PAR_STAT::Distribute_By_Splitting(), PAR_STAT::Distribute_For_Permutation(), DISTRIBUTION::DISTRIBUTION(), Divide_Exp_By_Const(), CODEREP::Divisable(), RVI_LR::Do_anything(), do_as_repeat(), Do_Automatic_Transformation(), COMP_UNIT::Do_bitwise_dce(), Do_Build_Recovery_Block(), CYCLE_STATE::Do_Bundling(), do_cmic_blk_checks(), AEQUIV::Do_Color(), Do_Control_Flow_Analysis_Of_Unwind_Info(), do_copy(), COMP_UNIT::Do_copy_propagate(), Do_Copying(), CSE::Do_cse_pass_1(), CSE::Do_cse_pass_2(), Do_cyg_instrument_p(), COMP_UNIT::Do_dead_code_elim(), do_f90_common_args(), do_fix_for_relocatable_link(), do_inline(), COMP_UNIT::Do_load_pre(), LOCAL_CLSC::Do_local_clsc(), Do_Loop_Explicit_Affinity(), do_loop_expr_semantics(), Do_Loop_Implicit_Affinity(), DO_LOOP_INFO::DO_LOOP_INFO(), Do_Loop_Is_Backward(), Do_Loop_Is_Mp(), OPT_MTYPE_B::Do_mtype_b_cr(), COMP_UNIT::Do_new_pre(), Do_Non_Copy(), do_one(), do_pad(), Do_Pre_Before_Ivr(), do_read_namelist_semantics(), EMITTER::Do_rvi(), REGIONAL_CFG::Do_Selective_Add(), REGIONAL_CFG::Do_Selective_Cut(), do_shared_object_padding(), do_single_asg(), do_slurp_bsd_armap(), do_slurp_coff_armap(), do_stmt_semantics(), COMP_UNIT::Do_store_pre(), COMP_UNIT::Do_vnfre(), do_with_relocs(), do_without_relocs(), Do_WOPT_and_CG_with_Regions(), Doacross_Cost(), Doacross_Finish(), Doacross_Init(), doall_cmic_semantics(), doall_end_semantics(), LOOP_INVAR_CODE_MOTION::Dom_All_Loop_Exits(), Dom_print_dom(), dominant_cc_register(), Dominates(), dominates_all_but_one_preds(), Dominates_and_Reverse_Postdominates(), Dont_Use_WN_Free_List(), doparallel_cmic_semantics(), dope_vector_setup(), dot_product_intrinsic(), SCHED_DFLOW_MGR::Downard_Sched_Kill_LiveIn_Defs(), SCHED_DFLOW_MGR::Downward_Sched_Interfere_Nested_Rgns_LiveRanges(), SCHED_DFLOW_MGR::Downward_Sched_Violate_Dflow_Constrait(), dprod_intrinsic(), DRA_Add_Clone(), DRA_EC_Array_Portion_Parms(), DRA_Info_Matches_Encoding(), DRA_Insert_Pragmas(), DRA_Mangle_Call_Site(), DRA_Mangle_Entry(), DRA_Parse_Clone_Name(), DRA_Process_Commons(), DRA_Process_Globals(), DRA_Process_Requests(), DRA_Processing(), draw_bb_dependence_graph(), draw_bb_op(), draw_flow_graph(), draw_global_cfg(), draw_partition_graph(), draw_region_tree(), draw_regional_cfg(), draw_regional_dependence_graph(), draw_whirl_tree(), dshiftl_intrinsic(), dsm_numthreads_intrinsic(), DST_construct_pointer_to_member(), DST_Create_Subprogram(), DST_Create_var(), DST_end_PU(), DST_enter_cloned_childs(), DST_enter_cloned_subroutine(), DST_enter_mk(), DST_enter_normal_field(), DST_enter_param_vars(), DST_enter_static_data_mem(), DST_enter_struct_union_members(), DST_put_array_type(), DST_put_class_type(), DST_put_const_attribute(), DST_put_enumeration_type(), DST_put_formal_parameter(), DST_put_inlined_subroutine(), DST_put_string_type(), DST_put_structure_type(), DST_put_subprogram(), DST_put_subrange_type(), DST_put_subroutine_type(), DST_put_typedef(), DST_put_union_type(), DST_put_variable(), DST_set_assoc_idx(), DST_write_line(), DU_Closure_Collect_Defs(), DU_MANAGER::DU_MANAGER(), Du_Sanity_Check_Matching_Du(), Du_Sanity_Check_r(), tagRGN_INFO::Dump(), CFG_NODE_MAP::Dump(), SCHEDULER::Dump(), EXEC_PATH::Dump(), CANDIDATE::Dump(), dump_generic_node(), SCHEDULER::Dump_IR(), SCHEDULER::Dump_OP_Verbose_Info(), dump_path_id_range(), dump_tree_no_st(), dump_whirl_node(), Dump_Whirl_Node(), dump_wn_no_st(), dV_close_WN(), dV_show_whirl(), dV_tree_stmt(), dV_view_fb_cfg(), dV_view_fb_opt_cfg(), dV_view_whirl(), dw2_asm_output_data(), dw2_assemble_integer(), dwarf1_unit_find_nearest_line(), dwarf_need_debug_line_section(), dwarf_transform_to_disk_form(), Dynamic_Branch_Cost(), E_VER_INFO::E_VER_INFO(), Each_Use_Has_Single_Def(), Eager_Ptr_Deref_Spec(), SUMMARIZE< program >::Easy_Trip_Count(), EBO_after_unrolling(), EBO_before_unrolling(), EBO_Can_Eliminate_Zero_Opnd_OP(), EBO_Can_Merge_Into_Offset(), EBO_Fix_Same_Res_Op(), EBO_Fold_Load_Duplicate(), EBO_Identify_Base_and_Offset(), EBO_Init(), EBO_Lea_Insertion(), EBO_Load_Execution(), EBO_Merge_Memory_Addr(), EBO_Post_Process_Region(), EBO_Pre_Process_Region(), EBO_predicate_complements(), EBO_predicate_dominates(), EBO_Process(), EBO_Process_Region(), EBO_Remove_Unused_Ops(), EBO_Special_Finish(), EBO_Special_Start(), EBO_tn_available(), EC_Array_Portion_Calls(), ecoff_add_bytes(), ecoff_collect_shuffle(), ecoff_compute_section_file_positions(), ecoff_get_extr(), ecoff_indirect_link_order(), ecoff_link_add_archive_symbols(), ecoff_link_add_externals(), ecoff_link_add_object_symbols(), ecoff_link_check_archive_element(), ecoff_link_write_external(), ecoff_reloc_link_order(), ecoff_slurp_reloc_table(), ecoff_slurp_symbolic_header(), ecoff_write_shuffle(), ecoff_write_symhdr(), Edge_has_new_cprop_annot(), Edge_Is_Reduction_Dependence(), Edges_Have_Equiv_Cprop_Annots(), EETARG_Adjust_SP_For_Entry(), EETARG_Adjust_SP_For_Exit(), EETARG_Build_Jump_Instead_Of_Call(), EETARG_Generate_PIC_Entry_Code(), EETARG_Generate_PIC_Exit_Code(), EETARG_High_Level_Procedure_Exit(), EH_Set_End_Label(), EH_Set_Has_Call(), EH_Set_Start_Label(), elf32_arm_nabi_grok_prstatus(), elf32_arm_nabi_grok_psinfo(), elf32_avr_relocate_section(), elf32_d10v_check_relocs(), elf32_d10v_relocate_section(), elf32_dlx_check_relocs(), elf32_frv_add_symbol_hook(), elf32_frv_check_relocs(), elf32_frv_relocate_gprel12(), elf32_frv_relocate_gprelhi(), elf32_frv_relocate_gprello(), elf32_frv_relocate_gprelu12(), elf32_frv_relocate_section(), elf32_frvfdpic_always_size_sections(), elf32_frvfdpic_copy_private_bfd_data(), elf32_frvfdpic_create_dynamic_sections(), elf32_frvfdpic_finish_dynamic_sections(), elf32_frvfdpic_modify_segment_map(), elf32_frvfdpic_relax_section(), elf32_frvfdpic_size_dynamic_sections(), elf32_generic_link_add_symbols(), elf32_h8_get_relocated_section_contents(), elf32_h8_merge_private_bfd_data(), elf32_h8_relax_section(), elf32_h8_relocate_section(), elf32_h8_symbol_address_p(), elf32_hppa_adjust_dynamic_symbol(), elf32_hppa_build_stubs(), elf32_hppa_check_relocs(), elf32_hppa_create_dynamic_sections(), elf32_hppa_final_link(), elf32_hppa_finish_dynamic_sections(), elf32_hppa_grok_prstatus(), elf32_hppa_grok_psinfo(), elf32_hppa_object_p(), elf32_hppa_relocate_section(), elf32_hppa_set_gp(), elf32_hppa_size_dynamic_sections(), elf32_hppa_size_stubs(), elf32_i860_relocate_section(), elf32_m68hc11_add_symbol_hook(), elf32_m68hc11_build_stubs(), elf32_m68hc11_check_relocs(), elf32_m68hc11_post_process_headers(), elf32_m68hc11_relocate_section(), elf32_m68hc11_size_stubs(), elf32_mips_grok_prstatus(), elf32_mips_grok_psinfo(), elf32_msp430_relocate_section(), elf32_shlin_grok_prstatus(), elf32_shlin_grok_psinfo(), elf32_sparc_adjust_dynamic_symbol(), elf32_sparc_check_relocs(), elf32_sparc_create_dynamic_sections(), elf32_sparc_finish_dynamic_sections(), elf32_sparc_grok_psinfo(), elf32_sparc_merge_private_bfd_data(), elf32_sparc_mkobject(), elf32_sparc_new_section_hook(), elf32_sparc_object_p(), elf32_sparc_omit_section_dynsym(), elf32_sparc_relax_section(), elf32_sparc_relocate_section(), elf32_sparc_size_dynamic_sections(), elf64_alpha_add_symbol_hook(), elf64_alpha_adjust_dynamic_symbol(), elf64_alpha_always_size_sections(), elf64_alpha_calc_got_offsets_for_symbol(), elf64_alpha_can_merge_gots(), elf64_alpha_check_relocs(), elf64_alpha_create_dynamic_sections(), elf64_alpha_create_got_section(), elf64_alpha_final_link(), elf64_alpha_find_nearest_line(), elf64_alpha_mkobject(), elf64_alpha_output_extsym(), elf64_alpha_read_ecoff_info(), elf64_alpha_relax_got_load(), elf64_alpha_relax_section(), elf64_alpha_relax_tls_get_addr(), elf64_alpha_relax_with_lituse(), elf64_alpha_relocate_section(), elf64_alpha_relocate_section_r(), elf64_alpha_section_from_shdr(), elf64_alpha_size_dynamic_sections(), elf64_alpha_size_got_sections(), elf64_generic_link_add_symbols(), elf64_hppa_check_relocs(), elf64_hppa_create_dynamic_sections(), elf64_hppa_dynamic_symbol_p(), elf64_hppa_finalize_opd(), elf64_hppa_finish_dynamic_symbol(), elf64_hppa_link_output_symbol_hook(), elf64_hppa_mark_exported_functions(), elf64_hppa_modify_segment_map(), elf64_hppa_object_p(), elf64_hppa_section_from_shdr(), elf64_hppa_size_dynamic_sections(), elf64_mips_grok_prstatus(), elf64_mips_grok_psinfo(), elf64_x86_64_adjust_dynamic_symbol(), elf64_x86_64_check_relocs(), elf64_x86_64_create_dynamic_sections(), elf64_x86_64_grok_prstatus(), elf64_x86_64_grok_psinfo(), elf64_x86_64_mkobject(), elf64_x86_64_relocate_section(), elf64_x86_64_section_from_shdr(), elf64_x86_64_size_dynamic_sections(), elf_add_dt_needed_tag(), elf_add_dynamic_entry(), elf_bfd_discard_info(), elf_bfd_final_link(), elf_bfd_link_add_symbols(), elf_core_file_matches_executable_p(), elf_create_pointer_linker_section(), elf_cris_adjust_dynamic_symbol(), elf_cris_size_dynamic_sections(), elf_cris_try_fold_plt_to_got(), elf_fake_sections(), elf_find_function(), elf_fixup_link_order(), elf_gc_common_final_link(), elf_gc_common_finalize_got_offsets(), elf_gc_mark(), elf_gc_record_vtentry(), elf_gc_record_vtinherit(), elf_gc_sections(), elf_gc_smash_unused_vtentry_relocs(), elf_gc_sweep(), elf_hppa_sort_unwind(), elf_i386_adjust_dynamic_symbol(), elf_i386_check_relocs(), elf_i386_create_dynamic_sections(), elf_i386_grok_prstatus(), elf_i386_grok_psinfo(), elf_i386_mkobject(), elf_i386_relocate_section(), elf_i386_size_dynamic_sections(), elf_link_add_archive_symbols(), elf_link_add_object_symbols(), elf_link_check_versioned_symbol(), elf_link_flush_output_syms(), elf_link_input_bfd(), elf_link_is_defined_archive_symbol(), elf_link_output_extsym(), elf_link_output_sym(), elf_link_read_relocs_from_section(), elf_m68k_adjust_dynamic_symbol(), elf_m68k_check_relocs(), elf_m68k_relocate_section(), elf_m68k_size_dynamic_sections(), elf_map_symbols(), ELF_object::ELF_object(), elf_reloc_link_order(), elf_reloc_symbol_deleted_p(), elf_s390_adjust_dynamic_symbol(), elf_s390_check_relocs(), elf_s390_create_dynamic_sections(), elf_s390_grok_prstatus(), elf_s390_mkobject(), elf_s390_relocate_section(), elf_s390_size_dynamic_sections(), elf_section_ignore_discarded_relocs(), elf_slurp_reloc_table(), elf_slurp_reloc_table_from_section(), elf_slurp_symbol_table(), elf_vax_adjust_dynamic_symbol(), elf_vax_check_relocs(), elf_vax_instantiate_got_entries(), elf_vax_relocate_section(), elf_vax_size_dynamic_sections(), elf_write_shdrs_and_ehdr(), elf_xtensa_check_relocs(), elf_xtensa_combine_prop_entries(), elf_xtensa_create_dynamic_sections(), elf_xtensa_discard_info(), elf_xtensa_discard_info_for_section(), elf_xtensa_finish_dynamic_sections(), elf_xtensa_grok_psinfo(), elf_xtensa_in_literal_pool(), elf_xtensa_merge_private_bfd_data(), elf_xtensa_new_section_hook(), elf_xtensa_object_p(), elf_xtensa_relax_section(), elf_xtensa_relocate_section(), elf_xtensa_size_dynamic_sections(), elfcore_grok_note(), elfcore_grok_nto_regs(), elfcore_grok_nto_status(), elfcore_maybe_make_sect(), elfcore_netbsd_get_lwpid(), elfcore_read_notes(), elfNN_hpux_backend_section_from_bfd_section(), elfNN_ia64_add_symbol_hook(), elfNN_ia64_check_relocs(), elfNN_ia64_choose_gp(), elfNN_ia64_create_dynamic_sections(), elfNN_ia64_final_link(), elfNN_ia64_finish_dynamic_symbol(), elfNN_ia64_global_dyn_sym_thunk(), elfNN_ia64_merge_private_bfd_data(), elfNN_ia64_modify_segment_map(), elfNN_ia64_relax_section(), elfNN_ia64_relocate_section(), elfNN_ia64_section_from_shdr(), elfNN_ia64_size_dynamic_sections(), SYSTEM_OF_EQUATIONS::Elim_One(), SYSTEM_OF_EQUATIONS::Elim_Simple_Redundant(), Eliminate_Dead_Do(), Eliminate_Dead_If(), Eliminate_Dead_SCF_rec(), DEPV_LIST::Eliminate_Inner_Carried(), DEPV_LIST::Eliminate_Inner_Carried_Or_All_Equals(), DEPV_LIST::Eliminate_Non_Distance_Carried_By(), Eliminate_Temp_In_While(), else_stmt_semantics(), Em_Add_New_Rel(), em_complex_abs(), Em_Dwarf_Symbolic_Relocs_To_Elf(), em_exp_float(), ML_WHIRL_EMITTER::Emit(), EMITTER::Emit(), emit_barrier(), emit_builtin_compare_and_swap(), emit_builtin_lock_test_and_set(), emit_builtin_sync_fetch_op(), emit_builtin_synchronize(), Emit_Cold_Threshold_Note(), emit_colors(), Emit_Loop_Note(), Emit_Message(), emit_stringtab(), Emit_SWP_Note(), Emit_To_PUinfo_Pragmas(), Emit_Unwind_Directives_For_OP(), Emit_Vector(), Emit_Verification_Messg(), EMITTER::EMITTER(), PF_SPLIT_VECTOR::Empty(), EMT_Assemble_BB(), EMT_Begin_File(), EMT_Emit_PU(), EMT_Put_Elf_Symbol(), emulate_intrinsic_op(), Enable_Fill_Delay_Slots_For_Target(), Enable_Fold_Expanded_daddiu_For_Target(), Enable_Idiv_In_FPU_For_Target(), Enable_LOH_For_Target(), Enable_Spec_Idiv_For_Target(), Enclosing_Loop_Body(), Enclosing_Proper_Do_Loop(), encode_decode_stmt_semantics(), end_blk_mp_semantics(), end_blockdata(), end_critical_section_blk(), end_do_blk(), end_do_parallel_blk(), end_forall_semantics(), end_function(), end_function_semantics(), end_guard_blk(), end_if_blk(), end_if_semantics(), end_interface_blk(), end_interface_body(), end_internal_proc(), end_labeled_do(), end_module(), end_module_proc(), end_multi_option(), end_open_mp_critical_blk(), end_open_mp_do_blk(), end_open_mp_master_blk(), end_open_mp_ordered_blk(), end_open_mp_parallel_blk(), end_open_mp_parallel_do_blk(), end_open_mp_parallel_sections_blk(), end_open_mp_parallel_workshare_blk(), end_open_mp_section_blk(), end_open_mp_sections_blk(), end_open_mp_single_blk(), end_open_mp_workshare_blk(), end_parallel_blk(), end_parallel_case_blk(), end_pdo_blk(), end_program_unit(), end_psection_blk(), end_region_blk(), end_select_blk(), end_SGI_parallel_blk(), end_single_process_blk(), end_subroutine(), end_task_do_blk(), end_type_blk(), endfile_stmt_semantics(), endparallel_cmic_semantics(), BINARY_TREE_NODE< BINARY_NODE >::Enter(), enter_cmd_line_cc_define(), OPT_STAB::Enter_ded_preg(), SNL_ANAL_INFO::Enter_Deps(), ARRAY_REF::Enter_Innermost_Scalar_Expand(), enter_intrinsic_info(), STMTREP::Enter_lhs(), STMTREP::Enter_rhs(), ARRAY_REF::Enter_Scalar_Expand(), Enter_Scalar_Expandable_Refs(), SYMBOL_TREE::Enter_Scalar_Refs(), OPT_STAB::Enter_symbol(), OPT_TAIL::Entry_is_well_behaved(), entry_stmt_semantics(), Enumerate_Insts(), Enumerate_Paths(), eoshift_intrinsic(), ep_memory_operand(), eq_opr_handler(), SUMMARY_VALUE::Equal(), DEPV_NODE::Equal(), SUMMARY_EXPR::Equal(), Equal_dims(), SUMMARY_EXPR::Equal_Node(), EXEC_PATH_SET::Equal_Size(), DEPV_ARRAY::Equal_Through_Depth(), Equiv(), REDUCTION_MANAGER::Equiv(), DEPV_COMPUTE::Equiv_Dim(), DEPV_COMPUTE::Equiv_Dims(), Equiv_Expression(), AEQUIV::Equivalence_Arrays(), equivalence_semantics(), LINEX::Equivalent(), AUX_STAB_ENTRY::Equivalent(), Equivalent(), PROJECTED_REGION::Equivalent(), Equivalent_Access_Arrays(), Equivalent_Load(), Equivalent_Types(), CAND_LIST::Erase_Cand(), ErrMsg_Report(), ESSA::ESSA(), Est_Num_Iters_Suspect(), LOOP_MULTIVER::Estimate_latency(), HB_Schedule::Estimate_Reg_Cost_For_OP(), etir_sta(), etir_sto(), IV_EXPR::Eval_to_const(), REGISTER_MODEL::Evaluate(), LOOP_MODEL::Evaluate(), Evaluate_actuals(), Evaluate_chi(), Evaluate_common_const(), Evaluate_Operand_Range(), Evaluate_Parallel_Paths(), LOOP_MULTIVER::Evaluate_stmt(), even_fpr_operand(), even_gpr_operand(), even_reg_operand(), LU_MAT< T >::Exact_Arithmetic(), EXC_SCOPE_TRY_ITER::EXC_SCOPE_TRY_ITER(), Exceeds_FS_Limit(), EXEC_PATH::EXEC_PATH(), Execution_Cost(), Execution_Cost_Value(), Execution_Count_Evaluated(), exit_intrinsic(), OPT_TAIL::Exit_is_well_behaved(), Exp_Call(), Exp_Compare_and_Swap(), Exp_COPY(), Exp_COPY_Ext(), Exp_Depends_On_Outer_Loop(), Exp_Deposit_Bits2(), Exp_Extract_Bits(), Exp_Fetch_and_Add(), Exp_Fetch_and_And(), Exp_Fetch_and_Or(), Exp_Fetch_and_Sub(), Exp_Fetch_and_Xor(), exp_fold_tree(), Exp_Generic_Pred_Calc(), CODEREP::Exp_has_e_num(), Exp_Immediate(), Exp_Immediate_Int(), Exp_Indirect_Branch(), Exp_Intrinsic_Call(), Exp_Intrinsic_Op(), Exp_Is_Large_Stack_Sym(), Exp_Lda(), Exp_Ldst(), Exp_Load(), Exp_Local_Jump(), Exp_Node_Varies_In_Loop(), Exp_OP(), Exp_phi_is_invariant(), Exp_Pred_Calc(), Exp_Pred_Compare(), Exp_Pred_Complement(), Exp_Pred_Copy(), Exp_Pred_Set(), Exp_Prefetch(), exp_print_tree(), Exp_Select_And_Condition(), Exp_Select_And_VLdid(), Exp_Set_Bits(), Exp_Simulated_Op(), Exp_Spadjust(), Exp_Store(), Exp_To_Linex(), Exp_True_False_Preds_For_Block(), Exp_Varies_In_Loop(), Expand_32Bit_Int_Less(), Expand_32Bit_Int_Less_Equal(), Expand_64Bit_ALU_OP(), Expand_64Bit_BitLogic_OP(), Expand_64Bit_Branch(), Expand_64Bit_Compare(), Expand_64Bit_Unary_OP(), Expand_Abs(), Expand_Add(), Expand_Binary_And(), Expand_Binary_Nor(), Expand_Binary_Or(), Expand_Binary_Xor(), Expand_Bool_Comparison(), Expand_Bool_Equal(), Expand_Bool_Not_Equal(), Expand_Bool_To_Int(), Expand_Branch(), expand_call_inline(), Expand_Ceil(), Expand_Cmov(), Expand_Compare_And_Select(), Expand_Composed_Load(), Expand_Composed_Store(), Expand_Constant_Multiply(), Expand_Convert_Length(), Expand_Copy(), Expand_Copy_Extension(), Expand_Divide(), Expand_DivRem(), expand_epilogue(), Expand_Expr(), CODEMAP::Expand_expr(), Expand_Extract_Bits(), Expand_F_To_G(), Expand_Fast_Power_Of_2_Rem(), Expand_Float_Compares(), Expand_Float_Div_By_Const(), Expand_Float_Div_By_Pow2(), Expand_Float_Divide(), Expand_Float_Recip(), Expand_Float_To_Float(), Expand_Float_To_Int(), Expand_Float_To_Int_Floor(), Expand_Float_To_Int_Tas(), Expand_Floor(), Expand_Flop(), Expand_G_To_F(), Expand_Immediate(), Expand_Immediate_Into_Register(), expand_imp_do(), Expand_Int_Cmp_With_Branch(), Expand_Int_Compare(), Expand_Int_Equal(), Expand_Int_Greater(), Expand_Int_Greater_Equal(), Expand_Int_Less(), Expand_Int_Less_Equal(), Expand_Int_Not_Equal(), Expand_Int_To_Float(), Expand_Int_To_Float_Tas(), Expand_Int_To_Int(), Expand_Integer_Divide_By_Constant(), Expand_Intel_F10_Sqrt(), Expand_Intel_Max_Thr_F4_Sqrt(), Expand_Intel_Max_Thr_F8_Sqrt(), Expand_Intel_Max_Thr_Sqrt(), Expand_Intel_Min_Lat_F4_Sqrt(), Expand_Intel_Min_Lat_F8_Sqrt(), Expand_Intel_Min_Lat_Sqrt(), expand_io_list(), Expand_Lda(), Expand_Lda_Label(), Expand_Left_Rotate(), Expand_Load(), Expand_Logical_Not(), Expand_Madd(), Expand_Max(), Expand_Min(), Expand_MinMax(), Expand_Misaligned_Load(), Expand_Misaligned_Store(), Expand_Mod(), Expand_Multiply_Into_Shifts(), Expand_Neg(), Expand_onto_stack(), Expand_OP(), Expand_Ordered_Select_Compare(), Expand_Power_Of_2_Divide(), Expand_Power_Of_2_Rem(), Expand_Reduce_Add(), Expand_Reduce_Max(), Expand_Reduce_Min(), Expand_Reduce_Mpy(), Expand_Rem(), Expand_Replicate(), Expand_Round(), Expand_Rrotate(), Expand_Select(), Expand_Shuffle(), Expand_Simulated_Ops(), Expand_Special_And_Immed(), Expand_Split_Cvtl(), Expand_Split_Int_Cmp(), Expand_Split_UOP(), Expand_Sqrt(), expand_start_critical(), expand_start_do_loop(), Expand_Store(), Expand_Sub(), Expand_TN_Pair(), Expand_TOP_intrncall(), Expand_Trunc(), expand_user_bound(), exponent_intrinsic(), Expr_has_only_formals(), Expr_Has_Vertex(), expr_is_speculative(), expr_is_symbolic_constant(), expr_iter(), ALIAS_CLASSIFICATION::Expr_may_contain_pointer(), MEM_ACCESS_ANALYZER::Expr_of_ptr_ty(), expr_sem(), expr_semantics(), Expr_Should_Always_Be_Hoisted(), extend_ebb_bounds(), extend_ebb_bounds_backward(), extend_ebb_bounds_forward(), Extended_Lower_Bound(), Extended_Upper_Bound(), extract_calls(), Extract_Do_Info(), f0_operand(), f1_operand(), f90_analyze_assignment(), f90_analyze_mstore(), f90_character_compare(), F90_Do_Copies(), F90_Do_Dependence_Analysis(), F90_Is_Char_Intrinsic(), F90_Is_Transformational(), F90_Lower(), F90_Lower_Copy_To_ATemp(), F90_Lower_Create_Temp(), F90_Lower_Init(), F90_Lower_Merge_Dep_Info(), F90_Lower_New_Aux_Data(), F90_Lower_Walk(), F90_Move_Transformationals(), F90_Size_Walk(), F90_Triplet_Scalarization_Walk(), F90_Walk_Statements(), F90_Walk_Statements_Helper(), fadd_fmult(), CFG::Fall_through(), Falls_Thru(), fast_fuse_check_ok(), FAVOR_DELAY_HEUR::FAVOR_DELAY_HEUR(), fcc_operand(), fcd_intrinsic(), fcr_operand(), fdpic_fptr_operand(), fdpic_operand(), fdump_tree_no_st(), fdump_wn_no_st(), fei_abs(), fei_add_use_path(), fei_allocate(), fei_arg_addr(), fei_array_dimen(), fei_assert(), fei_atomic_open_mp(), fei_blocking_size(), fei_bneg(), fei_close(), fei_concat(), fei_control_list(), fei_copy_in(), fei_critical_open_mp(), fei_criticalsection(), fei_descriptor(), fei_doall(), fei_doforever(), fei_doloop(), fei_doparallel(), fei_dowhile(), fei_dv_deref(), fei_dynamic(), fei_endmaster_open_mp(), fei_endparallel(), fei_endparallel_open_mp(), fei_endparallel_region(), fei_endparallelsections_open_mp(), fei_endparallelworkshare_open_mp(), fei_endpdo(), fei_endpsection(), fei_endsingleprocess(), fei_entry_pt(), fei_fcd(), fei_fission(), fei_fpclass(), fei_fuse(), fei_guard(), fei_if(), fei_inquire(), fei_isnan(), fei_label_def_named(), fei_malloc(), fei_master_open_mp(), fei_member(), fei_name(), fei_next_func_idx(), fei_non_conform_store(), fei_nseq_subscr(), fei_object(), fei_omp_set_lock(), fei_omp_test_lock(), fei_open(), fei_ordered_open_mp(), fei_page_place(), fei_par_case(), fei_parallel_open_mp(), fei_parallel_region(), fei_parallelsections_open_mp(), fei_parallelworkshare_open_mp(), fei_pattern_con(), fei_pdo(), fei_prefetch(), fei_prefetch_manual(), fei_prefetch_ref(), fei_prefetch_ref_disable(), fei_proc_def(), fei_proc_imp(), fei_psection(), fei_purple_conditional(), fei_redistribute(), fei_return(), fei_sections_open_mp(), fei_seg(), fei_set_dv_hdr_fld(), fei_single_open_mp(), fei_singleprocess(), fei_static_base(), fei_test_interupt(), fei_unroll(), fei_user_code_start(), fei_where(), fei_workshare_open_mp(), fetch_and_add_intrinsic(), FF_Mark_Inner_Loop_Info(), FF_Pragma_Seen_Before(), ffe_decode_option(), ffe_init_2(), ffe_terminate_0(), ffe_terminate_1(), ffe_terminate_2(), ffe_terminate_3(), ffe_terminate_4(), ffebad_start_(), ffebit_count(), ffebit_test(), ffebld_constant_is_magical(), ffebld_constant_is_zero(), ffebld_new_symter(), ffecom_2pass_advise_entrypoint(), ffecom_arglist_expr_(), ffecom_args_overlapping_(), ffecom_arrayref_(), ffecom_call_(), ffecom_debug_kludge_(), ffecom_do_entry_(), ffecom_end_transition(), ffecom_exec_transition(), ffecom_expand_let_stmt(), ffecom_expr(), ffecom_expr_(), ffecom_expr_assign(), ffecom_expr_assign_w(), ffecom_expr_intrinsic_(), ffecom_finish_decl(), ffecom_finish_global_(), ffecom_gen_sfuncdef_(), ffecom_init_0(), ffecom_init_2(), ffecom_make_tempvar(), ffecom_member_phase2_(), ffecom_notify_primary_entry(), ffecom_overlap_(), ffecom_possible_partial_overlap_(), ffecom_prepare_end(), ffecom_push_dummy_decls_(), ffecom_start_decl(), ffecom_start_progunit_(), ffecom_sym_transform_(), ffecom_sym_transform_assign_(), ffecom_transform_common_(), ffecom_transform_equiv_(), ffecom_transform_namelist_(), ffecom_type_localvar_(), ffecom_vardesc_(), ffecom_vardesc_array_(), ffecom_vardesc_dims_(), ffedata_advance_(), ffedata_begin(), ffedata_gather_(), ffedata_value(), ffedata_value_(), ffeequiv_layout_cblock(), ffeequiv_layout_local_(), ffeequiv_new(), ffeequiv_offset_(), ffeexpr_cb_comma_c_(), ffeexpr_cb_comma_i_5_(), ffeexpr_convert(), ffeexpr_declare_parenthesized_(), ffeexpr_declare_unadorned_(), ffeexpr_finished_(), ffeexpr_finished_ambig_(), ffeexpr_fulfill_call_(), ffeexpr_isdigits_(), ffeexpr_lhs(), ffeexpr_paren_rhs_let_(), ffeexpr_reduce_(), ffeexpr_sym_lhs_call_(), ffeexpr_sym_lhs_data_(), ffeexpr_sym_lhs_extfunc_(), ffeexpr_sym_rhs_actualarg_(), ffeexpr_sym_rhs_let_(), ffeexpr_token_anything_(), ffeexpr_token_arguments_(), ffeexpr_token_elements_(), ffeexpr_token_end_period_(), ffeexpr_token_first_lhs_1_(), ffeexpr_token_funsubstr_(), ffeexpr_token_name_apos_(), ffeexpr_token_name_lhs_(), ffeexpr_token_name_rhs_(), ffeexpr_token_substring_1_(), ffeglobal_new_common(), ffeglobal_new_progunit_(), ffeglobal_proc_def_arg(), ffeglobal_proc_ref_arg(), ffeglobal_proc_ref_nargs(), ffeglobal_ref_progunit_(), ffeglobal_size_common(), ffeimplic_establish_initial(), ffeimplic_establish_symbol(), ffeintrin_check_(), ffeintrin_check_any_(), ffeintrin_family(), ffeintrin_fulfill_generic(), ffeintrin_fulfill_specific(), ffeintrin_is_actualarg(), ffeintrin_is_intrinsic(), ffeintrin_is_standard(), ffelex_cfelex_(), ffelex_file_fixed(), ffelex_file_free(), ffelex_finish_statement_(), ffelex_hash_kludge(), ffelex_include_(), ffelex_init_1(), ffelex_is_free_char_ctx_contin_(), ffelex_is_free_nonc_ctx_contin_(), ffelex_set_names(), ffename_lookup_(), ffesta_ffebad_start(), ffesta_inhibited_exec_transition_(), ffesta_init_3(), ffesta_save_(), ffesta_second_(), ffesta_two(), ffesta_zero(), ffestb_beru(), ffestb_beru10_(), ffestb_beru1_(), ffestb_beru4_(), ffestb_beru5_(), ffestb_construct1_(), ffestb_decl_attrsp_(), ffestb_decl_chartype(), ffestb_decl_chartype1_(), ffestb_decl_dbltype(), ffestb_decl_double(), ffestb_decl_ents_1_(), ffestb_decl_ents_3_(), ffestb_decl_ents_4_(), ffestb_decl_ents_7_(), ffestb_decl_ents_8_(), ffestb_decl_entsp_2_(), ffestb_decl_entsp_3_(), ffestb_decl_entsp_6_(), ffestb_decl_funcname_4_(), ffestb_decl_gentype(), ffestb_decl_R539(), ffestb_decl_R539letters_(), ffestb_dummy1_(), ffestb_dummy2_(), ffestb_else3_(), ffestb_else4_(), ffestb_if2_(), ffestb_let(), ffestb_R1001(), ffestb_R100110_(), ffestb_R100111_(), ffestb_R100112_(), ffestb_R100114_(), ffestb_R10012_(), ffestb_R10013_(), ffestb_R10014_(), ffestb_R10015_(), ffestb_R10016_(), ffestb_R10017_(), ffestb_R10018_(), ffestb_R10019_(), ffestb_R1229(), ffestb_R12291_(), ffestb_R5221_(), ffestb_R524(), ffestb_R528(), ffestb_R537(), ffestb_R544(), ffestb_R547(), ffestb_R8103_(), ffestb_R8402_(), ffestb_R904(), ffestb_R9043_(), ffestb_R9044_(), ffestb_R907(), ffestb_R9073_(), ffestb_R9074_(), ffestb_R909(), ffestb_R90913_(), ffestb_R90914_(), ffestb_R9091_(), ffestb_R9094_(), ffestb_R9097_(), ffestb_R9098_(), ffestb_R910(), ffestb_R9103_(), ffestb_R9106_(), ffestb_R9107_(), ffestb_R911(), ffestb_R9111_(), ffestb_R923(), ffestb_R9231_(), ffestb_R9232_(), ffestb_R9233_(), ffestb_R9234_(), ffestb_subr_dimlist_(), ffestb_subr_dimlist_1_(), ffestb_subr_dimlist_2_(), ffestb_subr_label_list_(), ffestb_subr_label_list_1_(), ffestb_subr_name_list_(), ffestb_subr_name_list_1_(), ffestb_V0141_(), ffestb_V020(), ffestb_V0201_(), ffestb_V027(), ffestb_varlist(), ffestb_varlist5_(), ffestb_varlist6_(), ffestc_eof(), ffestc_establish_declstmt_(), ffestc_establish_impletter_(), ffestc_exec_transition(), ffestc_is_decl_not_R1219(), ffestc_is_entry_in_subr(), ffestc_is_let_not_V027(), ffestc_labeldef_begin_(), ffestc_labelref_is_assignable_(), ffestc_labelref_is_branch_(), ffestc_labelref_is_format_(), ffestc_labelref_is_loopend_(), ffestc_order_actiondo_(), ffestc_order_actionif_(), ffestc_order_actionwhere_(), ffestc_order_any_(), ffestc_order_blockdata_(), ffestc_order_blockspec_(), ffestc_order_data77_(), ffestc_order_data_(), ffestc_order_do_(), ffestc_order_entry_(), ffestc_order_exec_(), ffestc_order_format_(), ffestc_order_function_(), ffestc_order_iface_(), ffestc_order_ifthen_(), ffestc_order_implicit_(), ffestc_order_implicitnone_(), ffestc_order_parameter_(), ffestc_order_program_(), ffestc_order_progspec_(), ffestc_order_selectcase_(), ffestc_order_sfunc_(), ffestc_order_subroutine_(), ffestc_order_typedecl_(), ffestc_order_unit_(), ffestc_promote_dummy_(), ffestc_promote_execdummy_(), ffestc_R1207_item(), ffestc_R1207_start(), ffestc_R1208_start(), ffestc_R1212(), ffestc_R1219(), ffestc_R1223(), ffestc_R1226(), ffestc_R1229_start(), ffestc_R501_item(), ffestc_R501_itemendvals(), ffestc_R501_itemvalue(), ffestc_R522item_object(), ffestc_R522start(), ffestc_R524_item(), ffestc_R524_start(), ffestc_R528_item_value(), ffestc_R528_start(), ffestc_R537_start(), ffestc_R539start(), ffestc_R542_item_nitem(), ffestc_R542_item_nlist(), ffestc_R542_start(), ffestc_R544_equiv_(), ffestc_R544_item(), ffestc_R544_start(), ffestc_R547_item_cblock(), ffestc_R547_item_object(), ffestc_R547_start(), ffestc_R803(), ffestc_R809(), ffestc_R819A(), ffestc_R819B(), ffestc_R820A(), ffestc_R820B(), ffestc_R837(), ffestc_R839(), ffestc_R841(), ffestc_R909_start(), ffestc_R910_start(), ffestc_R911_start(), ffestc_R923B_start(), ffestc_shriek_do_(), ffestc_shriek_function_(), ffestc_shriek_subroutine_(), ffestc_subr_is_present_(), ffestc_try_shriek_do_(), ffestc_V014_start(), ffestc_V020_start(), ffestc_V027_start(), ffestd_R1001dump_(), ffestd_R1103(), ffestd_R1221(), ffestd_R1225(), ffestd_R1227(), ffestd_R836(), ffestd_R839(), ffestd_R840(), ffestd_R842(), ffeste_io_cilist_(), ffeste_io_cllist_(), ffeste_io_dofio_(), ffeste_io_douio_(), ffeste_io_ialist_(), ffeste_io_icilist_(), ffeste_io_olist_(), ffeste_R809(), ffeste_R904(), ffeste_R907(), ffeste_R909_start(), ffeste_R910_start(), ffeste_R911_finish(), ffeste_R911_start(), ffeste_R923A(), ffeste_subr_beru_(), ffestorag_exec_layout(), ffestorag_init_2(), ffestt_caselist_create(), ffestt_dimlist_as_expr(), ffestt_dimlist_type(), ffestt_formatlist_kill(), ffestu_dummies_transition_(), ffestu_list_exec_transition_(), ffestu_sym_end_transition(), ffestu_sym_exec_transition(), ffestu_symter_end_transition_(), ffestu_symter_exec_transition_(), ffesymbol_check(), ffesymbol_declare_blockdataunit(), ffesymbol_declare_cblock(), ffesymbol_declare_funcnotresunit(), ffesymbol_declare_funcunit(), ffesymbol_declare_programunit(), ffesymbol_declare_sfdummy(), ffesymbol_declare_subrunit(), ffesymbol_new_(), ffesymbol_retract(), ffetarget_integer1(), ffetarget_integerbinary(), ffetarget_integerhex(), ffetarget_integeroctal(), ffetarget_iszero_character1(), ffetarget_iszero_hollerith(), ffetarget_typeless_binary(), ffetarget_typeless_hex(), ffetarget_typeless_octal(), LMV_HEURISTIC::Figureout_assumed_noalias_mem_ranges(), file_exists(), Fill_Align_Symbol(), fill_exported_offsets(), Fill_From_Successor(), OUTPUT_FUNC_START_PROFILER::Fill_In_Func_Body(), fill_in_struct_argchck_const(), fill_option_info(), final_arg_work(), final_attr_semantics(), final_decl_semantics(), final_equivalence_semantics(), LRANGE_SUB_MGR::Finalize(), Finalize_BB(), Finalize_Freq_Edges(), Finalize_Index_Variable(), Finalize_Index_Variable_For_Remove_Unity_Trip_Loop(), finalize_maybe_linker_options(), RETURN_PREG::find(), find(), BINARY_TREE< BINARY_NODE >::Find(), ETABLE::Find_1st_order_exprs_with_temp(), Find_addr_passed(), Find_Alloca(), DISTR_INFO::Find_Alloca(), BITWISE_DCE::Find_and_mark_cd_branch_live(), BITWISE_DCE::Find_and_mark_return_live(), find_arm_glue(), find_attr_in_il(), find_attr_in_ir(), find_attrs_used_in_bound(), Find_Average(), NORMALIZE_LOOP::Find_barrier_in_tree(), Find_BB_Predicates(), Find_BB_TNs(), Find_Break_Point(), Find_Candicate_OP(), LOOP_RCE::Find_Chain(), Find_Compare_IV(), Find_Compare_IV_Recurse(), find_cond_trap(), CODEMAP::Find_CR(), find_crt_path(), DEPV_COMPUTE::Find_Def(), Find_Do_Loop_With_Min(), Find_doloop_init_stmt(), find_duplicate_mem_op(), find_duplicate_op(), LOOP_RCE::Find_Epilog(), find_executable(), Find_Execution_Path(), CFG::Find_exit_blocks(), Find_File(), find_files_in_directory(), Find_Global_TNs(), Find_Highest_Type_Of_Loop(), find_if_block(), find_if_case_1(), find_if_case_2(), find_in_invalid_types(), find_index_and_offset(), DEPV_COMPUTE::Find_Init_Distance_Used(), Find_inito_by_st(), Find_Insertion_Point(), SSU::Find_intervening_iphi(), STR_RED::Find_iv_and_incr(), STR_RED::Find_iv_and_mult(), STR_RED::Find_iv_and_mult_phi_res(), Find_Lego_Base_Exp(), REGION_LOOP_UPDATE::Find_Loop_BBs(), LRANGE::Find_LUNIT_For_GBB(), RVI_VTAB::Find_match(), ETABLE::Find_new_1st_order_exprs(), Find_Path_in_Region(), Find_Preceeding_Pragma(), find_previous_constant(), Find_Proc_Tile_Loop(), find_prog_unit_tbl(), LOOP_RCE::Find_Prolog(), PARTITION_GRAPH::Find_Reachable_Descendant(), STR_RED::Find_real_defs_rhs(), Find_Regional_Cfg_Edge(), find_relaxable_sections(), OPT_REVISE_SSA::Find_scalars_from_lda_iloads(), OPT_REVISE_SSA::Find_scalars_from_lda_indirects(), OPT_REVISE_SSA::Find_scalars_from_lowering_bitfld(), OPT_REVISE_SSA::Find_scalars_from_lowering_bitfld_cr(), REGIONAL_CFG::Find_Seed(), REGIONAL_CFG::Find_SEME_Nodes(), Find_Slink_For_ST(), IV_EXPR::Find_step(), find_thumb_glue(), Find_Unchained_Scalar(), Find_variant(), Find_virtual_function(), SSA::Find_zero_versions(), finish_cdir_id(), finish_declspecs(), CLIST_ITER::First(), Fiss_Gather_Inner_Loop(), Fiss_Gather_Loop(), Fission(), Fission_DU_Update(), Fission_Finish(), Fission_Init(), Fission_Inner_Loop(), fission_is_better(), Fission_Test(), Fits_In_The_Cache(), Fix_Aliased_Commons(), Fix_Array_Deps_On_Index_Variable(), Fix_Blockable_Dependences(), Fix_do_loop(), Fix_LRA_Blues(), Fix_Recurrences_Before_Unrolling(), Fix_Up_Loop_Info(), fixed_classify_line(), fixed_get_char(), fixed_get_stmt(), Fixed_Size_Array_Is_Stride_One(), Fixup_Long_Branches(), Fiz_Fuse(), flag_operand(), flatten_function_call(), FLD_are_equivalent(), FLD_equivalent(), float_relational_operator(), floor_intrinsic(), flush_cc_line(), flushout(), fnd_semantic_err(), fneg_sequence(), fold_aggragate_expression(), Fold_Base(), fold_binary(), Fold_Constant_Expression(), fold_general_exponentiation(), COMP_UNIT::Fold_lda_iload_istore(), OPT_REVISE_SSA::Fold_lda_iloads(), fold_name(), fold_unary(), foldConstOffset(), folder_driver(), foldLdaOffset(), ML_WHIRL_EMITTER::For_preopt(), forall_mask_needs_tmp(), forall_semantics(), Force_If_Convert(), OPT_REVISE_SSA::Form_extract(), OPT_REVISE_SSA::Form_extract_compose(), Form_General_Region(), Form_Hyperblocks(), COPYPROP::Form_inverse(), form_the_same_automaton_unit_lists(), Formal_Sym(), format_operand(), Formula_For_Ak(), Fortran_string_compare(), Found_aliasing_store_in_loop(), fpr_operand(), fpr_or_int6_operand(), fpr_or_memory_operand(), fPrint_TN(), fpu_add_operand(), fpu_rhs_operand(), fr30_elf_check_relocs(), fr30_elf_relocate_section(), fraction_intrinsic(), frame_offset_overflow(), free_classify_line(), Free_Dominators_Memory(), free_get_char(), free_get_keyword(), free_get_stmt(), free_intrinsic(), FREQ_Check_Consistency(), FREQ_Find_Never_BBs(), Freq_OK(), Freq_Order_Blocks(), FREQ_Region_Initialize(), FREQ_Verify(), FREQ_View_CFG(), frv_check_constant_argument(), frv_class_likely_spilled_p(), frv_elf_arch_extension_p(), frv_elf_merge_private_bfd_data(), frv_emit_movsi(), frv_expand_block_clear(), frv_expand_block_move(), frv_frame_pointer_required(), frv_function_symbol_referenced_p(), frv_ifcvt_modify_insn(), frv_ifcvt_modify_tests(), frv_ifcvt_rewrite_mem(), frv_initialize_trampoline(), frv_legitimate_address_p(), frv_legitimate_constant_p(), frv_legitimate_memory_operand(), frv_load_operand(), frv_local_funcdesc_p(), frvfdpic_elf_use_relative_eh_frame(), FS_Array_Single_Def_Use(), FS_Array_Substitute(), FS_Array_Worthwhile(), FS_Exp_Assigned_on_Loop_Iteration(), FS_Is_In_Do_Loop_Expression(), FS_Is_Inside_If(), FS_Load_Assigned_on_Loop_Iteration(), FS_Substitute(), FS_Worthwhile(), Fully_Permutable_Permutation(), Fully_Unroll_Short_Loops(), func_desc_adjust(), Func_Return_Character(), function_has_varargs(), Fuse(), Fuse_Level_By_Level(), Fuse_Test(), Fusion_Finish(), Fusion_Init(), TRANSPOSE_DIRECTED_GRAPH16::Gather_Arrays(), Gather_References_At_Deepest_Depth(), Gather_Vectorizable_Ops(), GCM_Fill_Branch_Delay_Slots(), GCM_For_Loop(), GCM_Schedule_Region(), gcse_main(), GDESCRIPTOR::GDESCRIPTOR(), gen_absence_set(), gen_alloc_header_const(), gen_allocatable_ptr_ptee(), gen_arg_type_descriptor(), gen_array_element_init(), Gen_Assign_Of_Init_Val(), gen_assumed_shape_copy(), gen_attr_and_IR_for_lbl(), gen_automaton(), gen_bd_entry(), gen_bounds_check_call(), gen_branch_around_ir(), gen_bypass(), EDGE_PROFILE::Gen_Call_BB(), gen_call_type_descriptor(), gen_common_dv_init(), Gen_Compare_DARTS(), SCHEDULER::Gen_Compensation_Code(), gen_conform_check_call(), gen_copyin_bounds_stmt(), gen_cpu_unit(), Gen_Critical(), gen_dbg_write_stmt(), gen_debug_lbl_stmt(), gen_Dv_Set_stmt(), gen_dv_whole_def(), gen_dv_whole_def_init(), gen_end_prologue_debug_label(), Gen_End_Serialized_Parallel(), gen_excl_set(), Gen_exp_wn(), gen_final_absence_set(), gen_forall_branch_around(), gen_forall_max_expr(), gen_forall_tmp(), gen_forall_tmp_bd_entry(), gen_if_ir(), gen_if_stmt(), gen_init_stmt(), gen_initialized_tmp(), gen_internal_call_stmt(), gen_internal_dope_vector(), SCHEDULER::Gen_Inverted_Arc(), gen_ir(), gen_ir_at_this_entry(), EMITTER::Gen_lno_info(), gen_loop_end_ir(), Gen_MP_Copyin(), Gen_MP_Load_Store(), Gen_MP_Reduction(), Gen_MP_SingleProcess_Region(), gen_multiple_automatic_allocate(), PF_LG::Gen_Pref_Node(), PF_LG::Gen_Prefetch(), PF_LOOPNODE::Gen_Prefetch(), gen_presence_absence_set(), gen_presence_set(), gen_present_ir(), gen_ptr_chk_call(), gen_query_cpu_unit(), gen_rbounds_check_call(), gen_sbounds_check_call(), gen_sf_dv_whole_def(), gen_single_automatic_allocate(), Gen_Spill_Symbol(), gen_split_alloc(), gen_static_dv_whole_def(), Gen_stmt_wn(), gen_temp_init(), gen_tmp_equal_max_zero(), gen_whole_subscript(), gen_whole_substring(), EMITTER::Gen_wn(), General_Permutation(), general_s_operand(), Generate_Array_Dependence_For_Statement_Dependence_Graph(), Generate_Barriers(), Generate_Block_Bounds(), OPT_STAB::Generate_call_mu_chi_by_ref(), Generate_Cmp_Ctrl_TN(), ARA_LOOP_INFO::Generate_Copyout_Loop(), ETABLE::Generate_cur_expr(), EXP_HOISTING::Generate_hoisted_occur(), Generate_If_Accesses(), CSE::Generate_injury_repair(), EXP_WORKLST::Generate_ivariable_phi_list_addr(), OPT_STAB::Generate_mu_and_chi_list(), ARA_LOOP_INFO::Generate_Parallel_Pragma(), Generate_Scalar_Dependence_For_Statement_Dependence_Graph(), generic_add_output_symbol(), generic_link_add_object_symbols(), generic_link_add_symbol_list(), generic_link_add_symbols(), generic_link_check_archive_element(), generic_link_check_archive_element_no_collect(), generic_link_read_symbols(), generic_spec_semantics(), get_32bit_cilist_item(), Get_Align(), DISTR_INFO::Get_Array_Dim_Size(), get_auto_cpu_name(), Get_Avail_Reg(), RVI::Get_backward_dataflow(), RVI::Get_backward_lda_dataflow(), RVI::Get_bb_local_attributes(), RVI::Get_bb_local_lda_attributes(), Get_BB_Trace(), PF_LG::Get_Bit_Vec(), Get_callee(), get_can_be_reordered_types(), PARTITION_GRAPH::Get_Complementary(), IV_EXPR::Get_const(), get_const16_opcode(), DAG_BUILDER::Get_Def_Use_OPs(), DAG_BUILDER::Get_Define_OPs(), get_dlt(), get_expanded_call_opcode(), Get_Expansion_Space(), get_fdh(), Get_First_Stmt_And_Container(), RVI::Get_forward_dataflow(), RVI::Get_forward_lda_dataflow(), DCE::Get_full_rcfg_dom_frontier(), EXP_HOISTING::Get_hoisted_exp_occur(), get_ieee_status_intrinsic(), Get_Implicit_Locals(), Get_INITV_Size(), Get_Input_Parameter_Location(), get_intrinsic_name(), Get_Intrinsic_Size_Mtype(), get_ioitem_name(), get_iostatement_name(), LMV_LOOP_INFO::Get_iv_upperbound(), get_l32r_opcode(), get_local_syms(), Get_Local_TN_For_Global(), LOCAL_CLSC::Get_lr(), get_mem_dep(), Get_Name(), Get_NameLock_ST(), get_new_opinfo(), get_new_tninfo(), get_next_array_expr_element(), Priority_Selector::Get_Next_Element(), COPYPROP::Get_node_rehashed_to(), Get_Numeric_Flag(), get_nxt_line(), Get_Only_Loop_Inside(), get_opd(), get_operand_digit(), get_operand_dot(), get_operand_letter(), get_operand_quote(), get_operator(), get_operator_dot(), Get_Parameter_Location(), get_plt(), W2CF_TRANSLATOR::Get_Pointer_To(), Get_Possibly_Wired_Reference(), Get_Power_Of_2(), get_program_str(), Get_Range(), get_reloc_section(), Get_Reshaped_Array_St(), Get_Return_Info(), Get_Sched_Opts(), get_shape_from_attr(), Get_Size(), Get_Size_Ext_Info(), SRC_BB_MGR::Get_Src_Info(), get_stmt_tmp(), ALIAS_RULE::Get_stripped_mtype(), Get_Struct_Parameter_Location(), get_stub(), PARTITION_GRAPH::Get_Subset_Nodes(), get_sym_h(), EXP_OCCURS::Get_temp_cr(), get_temp_file(), Get_TN_Assembly_Name(), Get_TN_For_Predefined_Symbol(), Get_TN_Range(), Get_TN_Value(), get_token(), Get_Top_For_Addr_Mode(), Get_Trace(), get_trace_flags(), get_type_desc(), UNAME_SPACE::Get_uniform_name(), get_value(), Get_Vararg_Parameter_Location(), Get_WN_Label(), RVI::Get_wn_local_attributes(), RVI::Get_wn_local_lda_attributes(), getpos_intrinsic(), gimplify_switch_expr(), PARTITION_GRAPH::Glb_Diff(), PARTITION_GRAPH::Glb_Sum(), IPA_NODE_SECTION_INFO::Global_Array_Region(), Global_Insn_Sched(), global_name_semantics(), Global_Preferenced_Regs(), Global_Variable(), SCHEDULER::Glos_Should_Sched_This_BB(), gmalloc(), good_data_imp_do_expr(), Good_Do_Next_Innermost1(), Good_for_gath(), GOTO_DESCRIPTOR::GOTO_DESCRIPTOR(), GTABLE::Goto_Is_Noop(), GOTO_TABLE::Goto_Is_Noop(), goto_stmt_semantics(), GOTO_TABLE::GOTO_TABLE(), gpr_fpr_or_int12_operand(), gpr_no_subreg_operand(), gpr_operand(), gpr_or_accum_operand(), gpr_or_br_flag_operand(), gpr_or_constant_operand(), gpr_or_dbl_const_operand(), gpr_or_fpr_operand(), gpr_or_int10_operand(), gpr_or_int12_operand(), gpr_or_int_operand(), gpr_or_memory_operand(), gpr_or_memory_operand_with_scratch(), gpr_or_signed6_operand(), gpr_or_unsigned5_operand(), gpr_or_unsigned6_operand(), GRA_GRANT_Initialize(), GRA_LIVE_Finalize_Memory(), GRA_LIVE_Finish_PU(), GRA_LIVE_Finish_REGION(), GRA_LIVE_Region_Compute_Global_Live_Info(), GRA_LIVE_TN_Live_Into_BB(), GRA_LIVE_TN_Live_Outof_BB(), GRA_Remove_Predicates_Save_Restore(), GRA_Split_Entry_And_Exit_BBs(), GRA_Trace_Initialize(), GRA_Trace_Split_Priority_Off(), CG_BROWSER::Graph(), REGION_BOUND::grb(), REGION_BOUND::GRB_merge_var(), grokdeclarator(), GTABLE::GTABLE(), GTN_Live_Out_From_BB(), Guard_A_Do(), Guard_Test_Redundant(), GVN::GVN(), h8300_bfd_link_add_symbols(), h8300_reloc16_extra_cases(), h8300_scan(), h8300_symbol_address_p(), Handle_access_count(), Handle_All_Hazards(), IP_ALIAS_CLASSIFICATION::Handle_assignment(), ALIAS_CLASSIFICATION::Handle_assignment(), IP_ALIAS_CLASSIFICATION::Handle_call(), ALIAS_CLASSIFICATION::Handle_call(), ALIAS_CLASSIFICATION::Handle_call_of_nested_PU(), Handle_Chk_Split_Bunch(), Handle_CONDBR(), SX_INFO::Handle_Index_Variable_Def(), handle_istore(), KEY_SCH::Handle_Ldst_Addiu(), SX_INFO::Handle_Other_Def(), Handle_Phase_Specific_Options(), Handle_Post_Hazard(), Handle_Pre_Hazard(), IP_ALIAS_CLASSIFICATION::Handle_return_val(), Handle_SELECT(), Handle_Sink_Promotion_Case(), Handle_Sink_Symbolic_Non_Promotion_Case(), Handle_STID(), SX_INFO::Handle_Use(), Has_Array_Dep_Carried_Inside_Loop(), has_array_reference(), has_been_reprivatized(), has_blank(), VN_LITERAL_EXPR::has_bottom_opnd(), VN_LDA_ADDR_EXPR::has_bottom_opnd(), Has_Calls(), STMTREP::Has_chi(), Has_Code_At_Depth(), Has_Complex_Access_Array(), Has_Control_Char(), Has_Cutset(), AUX_STAB_ENTRY::Has_def_by_const(), Has_Execution_Cost(), Has_Extension(), Has_External_Branch_Target(), Has_External_Fallthru(), REGION_UN::Has_Formal_Parameter(), ACCESS_VECTOR::Has_Formal_Parameter(), AXLE_NODE::Has_Formal_Parameter(), REGION::Has_Formal_Parameter(), CALL_INFO::Has_Formal_Parameter(), ACCESS_ARRAY::Has_Formal_Parameter(), IPA_EDGE::Has_frequency(), SUMMARIZE< program >::Has_global_symbol_index(), Has_iload_with_same_addr_expr(), Has_Immediate_Operand(), PROJECTED_REGION::Has_Important_Messy_Bounds(), Has_Io(), Has_Lego_Mp_Loops(), Has_Live_In_Successor(), Has_Live_Out_Index_Variable(), PAR_STAT::Has_Loop(), LINEX::Has_loop_coeff(), Has_Matching_Load_In_BB(), Has_Matching_Store_In_BB(), PROJECTED_REGION::Has_Messy_Bounds(), STMTREP::Has_mu(), PATTERN_TYPE::Has_Multbranch_Template(), GRA_BB::Has_Multiple_Predecessors(), AUX_STAB_ENTRY::Has_multiple_signs(), has_no_0_omega_non_neg_latency_succ(), Has_No_Concurrentize_Directive(), Has_Non_Constant_Init_Value(), VECTOR_SPACE< T >::Has_Only_Elemetary_Basis_Vectors(), Has_Optimizable_Node_Traverse(), Has_Outer_Reuse_In_SNL(), Has_overlapping_liverange(), Has_Predecessor_Not_In_LRANGE(), OPT_STAB::Has_read_only_parm(), Has_Reshaped_Type(), Has_Reuse(), Has_Scalar_Use_Inside_Loop(), RGN_CFLOW_MGR::Has_Scheduled_Preds(), Has_Sibling_In_Block(), Has_Single_FP_Condition_Code(), Has_Statically_Safe_Messy_Bounds(), Has_Subsumed_Cvtl(), Has_Successor_Not_In_LRANGE(), LABEL_LIST::Has_Targeted_Label(), Has_Threadprivate_Variable(), VN_LITERAL_EXPR::has_top_opnd(), VN_LDA_ADDR_EXPR::has_top_opnd(), has_unbalanced_if(), Has_Variable_Bounds(), Has_VarWN_idx(), CODEREP::Has_volatile_content(), STMTREP::Has_zero_version_chi(), CODEMAP::Hash(), Have_No_Across_Opt_In_Path(), HB_Block_Select(), HB_CFLOW_Can_Merge_BBs(), HB_Form_Hyperblocks(), HB_Identify_Hammock_Candidates(), HB_If_Convert(), HB_Safe_For_If_Conversion(), HB_Schedule::HB_Schedule(), HB_Tail_Duplicate(), help(), Highest_Condition_Point(), HMB_Add_Guard_Condition(), HMB_Hoist_Messy_Bounds(), HMB_Invariant_In_Loop(), Hoist_And_Sink_For_Nested_Doacross(), Hoist_Conditionals(), Hoist_Inner_Invar(), Hoist_Lower_Bound(), Hoist_Outer_Invar(), Hoist_Place(), hoist_predicate_of_duplicate_complement(), Hoist_Reshaped_Reference(), Hoist_Upper_Bound(), HoistIf(), HoistIf_Phase(), HoistIf_Walk(), host_associated_attr_semantics(), Host_To_Targ_String(), hppa_add_stub(), hppa_build_one_stub(), hppa_get_stub_entry(), i370_elf_adjust_dynamic_symbol(), i370_elf_check_relocs(), i370_elf_create_dynamic_sections(), i370_elf_finish_dynamic_sections(), i370_elf_merge_private_bfd_data(), i370_elf_relocate_section(), i370_elf_section_from_shdr(), i370_elf_size_dynamic_sections(), ia64_dfa_new_cycle(), iadd_special_case(), iand_intrinsic(), ibits_intrinsic(), ibset_intrinsic(), icc_operand(), ichar_intrinsic(), icr_operand(), idate_intrinsic(), CFG::Ident_loop(), Identical(), COPYPROP::Identical_phi_opnd(), Identical_Pragmas(), Identical_Return_Blocks(), Identical_Token_Lists(), identify_literal_placement(), LOOP_INVAR_CODE_MOTION::Identify_Loop_Invariants(), Identify_Messy_Array_Subscript(), EXP_PHI::Identity_assignment(), Identity_Permutation(), idname_from_regnum(), LI_OP_INFO_MGR::Idx(), ieee_find_nearest_line(), ieee_finite_intrinsic(), ieee_new_section_hook(), ieee_object_p(), ieee_real_intrinsic(), ieee_set_section_contents(), ieee_slurp_debug(), ieee_slurp_external_symbols(), ieee_slurp_section_data(), ieee_slurp_symbol_table(), ieee_write_2bytes(), ieee_write_byte(), ieee_write_data_part(), ieee_write_debug_part(), ieee_write_expression(), ieee_write_external_part(), ieee_write_id(), ieee_write_int(), ieee_write_int5_out(), ieee_write_me_part(), ieee_write_object_contents(), ieee_write_processor(), ieee_write_section_part(), if(), CFG::If_conv_criteria_met(), if_convert(), CFG::If_convertible_cond(), IF_CONVERTOR::IF_CONVERTOR(), If_MinMax_Traverse(), if_stmt_semantics(), IFMM_Convertible(), IGLS_Schedule_Region(), Ignore_Synchronized_Construct(), LOOP_INVAR_CODE_MOTION::Ignore_Ugly_Loop(), ihex_get_section_contents(), ihex_mkobject(), ihex_read_section(), ihex_scan(), ihex_set_arch_mach(), ihex_set_section_contents(), ihex_write_object_contents(), ihex_write_record(), il_is_symbolic_constant(), ilen_intrinsic(), LOOP_INVAR_CODE_MOTION::Illegal_Or_Nonprofitable(), PARTITION_GRAPH::Illegal_Partition(), ESSA::Ilod_modified_phi_result(), ESSA::Ilod_modified_real_occ_phi_opnd(), ESSA::Ilod_modified_real_occ_real_occ(), Ilod_TY_is_volatile(), Imm_Value_In_Range(), Immed_Inside_Par_Begin(), Immediate_Has_All_Ones(), imp_do_metamorphed(), MANUAL_PREFETCH_SYMBOLS::In_Manual(), In_OP_Vector(), In_Same_SNL_Section(), include_spec_function(), increment_subscript(), Index_Derived_From_Parents_Of(), index_intrinsic(), BB_LOOP::Index_relative_expr(), Index_Variable(), Index_Variable_Is_Last_Local(), Index_Variable_Ldid(), Indices_only_may_overlap(), Indirect_Branch(), Induction_Variables_Removal(), Infer_Reduction_Operators(), info_msg(), CTRL_DEP::Init(), SUMMARY_ACTUAL::Init(), COST_TABLE::Init(), IV_CAND::Init(), INTERFERE_ITER::Init(), SYMBOL::Init(), PROJECTED_KERNEL::Init(), LRANGE_NEIGHBOR_ITER::Init(), SPILL_LIST::Init(), RVI_CTAB_ITER::Init(), RVI_VTAB_ITER::Init(), CG_THR::Init(), LEGO_INFO::Init(), CLIST_ITER::Init(), CANDIDATE::Init(), INIT2F_Get_Array_Segment(), INIT2F_is_string_initv(), INIT2F_translate(), init_call_structs(), Init_CG_Expand(), init_cif(), init_cmd_line(), init_compiler(), init_cond_comp(), Init_Crash_Report(), init_directive(), Init_Edges(), Init_Entry_Exit_Code(), Init_Error_File(), Init_Error_Handler(), Init_Fat_Point_Calculation(), init_for_output(), init_lex(), IVR::Init_loop(), DIPA_Phase_Manager::Init_Memory(), Init_OP_Name(), Init_OPSCH_For_BB(), init_parse_prog_unit(), Init_Prefetch_Options(), HB_Schedule::Init_RFlag_Table(), init_sh64_disasm_info(), init_source_reloc(), init_src_input(), init_stdc_plus_plus_path(), Init_Unwind_Info(), init_whole_array(), init_xtensa_relax_info(), GRA_REGION_MGR::Initialize(), Initialize(), FAVOR_DELAY_HEUR::Initialize(), LRANGE_SUB_MGR::Initialize(), Initialize_Access_Vals(), Initialize_Auxiliary_Tables(), Initialize_BB_Info(), Initialize_Flags(), CG_BROWSER::Initialize_Keymap(), WB_BROWSER::Initialize_Keymap(), Initialize_Keymap(), Initialize_Lvs(), Initialize_Memory(), initialize_mmix_dis_info(), Initialize_Pdo_Last_Local_Index(), Initialize_Priority_Queue(), IPAA_STEP::Initialize_Ref_Info(), Initialize_Register_Class(), Initialize_Stack_Frame(), Initialize_Targ_Info(), INITV2C_block_struct(), INITV2C_struct_fill(), INITV2C_symbol(), INITV2C_translate(), INITV_repeat1(), INITV_repeat2(), INITVKIND_translate(), INITVKIND_ty(), ESSA::Injured_phi_result_real_occ(), ESSA::Injured_real_occ_phi_opnd(), ESSA::Injured_real_occ_real_occ(), Inline_Call(), Inline_callees_into_caller(), inline_processing(), Inliner(), Inliner_Read_PUs(), Inliner_Write_PUs(), Inner_Fission(), Inner_LB_Is_Outer_Index_Variable(), Inner_LB_Outer_IV_Offset(), Inner_Loop_Is_Trapezoidal(), Innermore_Parallel_Loop(), Innermore_Parallel_Or_Lego_Loop(), inquire_stmt_semantics(), RETURN_PREG::insert(), RG_LIST::Insert(), IPO_ADDR_HASH::Insert(), RG::Insert(), insert_argchck_calls(), insert_bundle_state(), SCHEDULER::Insert_Check(), VALNUM_FRE::insert_cr_occurrences(), EXP_WORKLST::Insert_exp_phi(), insert_init_stmt_for_tmp(), RVI::Insert_load(), OPT_REVISE_SSA::Insert_mu_and_chi_list_for_new_var(), EXP_WORKLST::Insert_one_operand(), DAG_OPS_INFO::Insert_op_info(), Regioanl_DAG_Callback::Insert_op_info(), IF_CONVERTOR::Insert_Predicate(), Insert_Predicates(), SINGLE_LOOP::Insert_Ref(), DCE::Insert_required_gotos(), insert_sh_after_entries(), Insert_Smaller_Regions(), RVI::Insert_statement(), RVI::Insert_store(), Insert_Ty_Specific(), insert_undefined(), ANL_VARLIST::Insert_Var_Refs(), EXP_OCCURS::Inserted_computation(), Inside_Lego_Tiled_Loop(), Inside_Region(), EDGE_PROFILE::Instrument_Entry(), WN_INSTRUMENT_WALKER::Instrument_Icall(), int12_operand(), int6_operand(), int_2word_operand(), int_intrinsic(), SYMBOL_TREE::Integer_Ref_Needs_Reg(), integer_register_operand(), integer_relational_operator(), Interface_Scn_Add_Call(), Interface_Scn_Add_Def(), interface_semantics_pass_driver(), INTERFERE_MGR::INTERFERE_MGR(), LRANGE::Interferes(), Interferes_With_Symbolic_Bound(), internal_build_compound_expr(), internal_srec_write_object_contents(), interoperable_variable(), interpret_adjustl_intrinsic(), interpret_binary_intrinsic_opr(), interpret_binary_opr(), interpret_concat_opr(), interpret_constructor(), interpret_csmg_opr(), interpret_cvmgt_opr(), interpret_data_imp_do(), interpret_implied_do(), interpret_index_opr(), interpret_max_min_opr(), interpret_ref(), interpret_repeat_intrinsic(), interpret_reshape_intrinsic(), interpret_shape_intrinsic(), interpret_size_intrinsic(), interpret_struct_construct_opr(), interpret_transfer_intrinsic(), interpret_trim_intrinsic(), interpret_ubound_intrinsic(), interpret_unary_intrinsic_opr(), EXEC_PATH_SET::Intersection_Is_Empty(), BIT_VECTOR::Intersects(), Intersects_Col_Boundary(), Intervening_Ref(), Intervening_Write(), intop_compare_operator(), INTR_coerce_runtime(), INTR_parameter_type(), Intra_PU_Formal_Cprop(), Intra_PU_Global_Cprop(), intrinsic_operand_kind(), Intrinsic_Returns_New_Value(), intrinsic_runtime(), Invalid_Pointer_Map_Entry(), invalid_ptn(), PROMPF_ID::Invalidate(), CFG::Invalidate_and_update_aux_info(), CFG::Invalidate_loops(), Invariant_Base(), BB_LOOP::Invariant_cr(), BB_LOOP::Invariant_cr_rec(), Invariant_Loops(), Invariant_Permutation(), PAR_STAT::Invariant_Reduction(), Invert_BR_Variant(), Invoke_Init_Routines(), IO_Copy_Defs(), io_ctl_list_semantics(), TRANSPOSE_DIRECTED_GRAPH16::IO_element_read(), IO_element_read(), io_list_semantics(), ip2k_delete_page_insn(), ip2k_elf_relax_section(), ip2k_elf_relax_section_page(), ip2k_elf_relocate_section(), ip2k_is_opcode(), ip2k_relax_switch_table_128(), ip2k_relax_switch_table_256(), ip2k_test_page_insn(), IP_ALIAS_CLASSIFICATION::IP_ALIAS_CLASSIFICATION(), IP_FILE_HDR::IP_FILE_HDR(), IP_READ_pu(), IP_set_target(), IP_WRITE_pu_internal(), IPA_Configure_Target(), IPA_constant_in_array_bounds(), IPA_CPROP_DF_FLOW::IPA_CPROP_DF_FLOW(), IPA_Do_Linearization(), ipa_driver(), IPA_EX_Can_Evaluate_At_Callsite(), IPA_EX_Evaluate_At_Callsite(), IPA_EX_Set_Expr_Index(), IPA_EX_Valid_Expr(), IPA_EX_Valid_Opcode(), IPA_EX_Valid_Value(), IPA_EX_Value_Expr_Tree(), ipa_is_whirl(), IPA_LNO_Annotate_Array_Call(), IPA_LNO_Annotate_Scalar_Call(), IPA_LNO_Clip_Call_Def_Arcs(), IPA_LNO_Clip_Call_Use_Arcs(), IPA_LNO_Create_Dummy_Access_Array(), IPA_LNO_Evaluate_Scalar_Formals(), IPA_LNO_Map_Expr_Node(), IPA_LNO_Map_Global_Array(), IPA_LNO_Map_Term(), IPA_LNO_Read_Formal(), IPA_LNO_Read_Global(), IPA_LNO_Read_Projected_Region(), IPA_LNO_Read_Terms(), IPA_LNO_Reassign_Unsummarized_Calls(), IPA_LNO_Update_Independent_Loops(), IPA_Preopt_Finalize(), IPA_preopt_initialize(), IPA_Preoptimize(), ipa_process_whirl(), IPA_Rename_Builtins(), IPA_reorder_legality_process(), ipa_search_command_line(), ipa_symbol_sync(), IPA_WN_MAP_Delete(), IPA_WN_Move_Maps_PU(), IPAA_FORMAL_MAP::IPAA_FORMAL_MAP(), ipacom_doit(), IPFEC_Build_Skiplist(), IPFEC_Query_Skiplist(), SSU::Iphi_insertion(), IPL_Access_Vector_To_Projected_Region(), IPL_Build_Do_Access(), IPL_Build_If_Access(), IPL_EX_Expr_Evaluate(), IPL_EX_Set_Expr_Index(), IPL_EX_Value_Evaluate(), IPL_EXS_Eliminate_Expr_Identities(), IPL_EXS_Inner_Fold(), IPL_EXS_Outer_Fold(), IPL_EXS_Useless(), IPL_get_stmt_scf(), IPO_Clone(), IPO_Fld_Table_Update_For_Struct_Opt(), IPO_generate_new_types(), IPO_get_new_ordering(), IPO_main(), IPO_only_one_got(), IPO_Pad_Arrays(), IPO_Process_edge(), IPO_Process_Icalls(), IPO_Process_node(), IPO_propagate_globals(), IPO_SYMTAB::IPO_SYMTAB(), IPO_Types_Are_Compatible(), iq2000_count_memory_refs(), iq2000_elf_check_relocs(), iq2000_elf_merge_private_bfd_data(), iq2000_elf_relocate_section(), ir_all(), ir_b2a(), ir_b_copy_file(), ir_b_save_buf(), ir_b_write_tree(), ir_is_symbolic_constant(), IR_open_output(), ir_put_stmt(), ir_sel(), IR_Srcpos_Filename(), W2CF_TRANSLATOR::Is_A_Pragma_Clause(), Is_Abnormal_Loop(), Is_Above(), is_add_ok(), Is_Aggressive_Vintr_Loop(), Is_Aliased_With_Home(), Is_All_Equals(), Is_Allowed_Invalid_Access(), IPA_CLASS_HIERARCHY::Is_Ancestor(), Is_Array_Base(), Is_Array_Param(), Is_Assumed_Size_Or_Shape_Array(), is_attr_referenced_in_bound(), is_attribute(), Is_Bad_Array(), Is_Bad_Equivalence(), Is_Bad_Split_Equivalence(), Is_BB_Empty(), ARRAY_LOWER_REF::Is_Blkcyc_Dim_Local(), ARRAY_LOWER_REF::Is_Block_Dim_Local(), DEPV_ARRAY::Is_Blockable(), DCE::Is_branch(), Is_Call_BB(), is_call_by_value(), Is_Call_With_Alternate_Return(), is_called_in_ARM_mode(), Is_callee_formal_mappable_to_caller(), Is_caller_expr_linexable(), Is_caller_value_linexable(), Is_Child(), Is_Cmp_Eq_IV(), Is_Common_Based_Symbol(), LFTR::Is_comparison(), PARTITION_GRAPH::Is_Complementary(), Is_Composite_Type(), LINEAR_CLAUSE::Is_Consistent(), SYSTEM_OF_EQUATIONS::Is_Consistent(), Is_Consistent_Condition(), SYSTEM_OF_EQUATIONS::Is_Consistent_Work(), ACCESS_VECTOR::Is_Const(), RVI::Is_const_candidate(), STR_RED::Is_const_or_loop_invar(), SUMMARY_VALUE::Is_constant(), Is_constant_global(), Is_Constant_Tree(), Is_constant_val(), REGION::Is_Contained_By(), Is_Control_Speculation_Gratuitous(), DAG_BUILDER::Is_Control_Speculative(), ARA_LOOP_INFO::Is_Covered(), Is_Critical_Edge(), STR_RED::Is_cvt_linear(), Is_CVT_Noop(), Is_CVTL_Opcode(), ARRAY_LOWER_REF::Is_Cyclic_Dim_Local(), Is_DB_OP_Init(), is_decimal(), Is_Delay_Slot_Op(), DSE::Is_deleted_statement(), Is_Descendent(), REDUCTION_MANAGER::Is_Descendent_Of_Store_Address(), is_directory(), PARTITION_GRAPH::Is_Disjoint(), Is_div_handled_constant(), Is_do_inline(), is_dollar_directive(), EXP_OCCURS::Is_DPO_less_than(), EXP_OCCURS::Is_DT_descendant_of(), Is_Duplicate_Interface_Description(), Is_Dwarf_Section_To_Emit(), Is_Dynamic_Size_Shared_Array(), is_elf_file(), IPAA_FORMAL_MAP::Is_elmt(), EXEC_PATH_SET::Is_Empty(), BB_NODE::Is_empty(), Is_Empty_BB(), TERM::Is_equal(), Is_Equal(), VN_LITERAL_EXPR::is_equal_to(), is_equality(), is_executable(), RVI::Is_exit_block(), Is_Exp_Divided_By_Const(), Is_Exp_Linexable(), IPA_NODE::Is_Externally_Callable(), is_f90_formal(), is_f90_pointer(), is_f90_target(), Is_File(), Is_Float_Type(), is_floating_equal(), Is_fortran_reference_parm(), SNL_DEP_MATRIX::Is_Fully_Permutable(), COPYPROP::Is_function_of_cur(), COPYPROP::Is_function_of_itself(), Is_Function_Value(), Priority_Selector::Is_Fwd_Schedule(), List_Based_Bkwd::Is_Fwd_Schedule(), REGION_BOUND::is_global(), Is_Global_Array(), is_global_data_symbol_definition(), Is_Grandparent_Region(), Is_hi_sign_extended(), Is_HoistIf_Amenable(), MAT< T >::Is_Identity(), Is_identity_asgn(), STMTREP::Is_identity_assignment_removable(), STR_RED::Is_implicit_cvt_linear(), is_implied_do(), PARTITION_GRAPH_NODE_SET::Is_In(), VOID_SET::Is_In(), Is_In_Abnormal_Loop(), Is_In_Array(), Is_In_Infinite_Loop(), Is_In_Namelist_Stack(), Is_In_Range(), REGION_UN::Is_Included(), Is_Incomplete_Or_Recursive(), Is_Index_Expr_Shackleable(), Is_Index_Variable(), VN_IVC::Is_Induction_Var(), PAR_STAT::Is_Inner_Loop(), DEPV_LIST::Is_Inner_Non_Zero_Single_Distance(), DEPV_LIST::Is_Inner_Single_Distance(), Is_Inside_Store(), Is_Int_Output_Preg(), ARA_LOOP_INFO::Is_Invariant(), Is_Invariant(), Is_IV_cand_in_parent_loop(), CODEREP::Is_ivar_volatile(), REGION::Is_Kid_Region_Of(), is_l32r_relocation(), Is_Label_For_BB(), Is_Last_Red_Stmt(), RVI::Is_lda_candidate(), Is_Ldst_Addiu_Pair(), Is_Leaf(), SNL_DEP_MATRIX::Is_Legal(), Is_Legal_Permutation(), Is_Legal_Permutation_Class(), Is_Lex_Before(), Is_Lexpos(), DEPV_LIST::Is_Lexpos(), LFTR::Is_lftr_exp(), Is_linex_mappable_to_caller(), is_live_tn(), Is_lo_sign_extended(), Is_Local_Array_Reference(), is_local_forall_index(), ANL_PRAGMA_ATTRIBUTE::Is_Loop_Construct_Attribute(), Is_Loop_Guard(), REGIONAL_CFG_NODE::Is_Loop_Head(), REGION::Is_Loop_Invariant(), Is_Loop_Invariant_Exp(), Is_Loop_Invariant_Use(), Is_Loop_Lower_Bound(), REGIONAL_CFG_NODE::Is_Loop_Tail(), Is_Loop_Upper_Bound(), Is_Loophead_BB(), Is_LR_Reloadable(), Is_Mark_Type(), Is_Master_Test(), Is_Max_Cost(), COST_TABLE::Is_Max_Cost(), is_maybe_linker_option(), EXEC_PATH_SET::Is_Member(), CHAIN::Is_Member(), ARA_REF::Is_Messy(), Is_MMX_Dependency(), Is_Mp_Region(), Is_Multiple(), Is_NameLock_ST(), Is_Nested_Do_Across(), Is_nested_within(), is_nlist_typed(), Is_No_BB_Region(), Is_Non_Allocatable_Reg_Available(), Is_Non_Dependent_Expression(), Is_Non_Dependent_Load(), CODEREP::Is_non_volatile_terminal(), Is_Nonloop_Scalar(), Is_Nonpod_Finalization_IF(), is_normal(), is_numeric_equal(), is_object_option(), is_object_source_kind(), is_ok_to_reassociate(), is_omp_non_pod_copyin(), List_Based_Fwd::Is_OP_Better(), Priority_Selector::Is_OP_Better(), Is_OP_Cond(), Is_OP_fp_op1(), Is_OP_Move_Better(), Is_OP_Spill_Load(), Is_OP_Spill_Store(), is_operand_relocation(), Is_Ordered_Do(), Is_Orphaned_Pdo(), PAR_STAT::Is_Outer_Loop(), CFG::Is_outermost_loop_in_parallel_region(), NORMALIZE_LOOP::Is_outermost_loop_in_parallel_region(), is_par_directive(), PAR_STAT::Is_Parallel_Enclosed_Loop(), Is_Parent_Of(), IF_CONVERTOR::Is_Partial_Redundant_Def(), NORMALIZE_LOOP::Is_pdo_loop(), Is_Permutation_Vector(), Is_Pointer(), Is_Potential_Load_Or_Store(), is_pound_line_dir(), ANL_PRAGMA_ATTRIBUTE::Is_Pragma_Construct_Attribute(), Is_Predicate_REGISTER_CLASS(), ARA_LOOP_INFO::Is_Privatizable(), Is_Privatizable_With_Context(), ARA_LOOP_INFO::Is_Problem_Scalar(), ANL_PRAGMA_ATTRIBUTE::Is_ProMpf_Pragma_Attribute(), ANL_PRAGMA_CONSTRUCT::Is_ProMpf_Pragma_Construct(), ANL_REGION_CONSTRUCT::Is_ProMpf_Region_Construct(), Is_Provably_In_Bounds(), Is_Rectangular_Nested_Doacross(), Is_Reduction_In_Prallel_Region(), Is_Ref_Significant_In_Stmt(), Is_Reg_Available(), Is_Region(), GRA_BB::Is_Region_Block(), GRA_BB::Is_Region_Entry_Block(), Is_region_mappable_to_caller(), Is_region_with_pragma(), PARTITION_GRAPH_NODE::Is_Related_TN(), is_reloc_sym_weak(), is_removable_literal(), Is_Reshaped_Array_Expr(), Is_Reshaped_Array_Param(), is_resolvable_asm_expansion(), WN_Verifier::Is_return_register_of_call(), WN_INSTRUMENT_WALKER::Is_Return_Store_Comma(), WN_INSTRUMENT_WALKER::Is_Return_Store_Stmt(), Is_Return_Store_Stmt(), Is_Rty_Opr(), Is_Rty_Opr2(), CODEREP::Is_rvi_const_candidate(), CODEREP::Is_rvi_lda_candidate(), Is_Scalar(), Is_Scalar_Formal_Ref(), Is_Section_Begin(), SPARSE_BV::Is_Set(), Is_Similar(), SYSTEM_OF_EQUATIONS::Is_Simple_Redundant(), Is_Simple_Type(), Is_Simulated_Type(), Is_Single_Test(), Is_Stack_Used(), is_star_directive(), Is_Store_BB(), Is_String_Literal(), IPA_CLASS_HIERARCHY::Is_Sub_Class(), is_sub_ok(), PARTITION_GRAPH::Is_Subset(), EXEC_PATH_SET::Is_Subset_Of(), Is_Subset_Region(), Is_Substring(), is_substring_ref(), is_subtree_of(), is_sysrooted_pathname(), Is_term_mappable_to_caller(), EXP_WORKLST::Is_the_same_as(), Is_There_Group_Dependence(), Is_There_OP_Dependence(), GTABLE::Is_Truebr(), GOTO_TABLE::Is_Truebr(), EXC_SCOPE::Is_try_region(), Is_Unconditional(), Is_Under_Array(), Is_Unknown_Size_Array(), Is_Unroll_Statement(), REGIONAL_CFG::Is_Unwanted_Node(), is_unwind_section_name(), Is_Unwind_Simple(), Is_Used(), LAT_DIRECTED_GRAPH16::Is_Valid(), Is_Valid_Opcode_Parts(), Is_Valtmp(), Is_Value_Restored(), is_variable_dim_array(), Is_Vectorizable_Intrinsic(), is_vectorizable_intrinsic_op_stmt(), Is_Vectorizable_Loop(), is_vectorizable_op(), is_vectorizable_op_stmt(), Is_Vectorizable_Tree(), Is_Versioned_Mp_Loop(), Is_Versioned_Mp_Region(), Is_VLA(), RVI_NODE::Is_volatile(), Is_Well_Formed_Simd(), WN_Verifier::Is_WHIRL_tree(), WOVP::Is_write_once(), is_xfer_depndnce_reqd(), Is_Zero(), ishft_intrinsic(), ishftc_intrinsic(), iss_blk_stk_err(), IsStidToReturnPreg(), issue_attr_blk_err(), LOOP_INVAR_CODE_MOTION::It_is_Fake_Loop_Invar(), item_has_bounds_chk(), Item_In_List(), OPT_STAB::Its_ret_val_of_malloc(), Ivars_may_overlap(), IVR::IVR(), ix86_unary_operator_ok(), KERNEL_IMAGE::KERNEL_IMAGE(), KEY_SCH::KEY_SCH(), COND_BOUNDS_INFO::Kill_Written_Symbols(), PF_DESC::Kind(), kind_to_linear_type(), KMAPI_IsResourceMapClear(), kmapi_parse_exception(), kmapi_parse_split(), Known_Size(), label_def_stmt_semantics(), label_is_external(), LABEL_LIST::Label_Is_Targeted_Outside_Scope(), LABEL_LIST::LABEL_LIST(), label_ref_semantics(), Label_Used_In_Init(), Label_Used_In_InitV(), LabelOpt::LabelOpt(), lang_add_wild(), lang_finish(), lang_gc_sections(), lang_get_regions(), lang_leave_overlay(), lang_memory_default(), lang_memory_region_lookup(), lang_process(), lang_set_startof(), lang_size_sections_1(), lang_symbol_definition_iteration(), lang_track_definedness(), lang_update_definedness(), EXEC_PATH_SET::Last_Path_Id(), Last_Value_Peeling_Off(), lbound_intrinsic(), ld_compile(), WN_Verifier::LDA_ty_not_NULL(), ldctor_build_sets(), ldd_address_operand(), ldemul_handle_option(), ldemul_list_emulations(), ldemul_open_dynamic_archive(), ldemul_parse_args(), ldemul_place_orphan(), ldemul_recognized_file(), ldemul_unrecognized_file(), ldfile_add_library_path(), ldfile_open_file(), ldfile_open_file_search(), ldfile_try_open_bfd(), Ldid_from_mtype(), Ldid_from_mtype_class_and_size(), leadz_intrinsic(), CYCLE_STATE::Legality_Chk(), legitimate_address_p(), legitimate_la_operand_p(), legitimize_address(), legitimize_la_operand(), Lego_Contains_Non_Index_Ldid(), Lego_File_Init(), Lego_Fix_Local(), Lego_Fix_Local_Rec(), Lego_Layout_Code(), Lego_Loop_Want_Skew(), Lego_Mp_Tile(), Lego_OZero_Driver(), Lego_PU_Init(), Lego_Reshaped_Array(), Lego_Skew_Canonical(), Lego_Skew_Equivalent(), Lego_Tile(), Lego_Tile_Legal(), Lego_Tile_Loop(), Lego_Tiling_Depth(), LEGO_UGS::LEGO_UGS(), len_intrinsic(), len_trim_intrinsic(), length_intrinsic(), CACHE_PARAMETERS::Level1_Really_Level2(), lfinfo(), LFTR::LFTR(), lg_opr_handler(), lge_intrinsic(), Limit_Reused_Loops(), Linear_Expr_With_Mode(), linearize_list_for_equiv(), PF_LG::Lines(), linux_add_one_symbol(), linux_finish_dynamic_link(), linux_link_create_dynamic_sections(), linux_tally_symbols(), Lit_In_Class(), literal_value_equal(), GRA_PREF_MGR::LIVE_Create(), Live_Init(), LOOP_INVAR_CODE_MOTION::Live_Out_Of_Loop(), CFG::LMV_eligible_for_multiversioning(), LNO_Annotate_Scalar_Call(), LNO_Build_Access(), LNO_Build_Do_Access(), LNO_Build_If_Access(), LNO_Configure(), LNO_Pop_Config(), LNO_Update_Indx_Range(), LnoDependenceEdge(), Lnoptimizer(), LNOTARGET_Cvt_Lat(), LNOTARGET_Cvt_Res(), LNOTARGET_FP_Floor_Lat(), LNOTARGET_FP_Floor_Res(), LNOTARGET_Int_Bnor_Res(), LNOTARGET_Int_Div_Res(), LNOTARGET_Int_Div_Str_Red_Res(), LNOTARGET_Int_DivRem_Res(), LNOTARGET_Int_DivRem_Str_Red_Res(), LNOTARGET_Int_Lda_Res(), LNOTARGET_Int_Rem_Res(), LNOTARGET_Int_Rem_Str_Red_Res(), LNOTARGET_Whirl_To_Top(), WB_BUFFER::Load_Boolean(), Load_Boolean(), load_components(), Load_Distr_Array(), Load_From_Home(), Load_Has_Valid_Vaddr(), Load_Leaf(), Load_Loop(), RVI_LR_INFO::Load_should_be_in_pred(), Load_SNL_And_Permutation(), load_symbols(), EXP_OCCURS::Load_use_cr(), LOC_INFO::LOC_INFO(), loc_intrinsic(), TRANSPOSE_DIRECTED_GRAPH16::Local_Array(), LOCAL_ARRAY_DESC::LOCAL_ARRAY_DESC(), Local_Insn_Sched(), Local_Sched_OP_Should_Skip(), Local_Terminate(), Local_Variable(), Localize_Global_Param_Reg(), Localize_Global_Return_Reg(), Localize_Global_Return_Reg_Def(), Localize_in_serialized_parallel(), Localize_or_Replace_Dedicated_TNs(), Localize_Variable(), PF_VOLUME::Localized(), Locate_Sym(), lock_release_intrinsic(), Lod_modified(), ESSA::Lod_modified_phi_result(), ESSA::Lod_modified_real_occ_phi_opnd(), Lod_TY_is_volatile(), logical_binary_operator(), logical_intrinsic(), long_memory_operand(), PARTITION_GRAPH::Look_For_Partition(), PARTITION_GRAPH::Look_Partition_For_And_Type(), PARTITION_GRAPH::Look_Partition_For_Or_Type(), MEMOP_ANNOT::Lookup(), PT_MEM_ANNOT::Lookup(), lookup_address_in_function_table(), lookup_address_in_line_info_table(), lookup_line(), lookup_name(), Loop_Amenable_For_SWP(), Loop_Before_MP_Region(), Loop_Bound_Constant(), Loop_Bounds_Constant(), Loop_Bounds_Simple(), LINEX::Loop_coeff_terms_equal(), Loop_Countsdown_Xformed(), LOOP_DESCR_Can_Retarget_Loop_Entrances(), LOOP_DESCR_Detect_Loops(), LOOP_DESCR_Has_Side_Entrance(), LOOP_DESCR_Init_For_PU(), Loop_Dominates_Uses(), loop_end_processing(), Loop_Exit_Heuristic(), Loop_Has_Asm(), Loop_Has_Positive_Trip(), Loop_Header_Heuristic(), Loop_Invariant_Access(), Loop_Invariant_Inside(), Loop_Is_Trapezoidal(), CFG::Loop_itself_is_empty(), DCE::Loop_pragma(), loop_top_is_perfectly_nested(), loop_var_is_live_on_exit(), LOOPINFO_Trip_Count(), lower_base_reference(), lower_base_register(), lower_bit_field_id(), Lower_Bound_In_Affinity_Range(), Lower_Bounds_Equiv(), lower_char(), lower_complex_expr(), lower_cray_io_items(), lower_dereference(), Lower_Distr_Pragmas(), CFG::Lower_do_loop(), lower_eoshift(), lower_f77_io_items(), lower_f77_record_items(), Lower_Fetch_And_Op(), lower_formal_ref(), CFG::Lower_if_stmt(), lower_io_items(), lower_io_statement(), lower_is_aliased(), lower_linearize_array_addr(), lower_map(), Lower_Master(), lower_maxminloc(), lower_mldid(), lower_mp(), lower_nary_madd(), Lower_Pragma_Distribute(), Lower_Pragma_Distribute_Reshape(), Lower_Pragma_Redistribute(), lower_quad_expr(), lower_recip(), lower_record_items(), lower_reduction(), lower_return_ldid(), lower_rsqrt(), COMP_UNIT::Lower_to_extract_compose(), lower_transformationals(), lower_unsigned_to_float(), CFG::Lower_while_do(), ETABLE::LPRE_bottom_up_cr(), ETABLE::LPRE_bottom_up_stmt(), PF_LG::LR_Compare(), lr_operand(), PF_LG::LR_Ordering(), LOCAL_CLSC::LR_overlapped(), LRA_Estimate_Fat_Points(), LRANGE_Do_Split(), LRANGE_NEIGHBOR_ITER_Complement_Init(), LRANGE_NEIGHBOR_ITER_Complement_Local_Init(), LRANGE_NEIGHBOR_ITER_Local_Init(), LRANGE_Spill(), LRANGE_SUB_MGR::LRANGE_SUB_MGR(), lsbitnum_operand(), lt_opr_handler(), LU_MAT< T >::LU_MAT(), LUNIT_Create(), LUNIT_Spill(), LWN_Copy_Tree(), LWN_CreateDivceil(), LWN_CreateDivfloor(), LWN_Integer_Casts(), LWN_Process_FF_Pragmas(), LWN_Process_FF_Pragmas_Walk_r(), m32r_elf_add_symbol_hook(), m32r_elf_adjust_dynamic_symbol(), m32r_elf_check_relocs(), m32r_elf_create_dynamic_sections(), m32r_elf_fake_sections(), m32r_elf_final_sda_base(), m32r_elf_merge_private_bfd_data(), m32r_elf_relocate_section(), m32r_elf_size_dynamic_sections(), m32r_output_function_epilogue(), m32r_sched_init(), m32r_variable_issue(), m68hc11_elf_get_bank_parameters(), m68hc11_elf_relax_section(), m68hc11_elf_set_symbol(), m68hc11_get_relocation_value(), m68hc12_add_stub(), m68hc12_elf_set_mach_from_flags(), MA_OFFSET::MA_OFFSET(), main(), maintain_prebr_arc(), make_a_section_from_file(), VECTOR_SPACE< T >::Make_Bv_Aux(), Make_Const(), SSU::Make_diff_ssu_version(), SSU::Make_diff_ssu_version_at_phi(), make_fdh(), Make_Fine_Grained_Interferences(), make_identity(), make_import_fixup_mark(), SSA::Make_live_phi_chi_opnd(), make_logical_array_tmp(), make_new_bd_entries(), make_pointer_to_node(), Make_Pointer_Type(), GRA_BB::Make_Register_Used(), make_ro_entry(), OPT_STAB::Make_st_group(), make_virtual_anti_or_output_arc(), malloc_intrinsic(), LINEX::Map_access_vector(), IPAA_DF_SOLVER::Map_actual(), IPA_CALL_GRAPH::Map_Callsites(), map_field_id_and_offset(), Map_Field_To_STs(), IPAA_DF_SOLVER::Map_formal_attributes(), Map_Linear_Expr(), map_sections_to_segments(), ARRAY_SUMMARY_OUTPUT::Map_summary_info(), Map_Term(), Mark_Auto_Vectorizable_Loops(), DCE::Mark_branch_related_live(), Mark_Code(), DCE::Mark_coderep_live(), Mark_Deletable_Funcs(), Mark_Dos(), ARRAY_REF_LIST::Mark_Invariants(), CIO_RWTRAN::Mark_Op_For_Epilog(), CIO_RWTRAN::Mark_Op_For_Prolog(), SYSTEM_OF_EQUATIONS::Mark_Redundant(), Mark_Reloadable_Live_Ranges(), mark_relocs(), DCE::Mark_return_vsym_chi_live(), DCE::Mark_return_vsym_phi_live(), Mark_Scopes_And_Labels(), SYSTEM_OF_EQUATIONS::Mark_Simple_Redundant(), DCE::Mark_statements_dead(), BITWISE_DCE::Mark_stmt_live(), mark_tn_live_into_BB(), BITWISE_DCE::Mark_tree_bits_live(), Mark_Use(), BITWISE_DCE::Mark_var_bits_live(), DCE::Mark_zero_version_chinode_live(), mask_intrinsic(), Match(), CODEREP::Match(), REDUCTION_MANAGER::Match(), Match_Chk_Ld(), RVI_NODE::Match_constant(), CODEREP::Match_mu_and_def(), CODEREP::Match_mu_and_mu(), matched_specific_token(), PROJECTED_REGION::Matching_Segment_Stride(), PROJECTED_NODE::Matching_Segment_Stride(), Matching_Stores(), matmul_intrinsic(), Max_Colorable_LUNIT(), Max_Dep_Distance(), max_intrinsic(), max_opr_handler(), May_Be_Same_Memory(), ALIAS_CLASSIFICATION::May_icall_nested_PU(), ALIAS_MANAGER::May_refer_to_alloca_mem(), PROJECTED_REGION::May_Union(), maybe_add_exit_sp_adj_arc(), Maybe_Assigned(), Maybe_Assigned_Exp_Traverse(), Maybe_Handle_Sink_Promotion_Case(), mclr_intrinsic(), mcore_elf_check_relocs(), mcore_elf_merge_private_bfd_data(), mcore_elf_relocate_section(), IPAA_DF_SOLVER::Meet(), IPA_CPROP_DF_FLOW::Meet(), MEMOP_ANNOT::Meet(), IPAA_DF_SOLVER::Meet_direct_iter_1(), MEM_ACCESS_ANALYZER::MEM_ACCESS_ANALYZER(), MEM_Initialize(), mem_operand(), MEM_POOL_FREE(), MEM_POOL_Initialize_P(), MEM_POOL_Pop_P(), MEM_POOL_Pop_Unfreeze_P(), MEM_POOL_Push_Freeze_P(), MEM_POOL_Push_P(), MEM_POOL_Realloc_P(), MEM_STAT_In_List(), Mem_stride_ge_access(), DSE::Mem_WN_equiv(), DSE::Mem_WN_equiv_rec(), MemCtr_Add(), MemCtr_Criteria_Check(), MemCtr_Init(), Memop_Variant(), memory_barrier_intrinsic(), GLOBAL_ARRAY_LIST::Merge(), Merge_Across_Labels(), Merge_All_Splitted_Entry_and_Exit_BB(), merge_allocatable(), IF_CONVERTOR::Merge_Area(), merge_automatic(), Merge_Blocks(), IF_CONVERTOR::Merge_Blocks(), merge_co_array(), merge_data(), merge_dimension(), merge_equivalence_groups1(), merge_equivalence_groups2(), Merge_Execution_Cost(), merge_external(), Merge_Flds(), Merge_global_sections(), Merge_Global_St_Attr(), Merge_Global_Ty(), merge_intent(), merge_interfaces(), merge_intrinsic(), LABEL_ALIAS::Merge_label_alias(), RINIT::Merge_label_alias(), merge_optional(), merge_parameter(), merge_pointer(), Merge_Regions(), merge_save(), Merge_Section(), merge_target(), merge_ty(), Merge_Tylist(), merge_type(), merge_volatile(), Merge_With_Pred(), Merge_With_Succ(), mergee_intrinsic(), MFMC_Max_flow_arc_flow(), Middle_Loop_Pwr2_Group_Hack(), Min_Max_Fill_Proj_Node(), Min_Max_Fill_Region(), minfo(), minmax_operator(), minus_opr_handler(), minval_intrinsic(), Minvariant_Removal(), mips16_gprel_reloc(), mips16_jump_reloc(), mips_const_double_ok(), mips_count_memory_refs(), mips_ecoff_bad_format_hook(), mips_elf32_object_p(), mips_elf64_assign_gp(), mips_elf64_canonicalize_reloc(), mips_elf64_gprel16_reloc(), mips_elf64_gprel32_reloc(), mips_elf64_literal_reloc(), mips_elf64_slurp_one_reloc_table(), mips_elf64_slurp_reloc_table(), mips_elf_allocate_dynamic_relocations(), mips_elf_assign_gp(), mips_elf_calculate_relocation(), mips_elf_create_compact_rel_section(), mips_elf_create_dynamic_relocation(), mips_elf_create_got_section(), mips_elf_create_procedure_table(), mips_elf_gprel16_reloc(), mips_elf_gprel32_reloc(), mips_elf_initialize_tls_slots(), mips_elf_link_hash_newfunc(), mips_elf_literal_reloc(), mips_elf_local_relocation_p(), mips_elf_merge_gots(), mips_elf_multi_got(), mips_elf_n32_object_p(), mips_elf_output_extsym(), mips_elf_overflow_p(), mips_elf_perform_relocation(), mips_elf_record_global_got_symbol(), mips_elf_record_local_got_symbol(), mips_gprel_reloc(), mips_info_to_howto_rel(), mips_relocate_section(), mips_tls_got_relocs(), MIR_Add_Edge(), MIR_Build_Loop_List_Walk(), MIR_Dep_Subset(), MIR_Depv_Subset(), MIR_Has_Array_Kid(), MIR_Has_Messy_Subscript(), MIR_Hoist_Messy_Subscripts(), MIR_Hoist_Ref_If_Sensible(), MIR_Hoistable_Ref(), MIR_Messy_Subscript(), MIR_Ok_Hoist_Wn_Dependence(), MIR_REFLIST::MIR_REFLIST(), MIR_Replace(), MIR_Try_Hoist(), MIR_Update_Dependences(), SUMMARIZE< program >::Mismatched_load_store(), Mismatched_Types(), mk_fdrtab(), Mk_OP(), mld_intrinsic(), mldmx_intrinsic(), mmix_elf_add_symbol_hook(), mmix_elf_check_common_relocs(), mmix_elf_check_relocs(), mmix_elf_final_link(), mmix_elf_is_local_label_name(), mmix_elf_new_section_hook(), mmix_elf_relax_section(), mmix_elf_relocate_section(), mmix_elf_section_from_bfd_section(), mmo_canonicalize_symtab(), mmo_create_symbol(), mmo_get_section_contents(), mmo_get_symbols(), mmo_has_leading_or_trailing_zero_tetra_p(), mmo_init(), mmo_internal_add_3_sym(), mmo_internal_write_header(), mmo_internal_write_post(), mmo_internal_write_section(), mmo_mkobject(), mmo_new_section_hook(), mmo_scan(), mmo_set_section_contents(), mmo_write_chunk_list(), mmo_write_loc_chunk_list(), mmo_write_object_contents(), mmo_write_section_unless_reg_contents(), mmo_write_symbols_and_terminator(), mmx_intrinsic(), mn10200_elf_get_relocated_section_contents(), mn10200_elf_relax_section(), mn10200_elf_relocate_section(), mn10200_elf_symbol_address_p(), mn10300_elf_check_relocs(), mn10300_elf_final_link_relocate(), mn10300_elf_get_relocated_section_contents(), mn10300_elf_relax_section(), mn10300_elf_relocate_section(), mn10300_elf_symbol_address_p(), mod_intrinsic(), mod_iter(), CG_BROWSER::Mod_Ref_Formals(), LOOP_MODEL::Model(), Modify_16bit_Ops(), Modify_Asm_String(), modulo_intrinsic(), Modulo_Schedule(), movable_if_test(), movcc_fp_destination_operand(), SRC_BB_MGR::Move_Across_Or_Around_Rgns(), Move_Adjacent(), Move_Alloca(), move_blk_to_end(), move_destination_operand(), move_ext_is_replaced(), move_input_operand(), move_kid_for_mm_or_spread(), move_literal(), move_operand(), move_output_operand(), Move_Restore_Out_Of_LRANGE(), move_shared_literal(), move_source_operand(), Move_Spill_Code_Above_Region(), Move_Spill_Out_Of_LRANGE(), LOOP_RCE::Move_To_Epilog(), move_up_next_msg_queue(), Movnti_Top(), Mp_Basic_Parallel_Construct(), mp_directive_semantics(), Mp_Extract_Parallel_Directives(), Mp_File_Init(), MP_Fix_Dependence_Graph(), Mp_Fix_Deps(), MP_INFO::MP_INFO(), Mp_Layout_Code(), Mp_Optimize_Interleaved_Loop(), Mp_Permute_Nested_Loops(), MP_Problem(), MP_Reduction_Combine_Cycles(), Mp_Retained_Pragma(), Mp_Tile(), Mp_Tile_Loop(), Mp_Tile_Nested_Loop(), Mp_Tile_Single_Loop(), Mp_Tile_Traverse(), Mp_Tiling_Depth(), Mp_Version_Loop(), Mp_Version_Parallel_Region(), Mp_Want_Freeze_Cur_Threads(), Mp_Want_Version_Loop(), Mp_Want_Version_Parallel_Region(), mri_draw_tree(), msdos_set_section_contents(), msdos_write_object_contents(), msp430_elf_relax_section(), msp430_elf_symbol_address_p(), RVI_NODE::Mtype(), Mtype_Byte_Index(), Mtype_For_Type_Offset(), Mtype_from_class_size(), Mtype_from_mtype_class_and_size(), Mtype_from_opc(), Mtype_Index(), Mtype_Of_TN(), Mtype_to_Ukind(), mul_intrinsic(), mult_opr_handler(), Multi_Branch_Valid_BB(), Multi_Branch_Valid_OP(), multiple_clause_err(), Multiply_Will_Be_Strength_Reduced(), SX_INFO::Must_Finalize(), must_reassign_XT_temp(), mvbits_intrinsic(), MY(), my_pe_intrinsic(), RVI_NODE::Name(), NAME(), SYMBOL::Name(), namelist_resolution(), namelist_static_dv_whole_def(), NaN_Tcon(), narrow_instruction(), nchara_(), nearest_intrinsic(), DCE::Need_condbr_target_label(), ARA_LOOP_INFO::Need_Copyin(), Need_cvtl_for_store_to_preg(), SCHEDULER::Need_Resched_To_Obtain_Better_Performance(), Need_To_Split(), needs_argument(), needs_bounds_check(), Needs_Rename(), Needs_Spill(), Negate_BR_Variant(), Negate_Branch(), LRANGE::Neighbor_Count(), Nest_Model(), new_afile(), IP_ALIAS_CLASSIFICATION::New_alias_class(), new_arc_with_latency(), IP_ALIAS_CLASSIFICATION::New_base_id(), ALIAS_CLASSIFICATION::New_base_id(), new_block(), New_CallSite(), CHI_LIST::New_chi_node(), New_DACT(), New_DRA(), New_Fld_Path_Info(), RVI_NODE::New_home_wn(), New_Ori_Block(), New_Partial_Match(), IPO_SYMTAB::New_Symtab(), new_temp_st(), newline_intrinsic(), nex_data(), next_arg_is_kwd_equal(), next_id_is_imp_control(), EXEC_PATH_SET::Next_Path_Id(), next_real_field(), next_tok_is_paren_slash(), nint_intrinsic(), nlm_alpha_backend_object_p(), nlm_alpha_read_import(), nlm_alpha_read_reloc(), nlm_alpha_write_external(), nlm_alpha_write_import(), nlm_alpha_write_prefix(), nlm_i386_read_import(), nlm_i386_read_reloc(), nlm_i386_write_external(), nlm_i386_write_import(), nlm_mkobject(), nlm_powerpc_read_import(), nlm_powerpc_read_reloc(), nlm_powerpc_write_external(), nlm_powerpc_write_import(), nlm_sparc_read_import(), nlm_sparc_read_reloc(), nlm_sparc_write_export(), nlm_sparc_write_external(), nlm_sparc_write_import(), nlm_sparc_write_reloc(), No_alias(), no_inline_pu_with_nested_pus(), SCHEDULER::No_New_Cycle(), No_OP_Can_be_Moved_Across_Region(), ETABLE::No_replace(), No_Successor_Has_Restore(), No_truncation_by_value_size(), noce_init_if_info(), noce_operand_ok(), noce_process_if_block(), noce_try_abs(), noce_try_addcc(), noce_try_bitop(), noce_try_cmove(), noce_try_cmove_arith(), noce_try_minmax(), noce_try_move(), noce_try_sign_mask(), noce_try_store_flag(), noce_try_store_flag_constants(), noce_try_store_flag_inc(), noce_try_store_flag_mask(), Node_can_be_cloned(), EXEC_PATH::Node_In_Path(), BB_DAG_Callback::Node_Select(), Regioanl_DAG_Callback::Node_Select(), Node_Unbalanced(), ALIAS_CLASSIFICATION::Non_alloca_memop(), Non_Const_Loops(), non_const_move_operand(), Non_Default_Text_Section(), nonimmediate_di_operand(), nonimmediate_soft_df_operand(), nonzero_integer(), Normalize_BB_Frequencies(), Normalize_Branch_Target(), Normalize_Delay_Slots(), DEPV_NODE::Normalize_Step(), OPT_STAB::Not_affected_by_barrier(), LOOP_MULTIVER::Not_applicable(), ARA_LOOP_INFO::Not_Enough_Parallel_Work(), not_intrinsic(), not_opr_handler(), not_unrolled_note_handler(), not_visible_semantics(), notice(), nretca_(), Nrs_Var_Read(), NSE_Annotate_Array_Call(), NSE_Annotate_Scalar_Call(), ntabch_(), BB_NODE::Nth_pred(), BB_NODE::Nth_succ(), ntr_abnormal_ieee_const(), ntr_array_in_bd_tbl(), ntr_bnds_tmp_list(), ntr_const_tbl(), ntr_global_bounds_tbl(), ntr_global_type_tbl(), ntr_int_const_tbl(), ntr_stor_blk_tbl(), ntr_type_tbl(), null_intrinsic(), Null_Ptr_Deref_Spec(), nullify_stmt_semantics(), num_images_intrinsic(), numarg_intrinsic(), oasys_find_nearest_line(), oasys_new_section_hook(), oasys_object_p(), oasys_read_record(), oasys_set_section_contents(), oasys_slurp_section_data(), oasys_slurp_symbol_table(), oasys_write_data(), oasys_write_end(), oasys_write_header(), oasys_write_object_contents(), oasys_write_record(), oasys_write_sections(), oasys_write_syms(), OCC_ITER_LIST::OCC_ITER_LIST(), odd_fpr_operand(), odd_gpr_operand(), odd_reg_operand(), Offset_from_FP(), Olimit_Region_Insertion(), CODEREP::Omitted(), omp_extension_prefix(), OMP_File_Init(), omp_get_max_threads_intrinsic(), OMP_Prelower(), omp_set_lock_intrinsic(), One_Cache_Model(), DEPV_ARRAY::One_Equal_Through_Depth(), SYSTEM_OF_EQUATIONS::One_Var_Consistent(), Only_32bit_opnds(), Only_Has_Exc_Label(), OP1_Defs_Are_Killed_By_OP2(), OP1_Defs_Are_Used_By_OP2(), OP_baneful(), OP_Before_OP(), Op_can_be_propagated(), OP_can_change(), SCHED_SPEC_HANDSHAKE::OP_Can_not_be_Candidate(), OP_cannot_remove(), SCHEDULER::OP_def_GP(), OP_def_use_stack_regs(), op_defines_sp(), OP_Defs_Reg(), OP_Defs_TN(), OP_effectively_copy(), OP_has_disjoint_predicate(), OP_has_disjoint_predicate_cyclic(), OP_has_implicit_interactions(), CG_THR::OP_Has_Restrictions(), OP_Has_Restrictions(), OP_has_subset_predicate(), OP_has_subset_predicate_cyclic(), Op_In_Working_Set(), OP_Interferes_With_Vector(), OP_Is_Copy_From_Save_TN(), OP_Is_Copy_To_Save_TN(), CAND_LIST::OP_Is_In_Cand_List(), op_is_needed_globally(), OP_is_shared_memory(), OP_lookup_opnd(), OP_lookup_result(), OP_MAP32_Get(), OP_MAP64_Get(), OP_MAP_Get(), OP_not_in_list(), OP_not_live(), OP_Not_Suitable(), OP_Offset_Within_Limit(), OP_Reads_Dedicated_TN(), OP_Refs_Home(), OP_Refs_Reg(), OP_Refs_TN(), OP_Refs_TN_Reg(), OP_refs_x87(), OP_restore_predicates(), OP_save_predicates(), OP_Shadowed_By_Prev_OPs(), DAG_BUILDER::OP_Shadowed_By_Prev_OPs(), OP_use_sp(), OP_Writes_Dedicated_TN(), OPCODE_Can_Be_Speculative(), Opcode_cannot_be_pointer_value(), Opcode_Heuristic(), Opcode_Match(), REDUCTION_MANAGER::Opcode_Match(), OPCODE_To_TOP(), open_include_file(), open_input_bfds(), open_module_file(), open_mp_directive_semantics(), open_stmt_semantics(), openrisc_elf_check_relocs(), openrisc_elf_relocate_section(), Operand_type(), operation_is_intrinsic(), BIT_VECTOR::operator!=(), eq_tcon::operator()(), count_WHIRL_external_gots::operator()(), Opt_global_var::operator()(), Localize_Nested_PU_Exception_Region::operator()(), comp_same_pragma::operator()(), collect_use::operator()(), REMOVE_EMPTY_WORKLIST::operator()(), comp_same_pt::operator()(), leaf_is_not_cur_ver_pred::operator()(), Dont_Allocate_Dreg::operator()(), collect_def::operator()(), VECTOR_SPACE< T >::operator*=(), LOOP_TOPO_ITER::operator++(), VECTOR_SPACE< T >::operator-=(), NAME2BIT::operator<(), operator<(), EXEC_PATH::operator=(), EXEC_PATH_MGR::operator=(), UNRESOLVED_DEP_LST::operator=(), MEMOP_ANNOT_ITEM::operator==(), SUMPROD_NODE::operator==(), BIT_VECTOR::operator==(), NAME2BIT::operator==(), SYMBOL::operator==(), MIR_REFLIST::operator==(), SYMBOL_LIST::operator==(), DISTR_DIM::operator==(), ADDR_LINEAR_EXPR::operator==(), MA_OFFSET::operator==(), ACCESS_ARRAY::operator==(), PARTITION::operator==(), SUMPROD_LIST::operator==(), ST::operator==(), INTSYMB_LIST::operator==(), ACCESS_VECTOR::operator==(), EXEC_PATH_SET::operator>>(), EXEC_PATH_SET::operator>>=(), OPERATOR_has_chi(), OPERATOR_has_mu(), Operator_Is_Bool(), BITWISE_DCE::Operators_without_dependency(), Opnd_Tn_In_BB(), opt_error(), OPT_Error_Fmt(), opt_info(), Opt_memory_init_pools(), OPT_REVISE_SSA::OPT_REVISE_SSA(), OPT_STAB::OPT_STAB(), opt_verbose(), OPTCOUNT::OPTCOUNT(), Optimize_Branches(), Optimize_Copy_Usage(), Optimize_Placement(), optimize_reshape(), Optimize_Select(), Optimize_Tail_Calls(), optimize_whole_array_init(), or32_reloc(), Order_And_Classify_Blocks(), os9k_swap_exec_header_in(), Other_opnd(), Outer_LB_GE_Inner_UB(), Outer_Loop_Fusion_Phase(), Outer_Loop_Fusion_Walk(), Outer_Mp_Region(), Outermore_Parallel_Construct(), Outermore_Parallel_Construct_Or_Lego_Loop(), TRANSPOSE_DIRECTED_GRAPH16::Outermore_Parallelizable(), outmoded_if_stmt_semantics(), output_137(), output_138(), output_139(), output_140(), output_141(), output_166(), output_167(), output_169(), output_182(), output_183(), output_184(), output_36(), output_42(), Output_Character(), output_insn_code_cases(), output_mod_info_file(), output_one_cref(), ARA_LOOP_INFO::Overlap_Exposed_Array(), ARA_LOOP_INFO::Overlap_Exposed_Scalar(), ARA_LOOP_INFO::Overlap_Kill_Scalar(), ARA_LOOP_INFO::Overlap_Local_Array(), ARA_LOOP_INFO::Overlap_Local_Scalar(), ARA_LOOP_INFO::Overlap_Reduction_Scalar(), override_options(), SCHED_DFLOW_MGR::P_Ready_Moving_Against_These_Path_Kill_Live_Defs(), pack_intrinsic(), Pad_Common_Elements(), Pad_Dim(), Pad_Local_Array(), Pad_Local_Arrays_In_Whirl(), Pad_Multi_Dims(), Padding_Analysis(), Padding_Threshold(), Par_Region_Pragma_Block(), PAR_STAT::PAR_STAT(), parallel_cmic_semantics(), Parallel_Directive_Class(), PARALLEL_INFO::PARALLEL_INFO(), Parallel_Interchange(), PAR_STAT::Parallel_Overhead_Cost(), Parallelizable(), Parallelizable_At_Depth(), Parallelization_Process_Deps(), Parallelize_Doacross_Loop(), WN_Verifier::Param_parent_is_Call(), param_types_are_compatible(), paren_grp_is_cplx_const(), paren_opr_handler(), GOTO_TABLE::Parent_Through_If(), Parm_Type_Equal_To_Etype(), parse_access_stmt(), parse_actual_arg_spec(), parse_allocate_stmt(), parse_args(), parse_array_spec(), parse_assert_directive(), parse_assignment_stmt(), parse_attr_spec(), parse_attrs(), parse_backspace_stmt(), parse_block_stmt(), parse_buffer_stmt(), parse_cache_align_name_list(), parse_call_stmt(), parse_case_stmt(), parse_cc_add_opnd(), parse_cc_line(), parse_cc_mult_opnd(), parse_cc_operand(), parse_close_stmt(), parse_common_dirs(), parse_common_stmt(), parse_contains_stmt(), parse_cpnt_dcl_stmt(), parse_cycle_stmt(), parse_data_imp_do(), parse_data_stmt(), parse_deallocate_stmt(), parse_decode_stmt(), parse_define_str(), parse_deref(), parse_derived_type_stmt(), parse_die(), parse_dir_directives(), parse_directive_stmt(), parse_do_stmt(), parse_dollar_directives(), parse_dummy_args(), parse_else_stmt(), parse_encode_stmt(), parse_end_stmt(), parse_endfile_stmt(), parse_entry_stmt(), parse_equivalence_stmt(), parse_err_flush(), parse_exit_stmt(), parse_expr(), parse_expression(), parse_forall(), parse_function_stmt(), parse_functions_in_unit(), parse_generic_spec(), parse_goto_stmt(), parse_id_directive(), parse_if_stmt(), parse_imp_do(), parse_implicit_stmt(), parse_initializer(), parse_inline_always_never(), parse_inquire_stmt(), parse_int(), parse_int_spec_expr(), parse_intent_stmt(), parse_io_control_list(), parse_kind_selector(), parse_label_list(), parse_level_1(), parse_lhs(), parse_line_table(), parse_mic_directives(), parse_module_stmt(), parse_mp_directive(), parse_mult_opnd(), parse_namelist_stmt(), parse_nullify_stmt(), parse_only_spec(), parse_open_mp_clauses(), parse_open_mp_directives(), parse_open_stmt(), parse_operand(), parse_par_directives(), parse_parameter_stmt(), parse_pe_array_spec(), parse_pointer_stmt(), parse_prefix_spec(), parse_print_stmt(), parse_prog_unit(), parse_program_stmt(), parse_read_stmt(), parse_rewind_stmt(), parse_save_stmt(), parse_sgi_dir_inline(), parse_slash_common_dirs(), parse_star_directives(), parse_stmt_func_stmt(), parse_stop_pause_stmt(), parse_subroutine_stmt(), parse_type_dcl_stmt(), parse_type_spec(), parse_typed_function_stmt(), parse_use_stmt(), parse_var_name_list(), parse_where_stmt(), parse_write_stmt(), Partial_Compare_Arb(), Partial_Compare_Fld(), Partial_Match(), LU_MAT< T >::Particular_Solution(), PARTITION_GRAPH::PARTITION_GRAPH(), LOOP_MULTIVER::Pass_initial_screen(), pass_over(), GTABLE::Patch_Do_While(), Patch_Hot_Cold_Jumps(), EXEC_PATH_SET::Path_Id_Is_Valid(), Path_Resources_Available(), pcrel_constant_p(), pcrel_reloc_fits(), PDGCS_initialize(), pdp11_aout_link_input_section(), pdp11_aout_write_headers(), pe_array_dim_resolution(), pe_create_import_fixup(), pe_implied_import_dll(), pe_print_edata(), pe_print_idata(), pe_print_pdata(), pe_print_reloc(), pe_process_import_defs(), PER_PU_CACHE::PER_PU_CACHE(), Per_SNL_Shackle_Phase(), Perfectly_Nested(), Perform_Alias_Class_Annotation(), Perform_ARA_and_Parallelization(), LOOP_INVAR_CODE_MOTION::Perform_Code_Motion(), perform_constant_intrinsic_call(), ETABLE::Perform_deferred_ocopy_and_get_new_exprs(), Perform_Gather_Scatter(), Perform_Global_Schedule(), Perform_Inline_Script_Analysis(), Perform_Interprocedural_Analysis(), Perform_Interprocedural_Optimization(), Perform_Loop_Invariant_Code_Motion(), Perform_Loop_Nest_Optimization(), RVI::Perform_phase1(), RVI::Perform_phase2(), Perform_Post_GCM_Steps(), Perform_Read_Write_Removal(), Perform_SWP(), ETABLE::Perform_VNFRE_optimization(), IPA_CPROP_DF_FLOW::PerformCloning(), PERMUTATION_DESCRIPTOR::PERMUTATION_DESCRIPTOR(), PF_LOCLOOP::PF_LOCLOOP(), PF_UGS::PF_UGS(), pgm_unit_semantics(), Phase_123(), Phase_Init(), Pick_Load_Hint(), Pick_Load_Instruction(), Pick_Prefetch_Hint(), Pick_Store_Hint(), Pick_Store_Instruction(), SSA::Place_phi_node(), platform_is_64bit(), plus_opr_handler(), Pointer_Heuristic(), POINTS_TO::Pointer_info_does_help(), CYCLE_STATE::Polish_Tail(), pop_and_err_blk_stk(), OPTIONS_STACK::Pop_Current_Options(), Possible_Contiguous_Dope(), Possibly_Used_Outside_Program_Unit(), Post_loop_peeling(), Post_Multi_Branch(), Post_Process_Backend(), Postprocess_PU(), power_of_two_operand(), power_opr_handler(), pp_get_stmt(), ppc64_elf_adjust_dynamic_symbol(), ppc64_elf_brtaken_reloc(), ppc64_elf_build_stubs(), ppc64_elf_check_relocs(), ppc64_elf_create_dynamic_sections(), ppc64_elf_edit_opd(), ppc64_elf_edit_toc(), ppc64_elf_finish_dynamic_sections(), ppc64_elf_func_desc_adjust(), ppc64_elf_gc_mark_hook(), ppc64_elf_get_synthetic_symtab(), ppc64_elf_grok_prstatus(), ppc64_elf_grok_psinfo(), ppc64_elf_hide_symbol(), ppc64_elf_merge_private_bfd_data(), ppc64_elf_mkobject(), ppc64_elf_new_section_hook(), ppc64_elf_next_input_section(), ppc64_elf_relocate_section(), ppc64_elf_size_dynamic_sections(), ppc64_elf_size_stubs(), ppc64_elf_tls_optimize(), ppc_add_stub(), ppc_bfd_coff_final_link(), ppc_build_one_stub(), ppc_do_last(), ppc_elf_add_symbol_hook(), ppc_elf_adjust_dynamic_symbol(), ppc_elf_check_relocs(), ppc_elf_create_dynamic_sections(), ppc_elf_create_got(), ppc_elf_create_linker_section(), ppc_elf_grok_prstatus(), ppc_elf_grok_psinfo(), ppc_elf_merge_private_bfd_data(), ppc_elf_mkobject(), ppc_elf_relax_section(), ppc_elf_relocate_section(), ppc_elf_section_from_shdr(), ppc_elf_size_dynamic_sections(), ppc_elf_tls_optimize(), ppc_elf_tls_setup(), ppc_get_stub_entry(), ppc_size_one_stub(), ppcboot_canonicalize_symtab(), ppcboot_get_section_contents(), ppcboot_set_arch_mach(), PQS_Init_Memory(), PQS_MANAGER::PQS_is_disjoint(), PQS_MANAGER::PQS_is_disjoint_h(), PQS_MANAGER::PQS_is_disjoint_helper(), PQS_MANAGER::PQS_is_subset_of(), PQS_TN_MAP_TYPE::PQS_TN_MAP_TYPE(), PQS_TN_used_as_qual_pred(), PQSCG_init(), PQSCG_is_disjoint(), PQSCG_is_subset_of(), PQSCG_pqs_valid(), PQSCG_sets_results_if_qual_true(), PR_To_CR(), Pragma_Affects_Cflow(), Pragma_is_Parallel_Region(), Pragma_is_Work_Sharing(), Pragmas_For_Par_Region(), PRDB_GEN::PRDB_GEN(), PARTITION_GRAPH::Pre_Computing(), Pre_loop_peeling(), Pre_Optimizer(), pre_parse_format(), Preallocate_Single_Register_Subclasses(), preconditioning_head_note_handler(), Preconfigure_Target(), Pred_Opnd_Avail(), REGIONAL_CFG::Pred_Suit(), Pred_Thre(), Predicate_Block(), CIO_RWTRAN::Predicate_Write(), preferred_la_operand_p(), Prefetch_Driver(), Prefetch_Kind_Enabled(), Preg_Is_In_Clause_List(), PREG_To_TN(), Preorder_Process_PUs(), preorder_visit(), prep_headers(), Prepare_Axle(), Prepare_Loop_For_SWP_1(), Prepare_Loop_For_SWP_2(), Prepare_Source(), Prepare_Target(), SLIST::Prepend(), CLIST::Prepend(), Prepend_F77_Indented_Newline(), Prepend_Indented_Newline(), preprocess_only_driver(), Preprocess_PU(), prescan_options(), present_intrinsic(), EXEC_PATH_SET::Prev_Path_Id(), previous_mf_exists(), IP_ALIAS_CLASS_REP::Print(), GLOBAL_ARRAY_INFO::Print(), IPA_CALL_GRAPH::Print(), MEMOP_ANNOT_ITEM::Print(), PT_SET::Print(), FIZ_FUSE_INFO::Print(), DO_LOOP_INFO::Print(), POINTS_TO::Print(), SNL_ANAL_INFO::CONST_BOUNDS_INFO::Print(), MA_POINTER::Print(), ARRAY_DIRECTED_GRAPH16::Print(), LINEX::Print(), ACCESS_VECTOR::Print(), MA_OFFSET::Print(), EXP_OCCURS::Print(), FB_FREQ::Print(), MEM_RANGE::Print(), Print_All_BB_Headers(), ACCESS_VECTOR::Print_Analysis_Info(), CIO_RWTRAN::Print_Arcs(), Print_BB(), Print_BB_Header(), Print_BB_Info(), Print_BB_No_Srclines(), Print_BB_Pragmas(), print_buffered_messages(), IPA_CPROP_DF_FLOW::Print_constants(), print_defaults(), print_die_and_children(), IPA_FORMALS_IN_ARRAY_SECTION_DF::Print_entry(), Print_Entry_Chain(), CG_BROWSER::Print_Formal_Cprop_Annot(), Print_Goto_Lines(), PRINT_HOMING_INFO(), Print_inline_decision(), print_insn_big_arm(), print_insn_cris_without_register_prefix(), print_insn_crisv10_v32_without_register_prefix(), print_insn_crisv32_without_register_prefix(), print_insn_mips16(), Print_LOOPINFO(), INTERVAL_PROCESSOR::Print_Loops(), print_multi_reg(), print_multilib_info(), CODEREP::Print_node(), print_nxt_line(), print_one_die(), Print_OP(), Print_OP_No_SrcLine(), print_operand(), Print_Option_Group(), Print_pdom(), Print_Prompf_Msgs(), Print_Prompf_Nest_Log(), Print_Prompl_Msgs(), Print_SCC_Vec(), PF_LOOPNODE::Print_Splits(), Print_Src_Line(), print_stmt_semantics(), IPA_CALL_GRAPH::Print_vobose(), PRINTMSG(), PrintRange(), process_A_option(), process_actual_array_node(), process_actual_node(), process_all_initialized_cpnts(), Process_Alt_Entries_Local(), process_args(), Process_Array_Formals(), process_array_node(), process_b_option(), RAIL::Process_block(), Process_Bss_Data(), Process_Call(), Process_Cc1_Command_Line(), process_cmd_line(), Process_Command_Line(), Process_Command_Line_Group(), Process_cond_branches(), SUMMARIZE< program >::Process_control_dependence(), process_cpnt_inits(), UPDATE< TRANSFORM, CACHE, VERSION >::Process_CR_no_repeat(), process_d_option(), process_data_imp_do_target(), process_decls(), process_def_file(), process_deferred_io_list(), ESSA::Process_delayed_rename(), process_e_option(), CFG::Process_entry(), Process_fb_opt(), Process_fbuse(), Process_Fill_Align_Pragmas(), IPO_INLINE::Process_Formals(), Process_GDAR(), Process_global_call(), Process_Global_Distribute(), Process_Group_Register_Reference(), Process_If(), process_if_block(), Process_Initos_And_Literals(), Process_Inline(), Process_Inline_Options(), process_inqvar(), process_interchange_dir(), SUMMARIZE< program >::Process_IO(), process_iostat(), Process_IPA_Options(), Process_IPA_Skip_Options(), Process_IPA_Specfile_Options(), Process_Load(), PF_LOOPNODE::Process_Loop(), process_M_option(), DISTRIBUTION::Process_Memory(), process_minus(), CFG::Process_multi_entryexit(), process_N_option(), Process_New_OPs(), process_O_option(), IVR::Process_one_loop(), Process_Pair(), Process_Parallel_Do(), Process_Parallel_Region(), process_paren_group(), Process_PDO(), OPTIONS_STACK::Process_Pragma_Options(), Process_Preg_Temps(), SUMMARIZE< program >::Process_procedure(), Process_PU_Pragmas(), process_r_option(), RINIT::Process_region(), process_reshape_array(), process_S_option(), process_scalar_node(), Process_Store(), process_t_option(), Process_Targ_Group(), Process_Trace_Option(), process_U_option(), process_u_option(), process_variable_size_func(), process_X_option(), process_x_option(), ARA_LOOP_INFO::Processed(), Processor_2D_Tile_Loop(), Processor_3D_Tile_Loop(), Processor_Update_Inner_Tile(), Proj_Node_Has_Two_Strides(), PROJECTED_KERNEL::Project(), KERNEL_IMAGE::Project(), SYSTEM_OF_EQUATIONS::Project(), PROJECTED_REGION::PROJECTED_REGION(), Projected_Region_From_Access_Array(), Projected_Region_From_St(), ARA_LOOP_INFO::Projection(), prolog_note_handler(), Promote_Pointer(), Prompf_Id_Type(), PROMPF_INFO::PROMPF_INFO(), PROMPF_INFO::Prompf_Info_Traverse(), Prompf_Init(), Prompf_Mp_Version(), Prompf_Tile_Split(), COPYPROP::Prop_const_init_scalar(), COPYPROP::Prop_ivar(), CODEREP::Propagatable_along_path(), CODEREP::Propagatable_for_ivr(), CODEREP::Propagatable_into_loop(), COPYPROP::Propagatable_thru_phis(), Propagate_16bit_Info(), Propagate_Constants(), EXP_WORKLST::Propagate_downsafe(), Propagate_Feedback(), Propagate_global_vals(), Propagate_into_stmt(), EDGE_PROFILE::Propagate_Node_In(), EDGE_PROFILE::Propagate_Node_Out(), DCE::Propagate_return_vsym_cr(), Propagate_Save_Restore_State(), Propagate_vals_in_unstructured_cflow(), WN_Verifier::Proper_Block_Structure(), SYSTEM_OF_EQUATIONS::Prove_Redundant(), PRUNE_BOUND::PRUNE_BOUND(), PRUNE_BOUND::Prune_boundary_sets(), Prune_Redundant_Trues(), PT_SET::PT_SET(), Ptr_as_String(), ptr_assign_from_ptr(), PU_adjust_addr_flags(), SWP_OPTIONS::PU_Configure(), PU_Deleted(), PU_has_messy_regions(), PU_is_dead(), PURIFY_OPT_Initialize(), output_queue::push(), SORTED_MAP< KEY, RANGE >::push_back(), push_data_value(), Push_Equiv_Visit_Order(), SD_INFO::Push_Memory_Nodes(), Push_Scope_Cleanup(), put_location(), Put_Pragma_Start_With_Caveats(), put_string_in_tmp(), pvp_isnormal(), quad_fpr_operand(), SCHED_SEQ::Qualified(), Query_Skiplist(), r_apply_l_const(), r_assemble_binary(), r_assemble_list(), r_assemble_op(), r_reloc_is_defined(), EMITTER::Raise_altentry(), Raise_doloop_stmt(), Raise_unknown_stmt(), Raise_whiledo_stmt(), random_number_intrinsic(), random_seed_intrinsic(), ranf_intrinsic(), ranget_intrinsic(), read_byte(), CIO_RWTRAN::Read_CICSE_Candidate_Op(), CIO_RWTRAN::Read_CICSE_Write_Removal(), read_compiler_defaults(), read_in_module_tbl(), read_line(), Read_Local_Info(), read_module_tbl_header(), Read_Pragma_Distribute(), Read_Pragma_Distribute_Reshape(), Read_Pragma_Redistribute(), Read_Pragma_Thread_Affinity(), read_pu_including_parents(), read_sleb128(), read_specs(), read_stmt_semantics(), read_sytb_from_module_file(), read_table(), read_uleb128(), Readers_Reach(), readonly_dynrelocs(), readsm_intrinsic(), real_intrinsic(), realsymbol(), Record_And_Del_Loop_Region(), record_arm_to_thumb_glue(), SUMMARIZE< program >::Record_ref(), Record_scalar_flow(), record_section(), SUMMARIZE< program >::Record_struct_access(), record_thumb_to_arm_glue(), recover(), ETABLE::Recursive_rehash_and_replace(), recursive_ty_hash(), STMTREP::Redefines_var(), PARTITION_GRAPH::Reduce(), Reduction_Operator(), Redundancy_Elimination(), Redundant_Condition(), BITWISE_DCE::Redundant_cvtl(), Redundant_Logif(), Redundant_Pragma(), Ref_Contains_Reuse_For_Loop(), Ref_Is_Significant(), ref_iter(), References_Some_Label(), CODEREP::References_var(), STMTREP::References_var(), reg_alloc(), REG_LIVE_Prolog_Temps(), reg_or_0_operand(), reg_scan(), reg_scan_update(), REGION::REGION(), REGION_add_preg_in(), REGION_add_preg_out(), Region_Compare(), Region_Contains_BB(), REGION_CS_ITER_init(), REGION_CS_NoEarlierSub_Next(), REGION_delete_exit(), REGION_Exit_PREG_Whirl(), REGION_Exit_Whirl_Labels(), Region_Has_Prompf_Construct(), REGION_INFO::REGION_INFO(), REGION_init(), RINIT::Region_init(), REGION_Initialize(), Region_Intersect(), Region_Is_Illegal(), REGION_kind_to_type(), Region_LRANGEs_Referenced(), REGION_MAP_create_kind(), REGION_MAP_grow(), OPT_STAB::REGION_merge_aux_id_points_to(), REGION_remove_preg(), REGION_replace_from_mark(), REGION_scan_exits(), REGION_search_preg_set(), Region_skip(), Region_TN(), REGION_type_to_kind(), REGION_update_alias_info(), REGIONAL_CFG::REGIONAL_CFG(), REGIONAL_CFG_NODE::REGIONAL_CFG_NODE(), Regions_Distributed_Orthogonally(), Regions_Distributed_Similarly(), REGISTER_Allocate_Stacked_Register(), REGISTER_First_Rotating_Registers(), REGISTER_Get_Requested_Rotating_Registers(), REGISTER_Get_Stacked_Avail_Set(), REGISTER_Has_Rotating_Registers(), REGISTER_Has_Stacked_Registers(), SD_INFO::Register_ILoad(), REGISTER_Init_Stacked(), REGISTER_Is_Allocatable_Stacked_Register(), REGISTER_Is_Rotating(), REGISTER_Is_Stacked(), REGISTER_Is_Stacked_Local(), REGISTER_Is_Stacked_Output(), SD_INFO::Register_IStore(), REGISTER_Last_Rotating_Registers(), SD_INFO::Register_Ldid(), REGISTER_Number_Stacked_Local(), REGISTER_Number_Stacked_Output(), REGISTER_Number_Stacked_Registers_Available(), REGISTER_Number_Stacked_Rotating(), LOOP_INVAR_CODE_MOTION::Register_Para_Passing(), REGISTER_Pu_Begin(), REGISTER_Request_Stacked_Register(), REGISTER_Request_Stacked_Rotating_Register(), REGISTER_Reserve_Rotating_Registers(), REGISTER_SET_ContainsP(), REGISTER_SET_EmptyP(), REGISTER_SET_EqualP(), REGISTER_Set_Stacked_Output_Minimum(), REGISTER_Stacked_Output_Name(), SD_INFO::Register_Stid(), REGISTER_Translate_Stacked_Output(), Register_Type_Name(), REGISTER_Unallocate_Stacked_Register(), CODEMAP::Rehash(), COPYPROP::Rehash_inverted_expr(), CODEMAP::Rehash_tree(), Rehash_tree_rec(), relational_di_operator(), relax_property_section(), relax_section(), IP_ALIAS_CLASSIFICATION::Release_resources(), ALIAS_CLASSIFICATION::Release_resources(), relocations_reach(), remainder_head_note_handler(), Rematerializable_IntConst(), Rematerialize_GRF(), remember_hi16s_reloc(), remote_write_barrier_intrinsic(), CFG::Removable_bb(), MEMOP_ANNOT::Remove(), CFG::Remove_agoto_pred(), Remove_Branches(), LFTR::Remove_comp_occur(), LFTR::Remove_comparison(), remove_dead_literal(), DCE::Remove_dead_statements(), DU_MANAGER::Remove_Def_From_System(), remove_do_parallel_blk(), Remove_Floor_From_One_Sided_Cond(), REGIONAL_CFG::Remove_From_Entries(), REGIONAL_CFG::Remove_From_Exits(), GTABLE::Remove_Gotos(), GOTO_TABLE::Remove_Gotos(), Remove_Invariant_Predicates(), ARRAY_REF_LIST::Remove_Invariants(), Remove_Notations_With_Copies(), Remove_Notations_Without_Copies(), EXP_WORKLST::Remove_occurs(), remove_pdo_blk(), ETABLE::Remove_real_occurrence(), EXP_WORKLST::Remove_real_occurrence(), Remove_region_exit(), Remove_Unity_Trip_Loop(), LabelOpt::Remove_Unmarked_Labels(), Remove_Unnecessary_Check_Instrs(), DCE::Remove_unreached_statements(), DU_MANAGER::Remove_Use_From_System(), SSA::Rename(), ESSA::Rename(), SSU::Rename(), Rename_INITV_Labels(), rename_only_semantics(), Rename_Privatized_COMMON(), Rename_TNs_For_BB(), Rename_Update_MP_Region(), FAVOR_DELAY_HEUR::Renaming_Is_Profitable(), Reorder_Blocks(), Repair_Call_BB(), CSE::Repair_injury_rec(), repeat_intrinsic(), repeat_operand(), Repl_Size16_Instr::Replace_ABS(), Repl_Size16_Instr::Replace_ADDI(), Repl_Size16_Instr::Replace_BR(), LFTR::Replace_comparison(), DCE::Replace_condbr_with_uncondbr(), DCE::Replace_control_dep_succs(), Repl_Size16_Instr::Replace_Direct_OP(), Replace_Formal_By_Actual(), GTABLE::Replace_Goto_With_While(), IVR::Replace_IV_with_invar(), Repl_Size16_Instr::Replace_LdSt_OP(), Repl_Size16_Instr::Replace_LDU(), Repl_Size16_Instr::Replace_NOP(), ETABLE::Replace_occurs(), MEMOP_ANNOT::Replace_or_add(), Repl_Size16_Instr::Replace_ResEqOper_OP(), Repl_Size16_Instr::Replace_Restricted_Imm_OP(), CIO_RWTRAN::Replace_Tn(), Replace_Wnexp_With_Exp_Copy(), Repl_Size16_Instr::Replaceable_TOP_Imm(), GROUP_ASSEMBLE::ReplaceMLX(), WN_UNROLL::Replicate_expr(), WN_UNROLL::Replicate_stmt(), DCE::Required_asm(), DCE::Required_bb(), CG_BROWSER::Required_Fields_Present(), WB_BROWSER::Required_Fields_Present(), DSE::Required_istore(), DCE::Required_istore(), DSE::Required_load(), DCE::Required_phi(), DCE::Required_pragma(), Required_pragmas_for_region(), DSE::Required_stid(), DCE::Required_stmt(), DCE::Required_store(), Requires_edge_placement(), Reschedule_BB(), reserv_sets_are_intersected(), LOOP_MULTIVER::Reset_aggressive_mode(), TRANSPOSE_DIRECTED_GRAPH16::Reset_Can_Be_Parallel(), Reset_cd_and_stmt(), DFBASE::Reset_changed(), SUMMARY_DESC::Reset_convertible_to_global(), LI_OP_INFO::Reset_Def_Loop_Invar(), COPYPROP::Reset_disabled(), ANL_DIAGNOSTICS::Reset_Error_Condition(), BB_LOOP::Reset_has_entry_guard(), IPA_LNO_SUMMARY_PROCEDURE::Reset_Has_Incomplete_Array_Info(), PT_SET::Reset_has_unknown_pt(), Reset_Homing_Load(), Reset_Homing_Store(), SUMMARY_DESC::Reset_is_addr_of(), GLOBAL_ARRAY_LIST::Reset_is_messy(), VN_IVC::reset_literal_ofst(), LI_TN_INFO::Reset_Loop_Invar(), CALL_INFO::Reset_Needs_Evaluation(), COPYPROP::Reset_past_ret_reg_def(), CODEMAP::Reset_phi_hash_valid(), SUMMARY_VALUE::Reset_remove_param(), CG_BROWSER::Reset_Subcommand(), WB_BROWSER::Reset_Subcommand(), ARRAY_TRANSPOSE_DESCRIPTOR::Reset_Transposable(), BB_LOOP::Reset_valid_doloop(), VALNUM_FRE::reset_valnum(), OPT_PU_POINTS_TO_SUMMARIZER::VER_ID_VISIT_CNT::Reset_visited(), BB_LOOP::Reset_well_formed(), reshape_intrinsic(), RESHAPE::Reshapeable_Passed_Section(), resolve_all_components(), resolve_attr(), Resolve_Conditional_Branch(), resolve_ext_opr(), resolve_used_modules(), rest_of_compilation(), rest_of_handle_local_alloc(), rest_of_handle_old_regalloc(), rest_of_handle_sms(), PROMPF_INFO::Restore(), GRA_BB::Restore_Below_Check(), RESTRICTED_MAP::Restore_info(), Restore_Routine_Top_Ctrls(), Result_Tn_In_BB(), SSA::Resurrect_chi(), Return_Heuristic(), return_stmt_semantics(), return_types_are_compatible(), RETYPE_EXPR_expr(), RETYPE_EXPR_stmt(), Reuse_Exists_For_Loop_For_Array(), Reuse_Exists_In_Loop(), TOPO_ITER::rev_topo_sort(), rewind_stmt_semantics(), Rewrite_Bounds(), Rewrite_Pragmas_On_Structs(), Rewrite_Structs_In_MPRegion(), RGN_Add_Regional_Cfg_Edge(), RGN_Del_Regional_Cfg_Edge(), RGN_Gen_And_Insert_BB(), RGN_SUMMARY::RGN_SUMMARY(), ETABLE::RHS_is_fully_avail(), RID_Find_Cginfo(), RID_level_str(), RID_preopt_level(), RID_replace(), RID_unlink(), CYCLE_STATE::Risky(), round(), Row_Echelon(), rrspacing_intrinsic(), rs6000_emit_prologue(), rs6000_initialize_trampoline(), rs6000_output_function_epilogue(), rs6000_output_function_prologue(), rtc_intrinsic(), rtl_find_values_to_profile(), rtl_value_profile_transformations(), run_compiler(), run_phase(), run_prof(), RV_Array_Legal(), RV_Array_Node_Legal(), RV_Depv_Is_Reversable(), RV_Easy_Bounds(), RV_Evaluate(), RV_Index_Sign(), RV_Is_Legal(), RV_Scalar_Legal(), RV_Scalar_Node_Legal(), RV_Sign(), RV_Tree_Has_All_Backward_Indices(), RV_Tree_Has_All_Written_Indices(), RVI::RVI(), RVI_EMIT::RVI_EMIT(), CODEREP::Rvi_home_wn(), RVI_LR_INFO::RVI_LR_INFO(), s390_decompose_address(), s390_plus_operand(), s_lno_debug(), SA_Loop_Has_Dependence_Cycles(), SA_Set_SimdOps_Info1(), SA_Set_SimdOps_Info2(), SA_Version_F90_Loops_For_Contiguous(), Safe_To_Rematerialize_Load(), Safe_To_Rematerialize_Load_In_BB(), ALIAS_MANAGER::Safe_to_speculate(), Same_addr_expr(), POINTS_TO::Same_base(), ESSA::Same_base_diff_offset(), ESSA::Same_base_same_offset(), SINGLE_ARRAY_REF_PREF::Same_Base_Symbol(), CODEREP::Same_bitpos(), ESSA::Same_e_version_phi_result(), ESSA::Same_e_version_real_occ_phi_opnd(), ESSA::Same_e_version_real_occ_real_occ(), Same_File(), Same_Global_Value(), Same_Invariant_Expression(), STMTREP::Same_lhs(), ALIAS_RULE::Same_location(), Same_Location(), DSE::Same_memloc(), DEPV_COMPUTE::Same_Monotonic(), same_name_lists(), Same_OPS(), DEPV_COMPUTE::Same_Permutation(), POINTS_TO::Same_pointer(), Same_Shape(), Same_store_target(), Same_Ug(), Sandwiched_Code_Sinkable_In(), Sandwiched_Code_Sinkable_Out(), sanity_check_loop_body(), IVR::Satisfy_primary_IV(), save_array_syntax_subscripts(), save_buf_at_offset(), CSE::Save_real_occurrence(), Save_Symbol_Name(), EXP_WORKLST::Save_use_cr(), Scalar_Def_Covered_In_Loop(), scalar_dope_to_scalar(), Scalar_Equivalence_Class(), Scalar_Expand(), Scalar_Expandable(), Scalar_Expansion_Not_Necessary(), Scalar_Expr(), Scalar_Interferes(), Scalar_Queue_Contains_Scalar(), scalar_rename(), Scalar_Variable_Renaming(), Scale_FB_Parallel_Do(), scale_intrinsic(), scan(), scan_960_mach(), scan_cc_line(), Scan_Complement_BB_For_Referenced_TNs(), scan_fixed_comment(), scan_fortran_macro(), scan_fortran_stmt(), scan_mach(), Scan_Parameters(), scan_unit_for_functions(), SCC_DIRECTED_GRAPH16::SCC_DIRECTED_GRAPH16(), SCC_reorder(), SCHED_ANNOT::SCHED_ANNOT(), SCHED_MEM::SCHED_MEM(), SCHEDULER::Sched_Rgn_Preproc(), SCHEDULER::Schedule_BB(), SCHEDULER::Schedule_Cycle(), KEY_SCH::Schedule_DDG(), HB_Schedule::Schedule_HB(), SCHEDULER::Schedule_Region(), Scl_Dep_Info(), SCLASS_Is_Not_PU_Local(), CFG::Screen_cand(), CG_BROWSER::Sdebug(), WB_BROWSER::Sdebug(), SE_CT_New_Tile_Infos(), SE_Easy_Loop(), SE_Guard_Tests(), Search_for_summary_stmt(), SEC_is_gprel(), SEC_is_tls(), section_cache_section(), section_semantics(), FAVOR_DELAY_HEUR::Select_Best_Candidate(), Select_Best_Fld_Path(), Select_Blocks(), IF_CONVERTOR::Select_Candidates(), REGIONAL_CFG::Select_Freq_Connected_Node(), REGIONAL_CFG::Select_Freq_Pred(), REGIONAL_CFG::Select_Freq_Succ(), select_stmt_semantics(), selected_int_kind_intrinsic(), selected_real_kind_intrinsic(), Self_Dependent_Store(), REDUCTION_MANAGER::Self_Dependent_Store(), semantics_pass_driver(), send_attr_ntry(), send_dummy_procedure(), send_label_def(), send_procedure(), Separate(), Separate_And_Update(), separate_debug_file_exists(), CODEMAP::Separate_iv_invar(), separate_loop_and_scalar_expand(), separate_loop_by_scc(), ACCESS_VECTOR::Set(), MEM_RANGE::Set_access_range(), Set_addr_saved_stmt(), Set_Addr_Taken_Attrib(), ACCESS_ARRAY::Set_Array(), set_attr_flds_for_output(), AXLE_NODE::Set_Axle(), AXLE_NODE::Set_Axle_Le(), FAVOR_DELAY_HEUR::Set_BB_Need_Not_Adjusting_Delay(), Set_Caller_Actual_Messy(), Set_Caller_Annot_Messy(), SRC_BB_INFO::Set_Cannot_Donate_P_Ready_Cand(), set_collect_gcc_options(), set_compile_info_for_target(), ACCESS_VECTOR::Set_Condition(), Set_Constant_Dimensions(), Set_Current_Scope_Has_Alloca(), Set_Dim_Shackleable(), set_directives_on_label(), EST_REGISTER_USAGE::Set_Does_Not_Fit(), Set_Error_Descriptor(), DO_LOOP_INFO::Set_Est_Num_Iterations(), set_explicit_lang(), set_exponent_intrinsic(), IF_CONVERTOR::Set_Fall_Thru(), EST_REGISTER_USAGE::Set_Fits(), Set_Freq(), OPT_STAB::Set_FSA(), set_function_rslt(), IPA_NODE_SECTION_INFO::Set_Global_Array_List_To_Messy(), set_got_entry(), set_ieee_exception_intrinsic(), ACCESS_ARRAY::Set_IF(), GOTO::Set_inside(), ACCESS_ARRAY::Set_LB(), ACCESS_ARRAY::Set_LB_r(), PROJECTED_NODE::Set_linex_eq(), PROJECTED_NODE::Set_linex_le(), PROJECTED_NODE::Set_linexs(), set_mod_link_tbl_for_attr(), ARA_REF::Set_No_Last_Value(), CODEREP::Set_opnd(), set_phase_dir(), Set_Prob(), set_prog_file_names(), REGION::Set_Region(), PROJECTED_REGION::Set_region(), Set_Register_Never_Allocatable(), DSE::Set_Required_CHI(), DSE::Set_Required_PHI(), Set_Runtime_Call_Side_Effects(), set_segment_start(), Set_Shackle_Size_Info(), Set_Shackleable(), set_shape_for_deferred_funcs(), Set_ST_formal_preg_num(), set_stmt_type_known(), set_stride_for_first_dim(), RGN_SUMMARY::Set_Summary_Is_Invalid(), Set_Target_ABI(), Set_Tcon_Value(), DAG_BUILDER::Set_TN_BB_Bitset_Table(), Set_TN_Memory_Space_From_Variant(), ARA_LOOP_INFO::Set_To_Sequential(), Set_Trace_File(), ACCESS_ARRAY::Set_UB(), set_up_allocate_as_call(), Set_Up_Equivalence_Class(), Set_Up_Equivalence_Classes(), set_up_logical_constant(), set_up_which_entry_tmp(), Set_volatile_map(), set_volatile_mapCR(), Set_Winddown_Annotations_B(), Setup_GP_TN_For_PU(), setup_group(), setup_interchange_level_list(), Setup_Live_Ranges(), setup_ops(), setup_renumber(), Setup_Struct_Parameter_Locations(), Setup_Text_Section_For_BB(), Setup_Text_Section_For_PU(), sfpr_define(), sh64_address_in_cranges(), sh64_backend_section_from_shdr(), sh64_bfd_elf_copy_private_section_data(), sh64_elf64_add_symbol_hook(), sh64_elf64_adjust_dynamic_symbol(), sh64_elf64_create_dynamic_sections(), sh64_elf64_finish_dynamic_sections(), sh64_elf64_size_dynamic_sections(), sh64_elf_add_symbol_hook(), sh64_elf_merge_private_data(), sh64_elf_new_section_hook(), sh64_elf_section_flags(), sh64_elf_set_mach_from_flags(), sh64_get_contents_type(), sh_align_loads(), sh_coff_get_relocated_section_contents(), sh_elf64_check_relocs(), sh_elf64_get_relocated_section_contents(), sh_elf64_merge_private_data(), sh_elf64_relocate_section(), sh_elf64_set_mach_from_flags(), sh_elf_adjust_dynamic_symbol(), sh_elf_align_loads(), sh_elf_check_relocs(), sh_elf_create_dynamic_sections(), sh_elf_finish_dynamic_sections(), sh_elf_get_relocated_section_contents(), sh_elf_merge_private_data(), sh_elf_mkobject(), sh_elf_relax_delete_bytes(), sh_elf_relax_section(), sh_elf_relocate_section(), sh_elf_set_mach_from_flags(), sh_elf_size_dynamic_sections(), sh_elf_swap_insns(), sh_init_cumulative_args(), sh_insn_sets_freg(), sh_insn_sets_reg(), sh_insn_uses_freg(), sh_insn_uses_reg(), sh_insns_conflict(), sh_load_use(), sh_merge_bfd_arch(), sh_relax_delete_bytes(), sh_relax_section(), sh_relocate_section(), sh_swap_insns(), SHACKLE_INFO::SHACKLE_INFO(), SHACKLE_Phase(), Shackle_Scalars_Do_Privatize(), Shackle_Scalars_Privatizable(), Shackle_Unseen_Highest_Enclosing_If(), Shackleable_Ifs_Surrounding_Stmt(), Shackleable_Refs_From_Stmt_In_Chain(), CANDIDATE::Shadowed_By_P_Ready_Bookeeping(), shape_intrinsic(), Shape_Mismatch_At_Common(), Shape_Mismatch_At_Formal(), shift_intrinsic(), shift_operator(), shiftable_operator(), shl_add_sequence(), shmedia_prepare_reloc(), short_circuit_branch(), short_circuit_high_level_if(), short_memory_operand(), Shorten_Critical_Recurrence_By_Reassociation(), DEPV_ARRAY::Shorten_To_Dep(), IPA_NODE::Should_Be_Skipped(), output_queue::should_flush(), Should_Skip(), REGION_TREE::Shrink(), shrink_dynamic_reloc_sections(), Shrink_to_32bit(), sibcall_operand(), sign_bit(), Sign_extended(), sign_intrinsic(), Signal_Cleanup(), signed6_operand(), Simd(), Simd_Add_Shuffle_For_Negative_Coefficient(), Simd_Align_Generate_Peel_Loop(), Simd_Align_UB_Variable(), Simd_Analysis(), Simd_Benefit(), Simd_Copy_Def_Use_For_Loop_Stmt(), Simd_Create_Remainder_Loop(), Simd_Finalize_Loops(), simd_fis_merge_scc_to_form_new_loop(), simd_fis_separate_loop_and_scalar_expand(), Simd_Good_Reduction_Load(), Simd_Handle_Negative_Coefficient(), simd_operand_kind(), Simd_Phase(), Simd_Pre_Analysis(), Simd_Vectorize_Induction_Variables(), Simd_Vectorize_Scalar_Reduction(), Simd_Vectorize_SimdOp_And_Kids(), POINTS_TO::Similar(), Similar_BE_Types(), Similar_Ptr_Addrs_Match(), Similar_Ptr_Offset_ok(), simp_add_sub(), simp_band(), simp_bior(), simp_bxor(), simp_cvtl(), simp_land(), simp_relop(), simp_shift(), Simple_Chain_Shackle_Case(), Simple_Cost_Traverse(), Simple_Cost_Value(), DEPV_COMPUTE::Simple_Gcd_Indep(), simple_memory_operand(), SYSTEM_OF_EQUATIONS::Simple_Redundant(), RG_LIST::Simplify(), VN_INTR_OP_EXPR::simplify(), Simplify_If_Conditional(), PQS_MANAGER::Simplify_In_Set(), PQS_MANAGER::Simplify_TNI_Set(), SIMPNODE_SimplifyExp1(), SIMPNODE_SimplifyIntrinsic(), Simulated_Op_Real_Inst_Words(), sin_intrinsic(), Single_Definition_Uses(), Single_Loop_Coeff(), single_reg_memory_operand(), Sink_If2do(), Sinkable_Into_Loop(), Sinkable_Out_Of_Loop(), size_intrinsic(), size_offset_binary_calc(), size_offset_logical_calc(), size_offset_min_max_calc(), Size_To_MTYPE(), sizeof_intrinsic(), sizeof_kind(), skip_bytes(), skip_cfa_op(), Skip_Ignored_Clauses(), skip_leb128(), Skip_Loop_For_Reason(), Skip_Pragma_Clauses(), slurp_reloc_table(), slurp_symbol_table(), smalloffset_double_mem_p(), smalloffset_mem_p(), SNL_All_Parallelizable(), SNL_Auto_Parallelization(), SNL_Bad_Scalars_Are_Distributable(), SNL_Bound_Worth_Optimizing(), SNL_Contains_Ge2_Do_Loops(), SNL_Depv_Is_LCD(), SNL_Depv_Is_Permutable(), SNL_Dir_Cannot_Interchange(), SNL_Distribute(), SNL_Distribute_By_Splitting(), SNL_Distribute_For_Permutation(), SNL_Finalizable_Loops(), SNL_Fix_Array_Deps_On_Index_Variable(), SNL_Fix_Blockable_Dependendences_Traverse(), SNL_GEN_2D_Regtile(), SNL_GEN_Distribute(), SNL_GEN_Distribution(), SNL_GEN_Protect_Nest_With_Conditionals(), SNL_GEN_Scalar_Expand(), SNL_GEN_U_Ctiling(), SNL_Good_Perm_Loops(), SNL_Has_Sandwiched_Code(), SNL_INFO::SNL_INFO(), SNL_Inner_Cache_Cost(), SNL_Inner_Machine_Cost(), SNL_INV_Cache_Block(), SNL_INV_Compact_Scalar_Expand(), SNL_INV_Distribute(), SNL_INV_Distribute_Block_Of_Loops(), SNL_INV_Limited_Scalar_Expand_And_Distribute(), SNL_INV_Limited_SE_And_Dist(), SNL_INV_Local_Permute_Loops(), SNL_INV_Register_Tile(), SNL_INV_Scalar_Expand(), SNL_INV_Transforms(), SNL_Is_Distributable(), SNL_Is_Distributable_Traverse(), SNL_Is_Distributable_Tree(), SNL_Is_Invariant(), SNL_Is_Non_Varying_Access_Array(), SNL_Is_Transformable(), SNL_LB_Worth_Optimizing(), SNL_Legal_Perm_Array(), SNL_Legal_Perm_Arrays(), SNL_Legal_Perm_Bounds(), SNL_Legal_Perm_Deps(), SNL_Legal_Perm_Scalar(), SNL_Legal_Perm_Scalars(), SNL_Legal_Permutation(), SNL_Legal_Tile_Arrays(), SNL_Legal_Tile_Scalars(), SNL_Lift_Lego_Tile_Loops_Once(), SNL_NEST_INFO::SNL_NEST_INFO(), SNL_Parallel_Serial_Order_OK(), SNL_Parallelization_Costs(), SNL_Peel_Iteration(), SNL_Perm_Retained_Section(), SNL_Permutation_Is_Distributable(), SNL_Permutation_Needs_Distribution(), SNL_Phase(), SNL_Regtile_Loop(), SNL_SPL_Fix_Inner_Loop_Limits(), SNL_SPL_Fix_Second_Outer_Loop_Limits(), SNL_SPL_Is_Tile_Plus_Constant(), SNL_SPL_Loop_Is_Inner_Tile(), SNL_SPL_Split_Tile_Sets(), SNL_Test_Reduction_Lexneg(), SNL_Transform(), SNL_UB_Worth_Optimizing(), SNL_UBexp(), SNL_Update_Strip_Dependence(), Soe_Implies_Access_Vector(), soft_df_operand(), TRANSPOSE_DIRECTED_GRAPH16::Solve(), Solve_For(), CIO_RWTRAN::Sort_Arcs(), Sort_Equivalence_Class(), Sort_Invar_Expressions(), sort_merge_and_delete_zones(), CIO_RWTRAN::Sort_Ops(), sort_topologically(), Space_Enum(), spacing_intrinsic(), sparc64_elf_add_symbol_hook(), sparc64_elf_adjust_dynamic_symbol(), sparc64_elf_canonicalize_reloc(), sparc64_elf_check_relocs(), sparc64_elf_create_dynamic_sections(), sparc64_elf_finish_dynamic_sections(), sparc64_elf_merge_private_bfd_data(), sparc64_elf_new_section_hook(), sparc64_elf_omit_section_dynsym(), sparc64_elf_output_arch_syms(), sparc64_elf_relax_section(), sparc64_elf_relocate_section(), sparc64_elf_size_dynamic_sections(), sparc64_elf_slurp_one_reloc_table(), sparc64_elf_slurp_reloc_table(), sparc_flat_function_epilogue(), sparclynx_set_sizes(), spawn_script(), Special_Lego_Or_Mp_Call(), Special_Sequence(), Special_Store_Load_Sequence(), special_symbolref_operand(), GRA_BB::Spill_Above_Check(), Spill_Global_Register(), Spill_Homeable_TN(), Spill_Live_Range(), TRACK_CYCLE::Split(), Split_Analysis(), Split_Array(), Split_BB(), Split_Block(), Split_Common_Possible(), Split_Depth(), GBB_MGR::Split_In_Alloc_LRANGE_Clear(), PF_LOOPNODE::Split_Loops(), Split_The_Current_Output_Line(), Splittable(), EXP_WORKLST::SPRE_Determine_inserts_saves_deletions(), SPRE_insert_load_to_preg(), EXP_WORKLST::SPRE_perform_insert_delete(), ETABLE::SPRE_rename(), ETABLE::SPRE_rename_expr(), spread_intrinsic(), sPrint_OP(), FB_FREQ::Sprintf(), SRC_BB_INFO::SRC_BB_INFO(), SRC_BB_MGR::SRC_BB_MGR(), srch_ar_file_for_module_tbl(), srch_for_calls(), srch_for_module_tbl(), srch_global_name_tbl(), srec_get_section_contents(), srec_init(), srec_mkobject(), srec_new_symbol(), srec_read_section(), srec_scan(), srec_set_section_contents(), srec_write_record(), srec_write_section(), srec_write_symbols(), srelational_si_operator(), RVI_NODE::St(), ST2C_decl_error(), ST2C_func_header(), ST2C_use_error(), ST2F_decl_const(), ST2F_decl_error(), ST2F_decl_var(), ST2F_Is_Dummy_Procedure(), ST2F_use_error(), ST_auxst_data_info(), ST_has_const_value(), ST_Has_Dope_Vector(), ST_has_Predefined_Named_Section(), St_Idx_Is_Intconst(), ST_Is_Common_Block(), ST_Is_Const(), ST_is_const_and_has_initv(), ST_is_const_initialized(), ST_is_const_initialized_scalar(), ST_is_constant(), ST_is_Index_Var_For_Enclosing_PDO(), ST_is_private_local(), ST_is_tls(), ST_is_uplevelTemp(), ST_might_be_modified(), ST_on_stack(), ST_pu_defined(), ST_size(), ST_Var_Kind(), Stab_Assignment_Compatible_Types(), Stab_Compare_Types(), Stab_Identical_Types(), Stab_Is_Assumed_Sized_Array(), Stab_Is_Element_Type_Of_Array(), Stab_Is_Equivalenced_Struct(), Stab_Lock_Tmpvar(), Stab_Reserved_St(), Stab_Reserved_Ty(), Stab_Unlock_Tmpvar(), Stacked_Regs_Distribution(), Standardize_For_Tiling(), CANT_BE_AVAIL_SEARCH< PRE_DIRECTION >::Start_from(), USER_AVAIL_SEARCH::Start_from(), PARTIAL_AVAIL_SEARCH::Start_from(), REPLACING_OCCUR_SEARCH::Start_from(), STOPS_SEARCH::Start_from(), Start_New_Basic_Block(), start_new_scp(), start_new_subpgm(), Statement_Sinkable_Out_Of_Loop(), REGION_TREE::Statistic(), USER_HASH_TABLE_ITER::Step(), HASH_TABLE_ITER< SIG_TYPE, DATA_TYPE >::Step(), QUEUE_WKLIST_ITER< ITEM_TYPE >::Step(), QUEUE_ITER< ITEM_TYPE >::Step(), WN_Verifier::STID_check_st_class(), Stid_Comes_From_Loop(), Stid_from_mtype_class_and_size(), stmt_expansion_control_start(), stmt_func_call_opr_handler(), stmt_func_semantics(), stmt_has_double_colon(), stmt_is_DATA_stmt(), stmt_is_DO_stmt(), ETABLE::Stmt_is_redundant(), stmt_is_save_stmt(), stmt_level_semantics(), STMTREP::Stmt_order_less_or_equal(), Stmt_With_Only_Scalars(), sto_imm(), stop_pause_stmt_semantics(), stor_bit_size_of(), storage_blk_resolution(), store_ctrl(), Store_Heuristic(), Store_Is_Useless(), store_sequence(), RVI_LR_INFO::Store_should_be_in_succ(), Store_To_Home(), Stored2Array_Assigned_Singly(), Stores_proj_op_to_temp(), SNL_STREAM::Stream_Init(), COPYPROP::Strictly_identical_phi_opnd(), REGION_STRIDE_PREFETCH::Stride_Prefetch_Initial(), Stride_Region(), Strides_Equiv(), Strip_Nested_MP(), Struct_are_equivalent(), struct_construct_opr_handler(), Struct_Has_One_Float(), Struct_Has_Two_Floats(), Struct_Is_HFA(), struct_opr_handler(), SYSTEM_OF_EQUATIONS::Sub_In_Equal(), SYSTEM_OF_EQUATIONS::Sub_Last_Equal(), SYSTEM_OF_EQUATIONS::Sub_Last_Equal_Unary(), subprogram_def_is_inlined(), subscript_opr_handler(), Subscripts_All_0(), substitute_ep_register(), IPO_INLINE::SubstituteFormal(), substring_opr_handler(), Subsumable_by_branch(), PARTITION_GRAPH::Subtract(), SCHEDULER::Succ_Pred_Transposed_If_Sched(), REGIONAL_CFG::Succ_Suit(), Succ_Thre(), SUMMARIZE< program >::Summarize(), SUMMARIZE< IPL >::SUMMARIZE(), CG_BROWSER::Summary(), WB_BROWSER::Summary(), WB_BROWSER::Summary_Array_Command(), CG_BROWSER::Summary_Locate(), WB_BROWSER::Summary_Scalar_Command(), CG_BROWSER::Summary_Single(), WB_BROWSER::Summary_Single(), CG_BROWSER::Summary_Size(), WB_BROWSER::Summary_Size(), CG_BROWSER::Summary_Valid_Command(), sunos_add_dynamic_symbols(), sunos_add_one_symbol(), sunos_check_dynamic_reloc(), sunos_create_dynamic_sections(), sunos_finish_dynamic_link(), sunos_link_hash_table_create(), sunos_read_dynamic_info(), sunos_scan_dynamic_symbol(), sunos_scan_ext_relocs(), sunos_scan_relocs(), sunos_scan_std_relocs(), sunos_slurp_dynamic_symtab(), SYSTEM_OF_EQUATIONS::SVPC(), swap_out_syms(), SWP_Append_Noop(), SWP_Bundle(), SWP_Bundle_First_In_Group(), SWP_Bundle_Next_In_Group(), SWP_Delete_Noop(), SWP_Emit(), SWP_Failure(), SWP_Fixup(), SWP_Fixup_Rotating_Registers(), SWP_Gather_Lifetime_Extents(), SWP_OPTIONS::SWP_OPTIONS(), SWP_Slot_Helper(), SWP_Undo_Bundle(), sxt_sequence(), SYMBOL::SYMBOL(), Symbol_In_Expression(), symbolic_addr_subtract(), Symbols_Equiv(), synchronize_intrinsic(), system_clock_intrinsic(), tag_attr_combination(), tag_tree_combination(), REGIONAL_CFG::Tail_Duplicate(), Targ_Atoc(), Targ_Atoll(), Targ_Contains_One_Bit_On(), Targ_Conv(), Targ_Determine_High_Bit(), Targ_Format_String(), Targ_IntrinsicOp(), Targ_Ipower(), Targ_Is_Integral(), Targ_Is_Power_Of_Two(), Targ_Is_Zero(), Targ_Power(), Targ_Print(), Targ_WhirlOp(), Target_Has_Cmoves(), Target_Has_Immediate_Operand(), Target_Support_Cmov(), TCON2F_append_string_char(), TCON2F_translate(), TCON_For_Initv(), tekhex_get_section_contents(), tekhex_init(), tekhex_mkobject(), tekhex_set_section_contents(), tekhex_write_object_contents(), Terminate(), ARA_LOOP_INFO::Test_Alias(), Test_Alias_Ara_Ref_Array(), Test_Alias_Ara_Ref_Scalar(), Test_Alias_Scalar_Node_Array(), Test_Alias_Scalar_Node_Scalar(), WN_INSTRUMENT_WALKER::Test_Dedicated_Reg(), test_ieee_interrupt_intrinsic(), WN_INSTRUMENT_WALKER::Test_Instrument_Node(), test_is_replaced(), test_significance(), test_size_stmts(), EXEC_PATH_SET::There_Are_Continguous_Path_Id(), DATA_SPEC_RES_CONSTRAIT_MGR::There_Exist_Misc_Dep_Arc(), Thread_Affinity_Lower(), thumb_exit(), thumb_unexpanded_epilogue(), TI_ASM_Get_Bundle_Reloc_Value(), TI_ASM_Pack_Inst(), TI_ASM_Set_Bundle_Reloc_Value(), TI_BUNDLE_Has_Property(), TI_BUNDLE_Is_Empty(), TI_BUNDLE_Is_Full(), TI_BUNDLE_Reserve_Stop_Bit(), TI_BUNDLE_Slot_Available(), TI_BUNDLE_Stop_Bit_Available(), TI_BUNDLE_Stop_Bit_Present(), TI_BUNDLE_Unreserve_Stop_Bit(), TI_Initialize(), TI_RES_Can_Dual_Issue(), TI_RES_COUNT_Print(), TI_RES_RES_Equal(), TI_RES_RES_Resources_Available(), TI_RES_RES_Resources_Equivalent(), TI_RES_RES_Resources_Grainy(), TI_RES_RES_Resources_Relevant(), tic30_aout_machine_type(), tic30_aout_relocate_contents(), tic30_aout_set_arch_mach(), tic30_aout_write_object_contents(), tic4x_scan(), tic54x_set_arch_mach(), ticoff_bfd_is_local_label_name(), Tile_Loop(), tiny_intrinsic(), CG_BROWSER::Tlog_Mod_Ref_Formals(), TLS_init(), tmp_il_resolution(), tmp_ir_resolution(), TN_Can_Use_Constant_Value(), TN_In_BB(), TN_is_fcc_register(), TN_is_GFP(), tn_is_needed_in_epilog(), TN_Is_Unwind_Reg(), TN_live_out_of(), TN_Opernum_In_OP(), TN_Pair_In_OP(), TN_Reaching_Value_At_Op(), TN_Resnum_In_OP(), TN_Restore_Below(), TN_Spill_Above(), TN_Value_At_Op(), TNs_Are_Equivalent(), toggle_inline_off(), toggle_inline_on(), Too_Few_Iterations(), TOP_Can_Be_Speculative(), toplogical_reordering(), TOPO_ITER::topo_sort(), Trace_BB(), CIO_RWTRAN::Trace_CICSE_Changes(), Trace_Command_Line_Group(), Trace_To_Stderr(), TRACK_CUR_VERSION::TRACK_CUR_VERSION(), SEGMENTED_ARRAY< T, block_size >::Transfer(), RELATED_SEGMENTED_ARRAY< T, block_size >::Transfer(), OPT_STAB::Transfer_alias_class_to_occ_and_aux(), transfer_intrinsic(), transform_char_sequence_ref(), transform_cri_ch_ptr(), Transform_Do(), Transform_Expression(), Transform_Parallel_Block(), translate_reloc(), translate_reloc_bfd_fix(), translate_section_fixes(), translate_to_native_sym_flags(), TRANSPOSE_DIRECTED_GRAPH16::TRANSPOSE_DIRECTED_GRAPH16(), transpose_intrinsic(), AGGINIT::Traverse_Aggregate_Array(), Traverse_Aggregate_Array(), SSU::Traverse_cr_rw(), Traverse_Extra_DST(), SSU::Traverse_mu_read(), Treat_As_Pure(), Tree_Equiv(), Tree_Has_Regions(), tree_produces_dealloc(), WN_INSTRUMENT_WALKER::Tree_Walk(), WN_INSTRUMENT_WALKER::Tree_Walk_Node(), trim_intrinsic(), Trip_Count(), Trip_Loop_Exit_Prob(), Trip_One_Loop(), triplet_opr_handler(), CANON_EXPR::Trivial(), DEPV_COMPUTE::Trivial_Test(), SCHEDULER::Try_Add_OP_to_Candidate_List(), try_issue_insn(), try_issue_nops(), Try_Reshape_Callee_Formal(), LOOP_MODEL::Try_Unroll(), PF_DESC::Turn_Off(), turn_off_ipa(), PF_DESC::Turn_On(), TVERTEX::TVERTEX(), ALIAS_RULE::Ty1_Include_Ty2(), TY2C_complete_struct(), TY2C_get_field_info(), TY2C_invalid(), TY2C_Prepend_Alignment_Type(), TY2C_prepend_FLD_list(), TY2F_Append_ARB(), TY2F_array(), TY2F_Dump_Fld_Path(), TY2F_Equivalence_FldList(), TY2F_Equivalence_List(), TY2F_Fld_Name(), TY2F_Fld_Size(), TY2F_invalid(), TY2F_List_Common_Flds(), TY2F_pointer(), TY2F_scalar(), TY2F_Translate_Common(), TY2F_Translate_EquivCommon_PtrFld(), TY2F_Translate_Fld_Path(), TY2F_Translate_Structure(), TY_All_Bounds_Defined(), TY_AR_has_new_const(), TY_are_equivalent(), TY_has_union(), TY_is_incomplete(), ty_processed(), TYLIST_are_equivalent(), Type_for_saved_load(), type_init_semantics(), CANON_EXPR::Type_safe(), types_are_compatible(), Types_are_compatible(), U4ExprHasUpperBitZero(), U64_LOWER_expr(), U64_LOWER_form_node(), U64_LOWER_stmt_wn(), U64_lower_stmtrep(), U64_lower_wn(), SNL_DEP_INFO::U_Fully_Permutable(), UBexp(), ubound_intrinsic(), ubranch_operator(), uint16_operand(), Unaliased_Actuals_Useful(), Unc_Promotion(), Uncombine_divrempart_operator(), Uncombine_imagrealpart_operator(), Uncombine_minmaxpart_operator(), Uncombine_mpy_operator(), Uncombine_Operations(), undefined_symbol(), under_same_cond_tn(), Unduplicated_Preds(), CALL_INFO::Unevaluate(), Unifiable_Loop(), UNIFORM_NAME::UNIFORM_NAME(), Unimplemented(), GLOBAL_ANNOT::Union(), GLOBAL_VALUE::Union(), INDX_RANGE::Union(), MA_OFFSET::Union(), IPAA_FORMAL_MAP::Union_2(), SPARSE_BV::Union_2_diff(), SPARSE_BV::Union_2_Diff_Core(), Union_Formal_Cprop_Annot(), EXEC_PATH_SET::Union_Partioned_Path_Set(), Union_sections(), LOOP_INVAR_CODE_MOTION::Unique_Reaching_Def_Inside_Loop(), unique_section_p(), LOOP_MODEL::Unique_Unstored_Int_Scalar_Refs(), unit_intrinsic(), Unit_Stride_Reference(), CG_BROWSER::Unmappable_Character(), Unmappable_Character(), WB_BROWSER::Unmappable_Character(), REDUCTION_MANAGER::Unmapped_Vertices(), unpack_intrinsic(), Unpropagate_Unusable_16bit_Info(), ARRAY_REF_LIST::Unroll(), Unroll_Do_Loop(), Unroll_Make_Remainder_Loop(), unroll_multi_bb(), unroll_multi_make_remainder_loop(), unroll_names_finish(), unroll_remove_notations(), Unrolled_DU_Update(), Unrolled_DU_Update_E(), unsigned5_operand(), unsigned6_operand(), unsplittable_name(), WN_TREE_ITER< PRE_ORDER, WHIRL >::Unwind(), PF_SPLIT_VECTOR::Update(), SD_INFO::Update(), PF_LOCLOOP::Update(), PARTITION_GRAPH::Update(), Update_annot_with_all_callee_mods(), OPT_STAB::Update_attr_cache(), REGIONAL_CFG::Update_BB_Prof_Info(), Update_Callee_Availability(), Update_Caller_MP_Pragmas(), SCHEDULER::Update_Cand_Lst_After_Cycle_Advancing(), SCHEDULER::Update_Cand_Lst_During_Sched_Cyc(), OPT_REVISE_SSA::Update_chi_list_for_old_var(), LOCAL_CLSC::Update_cr_alias(), update_fld_type(), Update_From_Restricted_Map(), Update_GRA_Live_Sets(), update_intrinsic(), update_linex_with_constant_mod(), Update_Live_In_Sets(), Update_Live_Use_Counts(), SCHED_DFLOW_MGR::Update_Liveness_After_Downward_Sched(), update_local_sym_info(), Update_MP_Local_Var(), IVR::Update_mp_pragma_list(), Update_node(), Update_node_const(), Update_Padding_Size(), DATA_SPEC_RES_CONSTRAIT_MGR::Update_Pending_Adv_Ld_Info(), update_plt_info(), DCE::Update_predecessor_lists(), Update_Private(), Update_reference_count(), update_region(), DCE::Update_region_information(), HB_Schedule::Update_Regs_For_OP(), STR_RED::Updated_by_iv_update(), uplus_opr_handler(), Upper_Bound_In_Affinity_Range(), Upper_Bound_Standardize(), Upper_Bounds_Equiv(), upper_int16_operand(), FAVOR_DELAY_HEUR::Upward_Code_Motion_Inc_Live_Range_Greatly(), SCHED_DFLOW_MGR::Upward_Sched_Interfere_Nested_Rgns_LiveRanges(), SCHED_DFLOW_MGR::Upward_Sched_Kill_Def_LiveOut_Of_Bookeeping_Place(), SCHED_DFLOW_MGR::Upward_Sched_Kill_Def_LiveOut_Of_Target_BB(), SCHED_DFLOW_MGR::Upward_Sched_Kill_LiveOut_Defs(), SCHED_DFLOW_MGR::Upward_Sched_Violate_Dflow_Constrait(), FAVOR_DELAY_HEUR::Upward_Spec_Global_Sched_Is_Profitable(), urelational_si_operator(), use_crosses_def(), Use_Spill_Record(), Use_Static_Init_For_Aggregate(), use_stmt_semantics(), Uses_Region_TN(), Uses_Return_Preg(), Uses_Small_Offset(), PRUNE_BOUND::Useset_expr(), UT_Body_Imperfect(), V3geLB_Implies_V3geUB(), V3leUB_Implies_V3leLB(), v850_elf_check_relocs(), v850_elf_final_link_relocate(), v850_elf_perform_lo16_relocation(), v850_elf_relax_section(), v850_elf_relocate_section(), v850_elf_section_from_bfd_section(), v850_elf_section_from_shdr(), v850_reorg(), v850_select_section(), Valid_alias(), Valid_doloop_condition(), IPA_CPROP_DF_FLOW::Valid_predecessors(), valid_ptn_found(), Valid_SNL_Region(), IPA_CPROP_DF_FLOW::Valid_successors_without_cprop(), validate_char_len(), validate_G_option(), validate_kind(), Validate_List(), validate_O_option(), validate_s_option(), validEhdr(), Value_has_only_formals(), value_map_hash_table_init(), SSA::Value_number(), Values_are_cprop_equivalent(), Values_are_equal(), FORMULA::Var(), COPYPROP::Var_has_as_value_on_the_other_path(), OPT_STAB::Var_is_loop_index(), ARA_LOOP_INFO::Variable_Load(), Variant_Array(), Varying_Load(), PF_DESC::Vec(), Vector_Can_Add_Op(), Vector_Is_Possible(), VECTOR_Member_Element(), DU_MANAGER::Verify(), MRT::Verify2(), DU_MANAGER::Verify_add_wn_to_map(), Verify_alias(), Verify_Block_Stmt_Sequence(), STMTREP::Verify_CODEMAP(), CODEREP::Verify_CODEMAP(), DU_MANAGER::Verify_du_chains_in_tree(), verify_flow_graph(), Verify_Global_Edge(), Verify_HB(), Verify_Instruction(), verify_interface(), STMTREP::Verify_IR(), COMP_UNIT::Verify_IR(), verify_mem(), Verify_Node(), Verify_Operand(), Verify_Region_Tree(), DU_MANAGER::Verify_scalar_usage(), COMP_UNIT::Verify_version(), CFG::Verify_wn(), DU_MANAGER::Verify_wn_in_tree(), versados_get_section_contents(), versados_mkobject(), versados_scan(), versados_set_section_contents(), Version_Loop(), Version_Region(), Vertex_Is_In_Expr(), WB_BROWSER::Vertices(), vfinfo(), vfp_secondary_reload_class(), VHO_Get_Field_List(), vho_initialize_bool_info(), vho_lower_cand_cior(), vho_lower_combine_loads(), vho_lower_cselect(), vho_lower_entry(), VHO_Lower_Mistore(), VHO_Lower_Mstid(), VHO_Lower_Mstore(), VHO_Lower_Switch(), vho_lower_while_do(), vho_simplify_cand(), vho_simplify_cior(), vho_singleton_field(), VHO_Switch_Generate_Compgoto(), VHO_WN_has_side_effects(), vintr_fis_separate_loop_and_scalar_expand(), Vintrinsic_Fission(), Vintrinsic_Fission_Phase(), REVERSE_TOPO_REGIONAL_CFG_ITER::Visited(), PREORDER_REGIONAL_CFG_ITER::Visited(), Vla_Needs_Alloca(), vms_bfd_link_add_symbols(), vms_bfd_link_split_section(), vms_canonicalize_reloc(), vms_construct_extended_name_table(), vms_core_file_matches_executable_p(), vms_find_nearest_line(), vms_get_section_contents(), vms_get_section_contents_in_window(), vms_initialize(), vms_new_section_hook(), vms_slurp_armap(), vms_slurp_extended_name_table(), vms_write_object_contents(), VN::VN(), VN_IVC_choose_eqclass_base_indvar(), Vn_Tracing(), MANUAL_PREFETCH_SYMBOLS::Volume(), PF_LG::Volume(), Volume_Is_Symbolic(), W2C_Fini(), W2C_Init(), W2C_Nomark_Loads(), W2C_Outfile_Fini(), W2C_Reset_Purple_Emission(), W2CF_Avoid_Suffix(), W2CF_Identical_Symkinds(), W2CF_Symtab_Nameof_Fld(), W2CF_Symtab_Nameof_Preg(), W2CF_Symtab_Nameof_Ty(), W2F_Fini(), W2F_Init(), W2F_Nomark_Loads(), W2F_Outfile_Fini(), W2F_Outfile_Translate_Pu(), W2F_Pop_PU(), W2F_Push_PU(), W2F_Reset_Purple_Emission(), wait_send_semantics(), ARA_LOOP_INFO::Walk_Block(), Walk_Linex(), ARA_LOOP_INFO::Walk_Loop(), Walk_Projected_Region(), ARRAY_SNL_INFO::Walk_SNL(), walk_wild_section(), FB_CFG::Walk_WN_statement(), Want_Interface_Section_For_Function(), warning_callback(), WB_BROWSER::WB_BROWSER(), WB_DAV_deps_loop(), WB_DAV_deps_ref(), WB_davinci(), WB_Dep_Symbol(), WB_Parent_Search(), CON_PAIR::WB_Print(), WB_stmt_deps(), WB_TXT_deps_loop(), WB_TXT_deps_ref(), WB_vertices(), WBTR_Distribution(), WBTR_Loop_Permutation(), WBTR_Loop_Reversal(), WBTR_Loop_Tiling(), WBTR_Post_Loop_Peeling(), WBTR_Pre_Loop_Peeling(), WBTR_Scalar_Expansion(), WBTR_SNL_INV_Limited_SE_And_Dist(), EXP_WORKLST::Weight_less_than(), Weird_Array_Element(), Weird_Triangular(), WFE_Add_Aggregate_Init_Address(), WFE_Add_Aggregate_Init_Complex(), WFE_Add_Aggregate_Init_Double(), WFE_Add_Aggregate_Init_Integer(), WFE_Add_Aggregate_Init_Real(), WFE_Address_Of(), WFE_Alloca_0(), WFE_Alloca_ST(), WFE_Array_Expr(), WFE_Assemble_Alias(), WFE_Assemble_Asm(), WFE_Assemble_Constructor(), WFE_Assemble_Destructor(), WFE_Declare_Nonlocal_Label(), Wfe_Expand_Asm_Operands(), WFE_Expand_Decl(), WFE_Expand_End_Cond(), WFE_Expand_End_Loop(), WFE_Expand_Expr(), WFE_Expand_Expr_With_Sequence_Point(), WFE_expand_flush(), WFE_Expand_Goto(), WFE_Expand_Handlers_Or_Cleanup(), WFE_Expand_Loop(), WFE_Expand_Return(), WFE_Expand_Start_Cond(), WFE_expand_start_critical(), WFE_Expand_Start_Loop(), WFE_expand_start_ordered(), WFE_expand_start_parallel(), WFE_expand_start_parallel_for(), WFE_expand_start_parallel_sections(), WFE_Expand_Stmt(), WFE_Expand_Top_Level_Decl(), WFE_Finish_Aggregate_Init(), WFE_Finish_Function(), WFE_Generate_Temp_For_Initialized_Aggregate(), WFE_Generate_Thunk(), WFE_Get_LABEL(), WFE_Get_Return_Address_ST(), WFE_handle_non_pods(), WFE_Init(), WFE_Initialize_Decl(), WFE_is_default_constructor(), WFE_Lhs_Of_Modify_Expr(), WFE_maybe_call_copy_ctor(), WFE_maybe_call_default_ctor(), WFE_One_Stmt(), WFE_Resolve_Duplicate_Decls(), WFE_Start_Aggregate_Init(), WFE_Start_Function(), WFE_Stmt_Pop(), AGGINIT::WGEN_Add_Aggregate_Init_Address(), AGGINIT::WGEN_Add_Aggregate_Init_Complex(), AGGINIT::WGEN_Add_Aggregate_Init_Integer(), AGGINIT::WGEN_Add_Aggregate_Init_Real(), WGEN_Address_Of(), WGEN_Adjust_Thunk(), WGEN_Alloca_0(), WGEN_Alloca_ST(), WGEN_Array_Expr(), WGEN_Assemble_Alias(), WGEN_Assemble_Asm(), WGEN_Call_Returns_Ptr_To_Member_Func(), WGEN_Declare_Nonlocal_Label(), Wgen_Expand_Asm_Operands(), WGEN_Expand_Decl(), WGEN_Expand_Expr(), WGEN_Expand_Expr_With_Sequence_Point(), WGEN_Expand_Goto(), WGEN_Expand_Handlers_Or_Cleanup(), WGEN_Expand_Loop(), WGEN_Expand_Ptr_To_Member_Func_Call_Expr(), WGEN_Expand_Return(), WGEN_expand_start_critical(), WGEN_expand_start_ordered(), WGEN_Expand_Stmt(), WGEN_Expand_Top_Level_Decl(), WGEN_Finish_Function(), WGEN_generate_non_pod_lastlocal_finalization(), WGEN_Generate_Temp_For_Initialized_Aggregate(), WGEN_Generate_Thunk(), WGEN_Get_LABEL(), WGEN_Get_Return_Address_ST(), WGEN_handle_non_pods(), WGEN_has_copy_constructor(), WGEN_Init(), WGEN_Initialize_Decl(), WGEN_is_default_constructor(), WGEN_Lhs_Of_Modify_Expr(), WGEN_maybe_call_assignment_opr(), WGEN_maybe_call_copy_ctor(), WGEN_maybe_call_default_ctor(), WGEN_Process_Initialization(), WGEN_process_omp_clause(), WGEN_Resolve_Duplicate_Decls(), WGEN_Start_Function(), WGEN_Stmt_Pop(), where_stmt_semantics(), while(), W2CF_TRANSLATOR::Whileloop_Looks_Like_Forloop(), Whirl2C_Emit(), WHIRL2F_Append_Comment(), Whirl2F_Emit(), Whirl2Src_Emit(), Whirl2Src_Init(), Whirl2Src_Translate_Iload_Str(), Whirl2Src_Translate_Istore_Str(), widen_instruction(), wild_sort(), WN_TREE_ITER< POST_ORDER, WHIRL >::Wind(), Wind_Down(), Wind_Down_Dep_E(), WN2C_address_add(), WN2C_Append_Assignment(), WN2C_Append_Preg(), WN2C_Append_Value_Reference(), WN2C_array(), WN2C_based_lvalue(), WN2C_binaryop(), WN2C_block(), WN2C_cvt(), WN2C_cvtl(), WN2C_func_entry(), WN2C_Function_Call_Lhs(), WN2C_Function_Return_Value(), WN2C_if(), WN2C_iload(), WN2C_iloadx(), WN2C_intrinsic_op(), WN2C_is_pointer_diff(), WN2C_lda(), WN2C_ldid(), WN2C_lvalue_wn(), WN2C_parm(), WN2C_Stmt_Newline(), WN2C_tas(), WN2C_Translate_Arithmetic_Operand(), WN2C_unaryop(), WN2F_Append_IO_CtrlList(), WN2F_array_bounds(), WN2F_ashr(), WN2F_binaryop(), WN2F_call(), WN2F_complex(), WN2F_Emit_End_Stmt(), WN2F_Expr_Plus_Literal(), LOC_INFO::WN2F_Find_And_Mark_Nested_Address(), WN2F_Function_Call_Lhs(), WN2F_Get_DoLoop_Bound(), WN2F_Get_DoLoop_StepSize(), WN2F_Get_Next_LoopBoundOp(), WN2F_iloadx(), WN2F_imagpart(), WN2F_intrinsic_call(), WN2F_io_control(), WN2F_io_format(), WN2F_io_item(), WN2F_io_list(), WN2F_io_unit(), WN2F_ios_cr(), WN2F_Is_Address_Preg(), WN2F_istorex(), WN2F_Load_Return_Reg(), WN2F_Offset_Memref(), WN2F_Offset_Symref(), WN2F_pragma_list_end(), WN2F_pragma_list_nowait(), WN2F_realpart(), WN2F_return(), WN2F_select(), WN2F_Translate_DoLoop_Bound(), WN2F_translate_purple_main(), WN2F_unaryop(), WN2F_unsupported(), WN_Annotate(), WN_Can_Be_Speculative(), WN_copy_stmap(), WN_CopyMap(), WN_DELETE_FromBlock(), wn_dumpexpr(), WN_emulation(), WN_Equiv(), WN_Expr_Can_Be_Speculative(), WN_Fake_Call_EH_Region(), WN_Floatconst(), WN_has_chi(), WN_has_mu(), WN_has_pragma_with_side_effect(), WN_has_side_effects(), WN_in_ioitem(), WN_INSERT_BlockAfter(), WN_INSERT_BlockBefore(), WN_Instrument(), WN_Int_Type_Conversion(), WN_intrinsic_name(), WN_intrinsic_return_ty(), WN_Inverse(), Wn_Is_Above(), ALIAS_CLASSIFICATION::WN_is_alloca_intrinsic(), Wn_Is_Below(), WN_is_call_related(), WN_is_in_pragma(), Wn_Is_Inside(), WN_is_lda_label(), WN_Is_Pointer(), WN_is_store_of_ded_reg(), WN_is_store_to_preg(), WN_Is_Volatile_Mem(), WN_lda_label_number(), WN_LdaString(), WN_LOOP_Increment(), wn_loop_reverse_compare(), WN_MAP_Do_Create(), WN_MAP_get_map_id(), WN_MAP_TAB_Create(), WN_Map_Valid(), WN_Nary(), WN_object_size(), WN_parity_independent(), WN_retype_expr(), WN_Single_Iteration_Cost(), WN_Solve_For(), WN_Store_Target_Matches_Reduction(), Wn_To_Access_Vector(), WN_Tree_Has_Duplicate_Labels(), AGGINIT::WN_Tree_Is_Label_Values(), WN_TREE_put_stmt(), WN_Tree_Type(), WN_unconditional_goto(), WN_unroll(), WN_UNROLL_suitable(), WN_Upper_Bound_Standardize(), WN_UVConst(), WN_Verifier::WN_Verifier(), WO_LOC::WO_LOC(), wopt_main(), WOPT_SWITCHES::WOPT_SWITCHES(), IF_CONVERTOR::Worth_If_Convert(), WOVP::WOVP(), ANL_PRAGMA_CONSTRUCT::Write(), ANL_VARLIST::Write(), IPA_LNO_WRITE_FILE::Write_Headers(), Write_Label(), write_memory_barrier_intrinsic(), write_object_contents(), WOVP::Write_once_check(), write_output(), IPA_NODE::Write_PU(), CIO_RWTRAN::Write_Removal(), write_separator(), write_stmt_semantics(), write_token(), xcoff64_bad_format_hook(), xcoff64_core_file_matches_executable_p(), xcoff64_generate_rtinit(), xcoff64_is_lineno_count_overflow(), xcoff64_is_reloc_count_overflow(), xcoff64_ppc_relocate_section(), xcoff64_reloc_type_br(), xcoff64_slurp_armap(), xcoff64_write_object_contents(), xcoff_build_ldsyms(), xcoff_complain_overflow_bitfield_func(), xcoff_complain_overflow_dont_func(), xcoff_complain_overflow_signed_func(), xcoff_complain_overflow_unsigned_func(), xcoff_generate_rtinit(), xcoff_get_section_contents(), xcoff_is_lineno_count_overflow(), xcoff_is_reloc_count_overflow(), xcoff_link_add_dynamic_symbols(), xcoff_link_add_object_symbols(), xcoff_link_add_symbols(), xcoff_link_check_ar_symbols(), xcoff_link_check_archive_element(), xcoff_link_check_dynamic_ar_symbols(), xcoff_link_create_extra_sections(), xcoff_link_input_bfd(), xcoff_mark(), xcoff_mark_symbol(), xcoff_ppc_relocate_section(), xcoff_read_internal_relocs(), xcoff_reloc_link_order(), xcoff_reloc_type_br(), xcoff_reloc_type_fail(), xcoff_reloc_type_toc(), xcoff_write_archive_contents_big(), xcoff_write_archive_contents_old(), xcoff_write_armap_big(), xcoff_write_armap_old(), xcoff_write_global_symbol(), xstormy16_elf_always_size_sections(), xstormy16_elf_check_relocs(), xstormy16_elf_relax_section(), xstormy16_elf_relocate_section(), xtensa_callback_required_dependence(), xtensa_expand_conditional_branch(), xtensa_is_littable_section(), xtensa_is_property_section(), xtensa_mask_immediate(), xtensa_valid_move(), yyparse(), CLIST_ITER::~CLIST_ITER(), FAVOR_DELAY_HEUR::~FAVOR_DELAY_HEUR(), and idmap::ID_MAP< NODE_TYPE, KEY_TYPE >::~ID_MAP().

#define FP_RM   1

Definition at line 75 of file float_rf.cxx.

Referenced by madd().

#define FP_RN   0

Definition at line 74 of file float_rf.cxx.

#define FP_RP   2

Definition at line 76 of file float_rf.cxx.

#define FP_RZ   3

Definition at line 77 of file float_rf.cxx.

Referenced by __drem(), __fmod(), and __fmodf().

#define GUARD_BIT   0x8000000000000000ull

Definition at line 69 of file float_rf.cxx.

Referenced by soft_div().

#define HIGH_BIT   0x8000000000000000ull

#define INFINITY   1

Definition at line 79 of file float_rf.cxx.

Referenced by floatformat_to_double(), and round().

#define LONGLONG_MAX   0x7fffffffffffffffll

Definition at line 65 of file float_rf.cxx.

Referenced by fcvtfx(), fcvtfxtrunc(), and s_rsue_com().

#define LOW32BITS   0xffffffffull

Definition at line 4994 of file float_rf.cxx.

Referenced by mul64().

#define MAXVAL   2

Definition at line 80 of file float_rf.cxx.

Referenced by round().

#define MINFINITY   3

Definition at line 81 of file float_rf.cxx.

Referenced by round().

#define MMAXVAL   4

Definition at line 82 of file float_rf.cxx.

#define NATVAL   1

#define QUIET_NAN   4

#define SEXP_MAX   127

Definition at line 105 of file float_rf.cxx.

Referenced by frcpa(), frsqrta(), and round().

#define SEXP_MIN   -126

Definition at line 104 of file float_rf.cxx.

Referenced by frcpa(), frsqrta(), and round().

#define SIGN_SHIFT   17

Definition at line 60 of file float_rf.cxx.

#define SIGNALING_NAN   2

#define SNGL   0

Definition at line 87 of file float_rf.cxx.

Referenced by frcpa(), frsqrta(), round(), and soft_div().

#define STICKY_BIT   0x4000000000000000ull

Definition at line 70 of file float_rf.cxx.

Referenced by fcvtfx(), fcvtfxu(), madd(), round(), round_l(), and soft_div().

#define STICKY_MASK   0x7fffffffffffffffull

Definition at line 95 of file float_rf.cxx.

Referenced by round(), and round_l().

#define TRUE   1

Definition at line 101 of file float_rf.cxx.

Referenced by $auxread(), __gthr_win32_once(), __gthread_once(), __profile_finalize(), __profile_init(), __stride_profile_pu_init(), __value_profile_pu_init(), W2CF_TRANSLATOR::_Array_Segment_To_String(), _bfd_add_bfd_to_archive_cache(), _bfd_add_merge_section(), _bfd_archive_bsd_update_armap_timestamp(), _bfd_archive_coff_construct_extended_name_table(), _bfd_coff_arm_set_private_flags(), _bfd_coff_final_link(), _bfd_coff_free_symbols(), _bfd_coff_generic_relocate_section(), _bfd_coff_get_external_symbols(), _bfd_coff_link_input_bfd(), _bfd_coff_reloc_link_order(), _bfd_coff_write_global_sym(), _bfd_coff_write_task_globals(), _bfd_construct_extended_name_table(), _bfd_do_ns32k_reloc_contents(), _bfd_dwarf2_find_nearest_line(), _bfd_ecoff_bfd_copy_private_bfd_data(), _bfd_ecoff_bfd_final_link(), _bfd_ecoff_get_accumulated_ss(), _bfd_ecoff_locate_line(), _bfd_ecoff_mkobject(), _bfd_ecoff_new_section_hook(), _bfd_ecoff_set_section_contents(), _bfd_ecoff_slurp_armap(), _bfd_ecoff_slurp_symbol_table(), _bfd_ecoff_slurp_symbolic_info(), _bfd_ecoff_styp_to_sec_flags(), _bfd_ecoff_write_armap(), _bfd_ecoff_write_object_contents(), _bfd_elf_add_default_symbol(), _bfd_elf_add_dynamic_entry(), _bfd_elf_adjust_dynamic_symbol(), _bfd_elf_assign_file_positions_for_relocs(), _bfd_elf_can_make_relative(), _bfd_elf_canonicalize_dynamic_reloc(), _bfd_elf_canonicalize_dynamic_symtab(), _bfd_elf_compute_section_file_positions(), _bfd_elf_copy_private_bfd_data(), _bfd_elf_copy_private_header_data(), _bfd_elf_copy_private_section_data(), _bfd_elf_copy_private_symbol_data(), _bfd_elf_create_dynamic_sections(), _bfd_elf_create_got_section(), _bfd_elf_discard_section_eh_frame_hdr(), _bfd_elf_dynamic_symbol_p(), _bfd_elf_export_symbol(), _bfd_elf_find_nearest_line(), _bfd_elf_fix_symbol_flags(), _bfd_elf_gc_mark(), _bfd_elf_get_synthetic_symtab(), _bfd_elf_init_reloc_shdr(), _bfd_elf_is_local_label_name(), _bfd_elf_link_assign_sym_version(), _bfd_elf_link_create_dynamic_sections(), _bfd_elf_link_create_dynstrtab(), _bfd_elf_link_find_version_dependencies(), _bfd_elf_link_omit_section_dynsym(), _bfd_elf_link_output_relocs(), _bfd_elf_link_sec_merge_syms(), _bfd_elf_link_size_reloc_section(), _bfd_elf_make_section_from_phdr(), _bfd_elf_make_section_from_shdr(), _bfd_elf_maybe_strip_eh_frame_hdr(), _bfd_elf_merge_sections(), _bfd_elf_merge_symbol(), _bfd_elf_mips_get_relocated_section_contents(), _bfd_elf_new_section_hook(), _bfd_elf_print_private_bfd_data(), _bfd_elf_set_section_contents(), _bfd_elf_setup_group_pointers(), _bfd_elf_slurp_version_tables(), _bfd_elf_stringtab_init(), _bfd_elf_strtab_add(), _bfd_elf_strtab_emit(), _bfd_elf_symbol_refs_local_p(), _bfd_elf_validate_reloc(), _bfd_elf_write_section_eh_frame(), _bfd_elf_write_section_eh_frame_hdr(), _bfd_generic_final_link(), _bfd_generic_get_section_contents(), _bfd_generic_get_section_contents_in_window(), _bfd_generic_link_add_archive_symbols(), _bfd_generic_link_add_one_symbol(), _bfd_generic_link_add_symbols_collect(), _bfd_generic_link_output_symbols(), _bfd_generic_link_write_global_symbol(), _bfd_generic_mkarchive(), _bfd_generic_reloc_link_order(), _bfd_generic_section_already_linked(), _bfd_generic_set_section_contents(), _bfd_generic_verify_endian_match(), _bfd_link_section_stabs(), _bfd_m32r_elf_section_from_bfd_section(), _bfd_m68hc11_elf_merge_private_bfd_data(), _bfd_m68hc11_elf_print_private_bfd_data(), _bfd_m68hc11_elf_set_private_flags(), _bfd_merge_sections(), _bfd_mips_elf32_gprel16_reloc(), _bfd_mips_elf_add_symbol_hook(), _bfd_mips_elf_adjust_dynamic_symbol(), _bfd_mips_elf_always_size_sections(), _bfd_mips_elf_check_relocs(), _bfd_mips_elf_copy_indirect_symbol(), _bfd_mips_elf_create_dynamic_sections(), _bfd_mips_elf_discard_info(), _bfd_mips_elf_fake_sections(), _bfd_mips_elf_final_link(), _bfd_mips_elf_find_nearest_line(), _bfd_mips_elf_finish_dynamic_sections(), _bfd_mips_elf_finish_dynamic_symbol(), _bfd_mips_elf_gc_sweep_hook(), _bfd_mips_elf_ignore_discarded_relocs(), _bfd_mips_elf_link_output_symbol_hook(), _bfd_mips_elf_merge_private_bfd_data(), _bfd_mips_elf_modify_segment_map(), _bfd_mips_elf_print_private_bfd_data(), _bfd_mips_elf_read_ecoff_info(), _bfd_mips_elf_relocate_section(), _bfd_mips_elf_section_from_bfd_section(), _bfd_mips_elf_section_from_shdr(), _bfd_mips_elf_section_processing(), _bfd_mips_elf_set_private_flags(), _bfd_mips_elf_size_dynamic_sections(), _bfd_mips_elf_write_section(), _bfd_mips_relax_section(), _bfd_mmix_after_linker_allocation(), _bfd_mmix_before_linker_allocation(), _bfd_mmix_check_all_relocs(), _bfd_mn10300_elf_adjust_dynamic_symbol(), _bfd_mn10300_elf_create_dynamic_sections(), _bfd_mn10300_elf_create_got_section(), _bfd_mn10300_elf_finish_dynamic_sections(), _bfd_mn10300_elf_finish_dynamic_symbol(), _bfd_mn10300_elf_merge_private_bfd_data(), _bfd_mn10300_elf_object_p(), _bfd_mn10300_elf_size_dynamic_sections(), _bfd_save_vms_section(), _bfd_sh_align_load_span(), _bfd_slurp_extended_name_table(), _bfd_stab_section_find_nearest_line(), _bfd_stringtab_add(), _bfd_stringtab_emit(), _bfd_vms_enter_symbol(), _bfd_vms_slurp_eom(), _bfd_vms_slurp_gsd(), _bfd_write_archive_contents(), _bfd_write_merged_section(), _bfd_write_stab_strings(), _bfd_xcoff64_put_ldsymbol_name(), _bfd_xcoff64_put_symbol_name(), _bfd_xcoff_bfd_final_link(), _bfd_xcoff_bfd_link_add_symbols(), _bfd_xcoff_bfd_link_hash_table_create(), _bfd_xcoff_canonicalize_dynamic_symtab(), _bfd_xcoff_copy_private_bfd_data(), _bfd_xcoff_mkobject(), _bfd_xcoff_put_ldsymbol_name(), _bfd_xcoff_put_symbol_name(), _bfd_xcoff_slurp_armap(), _bfd_xcoff_stringtab_init(), _bfd_XX_bfd_copy_private_bfd_data_common(), _bfd_XX_bfd_copy_private_section_data(), _bfd_XX_print_private_bfd_data_common(), _bfd_XXi_final_link_postscript(), CFG_NODE_MAP::_bubble_sort(), VALNUM_FRE::_check_cr_compatible(), FRAC::_checksz(), W2CF_TRANSLATOR::_Clause_Exprs_To_String(), W2CF_TRANSLATOR::_Clause_Symbols_To_String(), SRC_BB_MGR::_compute_cutting_set(), VALNUM_FRE::_contains_undef_val(), _cpp_lex_direct(), _cpp_lex_token(), _CSHIFT(), _dwarf_pro_generate_debuginfo(), _dwarf_setup(), ANL_PRAGMA_CONSTRUCT::_End_Is_Part_Of_Construct(), _EOSHIFT(), ANL_FILE_MNGR::_Exists(), VN_IVC::_find_or_insert_member(), ANL_PRAGMA_CONSTRUCT::_Find_Pragma_End_Stmt(), _frv_create_got_section(), _frvfdpic_emit_got_relocs_plt_entries(), _frvfdpic_link_omit_section_dynsym(), _frvfdpic_relax_got_plt_entries(), _frvfdpic_relax_tls_entries(), _frvfdpic_size_got_plt(), VN_IVC::_get_literal_diff(), VALNUM_FRE::_get_worklist_info(), CG_GROUPING::_init_resource(), ANL_PRAGMA_ATTRIBUTE::_Is_Assertion(), W2CF_TRANSLATOR::_Is_Ptr_Expr(), SORTED_MAP< KEY, RANGE >::_is_sorted(), VALNUM_FRE::_ivc_classify(), VALNUM_FRE::_ivc_insert_initval_diff(), VALNUM_FRE::_ivc_substitute(), VALNUM_FRE::_may_be_redundant_expr(), _PACK(), VN::_print_vn_to_exprid(), FRAC::_reduce2(), VALNUM_FRE::_remove_nested_occurs(), VALNUM_FRE::_rename_valnums(), _RESHAPE(), VALNUM_FRE::_select_for_valnum_list(), VN::_set_valnum(), W2CF_TRANSLATOR::_Skip_Ignored_Clauses(), SORTED_MAP< KEY, RANGE >::_sort(), SRC_BB_MGR::_src_bb_is_qualified(), _TRANSFER(), VN::_valnum_expr(), VN::_valnum_lhs(), VN::_valnum_memloc_load(), VN::_valnum_memloc_store(), _wrfmt(), ANL_PRAGMA_CONSTRUCT::_Write_Pragma_Directives(), ANL_REGION_CONSTRUCT::_Write_Region_Directive(), _X_PROP_INTERSECTION_IS_NONEMPTY_(), _xanalyze_stmt_for_conds(), _xdependence_is_preserved(), _xfunc_has_stmts2prevent_shackle(), _xis_legal_shackle(), _xis_simple_shackle_case(), _xtest_dependence_is_preserved(), a29k_reloc(), abs_intrinsic(), ACCESS_ARRAY::ACCESS_ARRAY(), ACCESS_VECTOR::ACCESS_VECTOR(), Access_Vector_Condition_Provable(), Access_vector_is_too_messy(), Accumulate_Expr_PUinfo(), Accumulate_Preg_Info(), IPAA_DF_SOLVER::Accumulate_ref_info(), EXEC_PATH_MGR::Acquire_Path_Info(), REGION_INFO_MGR::Acquire_Rgn_Info(), SYSTEM_OF_EQUATIONS::Acy_Set_Var(), SYSTEM_OF_EQUATIONS::Acyclic_Test(), ADDR_LINEAR_EXPR::Add(), MA_OFFSET::Add(), LINEX::Add_access(), add_archive_element(), LOCAL_CLSC::Add_aux_id_to_bs(), Add_Avail_Reg(), CODEMAP::Add_bin_node_and_fold(), Add_Bkwd_REG_Arcs(), Add_Block(), LFTR_VAR::Add_comparison(), Add_Condition(), add_cref(), Add_DST_variable(), Add_Edges_For_Node(), IPAA_FORMAL_MAP::Add_elmt(), CODEMAP::Add_expr(), add_extra_plt_sections(), add_file_args(), add_file_shuffle(), add_final_ld_args(), Add_Forw_REG_Arcs(), RINIT::Add_goto(), PF_LG::Add_Group(), CODEMAP::Add_idef(), add_implied_string(), AGGINIT::Add_Init_For_Label_Values(), AGGINIT::Add_Init_For_WHIRL(), AGGINIT::Add_Inito_For_Tree(), Add_Inito_For_Tree(), Add_Item(), add_keepsyms_file(), RINIT::Add_label_alias(), SYSTEM_OF_EQUATIONS::Add_Le_Non_Redundant(), Add_MEM_Arcs(), add_mem_arcs_from(), Add_Memory_Barriers(), add_memory_shuffle(), Add_new_auxid_to_entry_chis(), ACCESS_VECTOR::Add_Nonlin(), add_object(), CFG::Add_one_do_loop_stmt(), CFG::Add_one_do_while_stmt(), CFG::Add_one_if_stmt(), CFG::Add_one_io_stmt(), Add_One_Node(), CFG::Add_one_region(), CFG::Add_one_stmt(), CFG::Add_one_while_do_stmt(), CYCLE_STATE::Add_OP(), Add_Or_Subtract(), Add_Ordered_Item(), PT_SET::Add_points_to(), Add_Pragma_To_MP_Regions(), Add_Predicate_Valid_BB(), Add_Predicate_Valid_OP(), PF_LG::Add_Ref(), PF_UGS::Add_Ref(), PF_LOOPNODE::Add_Ref(), LEGO_UGS::Add_Ref(), PF_BASE_ARRAY::Add_Ref(), CACHE_CONTENTS::Add_Region_Distributed(), CACHE_CONTENTS::Add_Region_Exclusive(), CACHE_CONTENTS::Add_Region_Replicated(), PARTITION_GRAPH::Add_Relation(), Add_Scheduling_Note(), add_special_options(), ACCESS_VECTOR::Add_Sum(), ACCESS_VECTOR::Add_Symbol(), add_symbol_adjust(), Add_Symbol_To_Use(), Add_Symbols(), add_targ_options(), REGIONAL_CFG::Add_To_Entries(), REGIONAL_CFG::Add_To_Exits(), add_to_fp_table(), add_to_hash_table(), add_to_set(), add_to_sp(), add_to_stringtab(), Add_To_Symbol(), TRANSPOSE_DIRECTED_GRAPH16::Add_Vertex(), SYSTEM_OF_EQUATIONS::Add_Work_Var(), add_wrap(), add_ysym(), addr_invariant_in_loop(), addr_subtract(), WB_BROWSER::Address_Walk(), Address_Walk(), adjust_char_value_len(), adjust_continued_macro(), FB_CFG::Adjust_edge(), Adjust_Entry(), adjust_opd_syms(), Adjust_Opt_Level(), WOPT_SWITCHES::Adjust_Optimization(), Adjust_Recovery_Block(), adjust_toc_syms(), OPT_STAB::Adjust_vsym(), Adjusted_Alignment(), adjustl_intrinsic(), aix386_core_file_matches_executable_p(), ALIAS_CLASSIFICATION::ALIAS_CLASSIFICATION(), LOOP_INVAR_CODE_MOTION::Alias_With_Call(), DCE::Aliased(), PT_SET::Aliased(), ALIAS_RULE::Aliased_ANSI_Type_Rule(), ALIAS_RULE::Aliased_Attribute_Rule(), DSE::Aliased_aux(), ALIAS_RULE::Aliased_Base_Rule(), ALIAS_RULE::Aliased_C_Qualifier_Rule(), ALIAS_RULE::Aliased_Disjoint(), ALIAS_RULE::Aliased_F90_Target_Rule(), ALIAS_RULE::Aliased_F_Param_Rule(), ALIAS_RULE::Aliased_Memop_By_Declaration(), ALIAS_RULE::Aliased_Qualifier_Rule(), ALIAS_RULE::Aliased_Ragnarok_Restrict(), ALIAS_RULE::Aliased_Ragnarok_Unnamed(), ALIAS_RULE::Aliased_Static_Nest_Rule(), ALIAS_RULE::Aliased_Strongly_Typed_Rule(), ALIAS_RULE::Aliased_with_Call(), align_bit_length(), all_bbs_in(), all_bbs_mapped(), all_intrinsic(), All_O3(), LOOP_INVAR_CODE_MOTION::All_Reaching_Def_are_Outside_Of_Loop(), All_Uses_Outside_Of_Loop(), All_Uses_Within(), alloc_obj_opr_handler(), ETABLE::Alloc_occurs_node(), Alloc_Regs_For_BB(), SEGMENTED_ARRAY< T, block_size >::Allocate(), RELATED_SEGMENTED_ARRAY< T, block_size >::Allocate(), Allocate_All_Formals(), allocate_dynrel_entries(), allocate_dynrelocs(), Allocate_Entry_Formal(), allocate_fptr(), allocate_global_data_dlt(), allocate_global_data_got(), allocate_global_data_opd(), allocate_global_data_plt(), allocate_global_data_stub(), allocate_global_fptr_got(), allocate_local_got(), allocate_plt2_entries(), allocate_plt_entries(), allocate_plt_static(), allocate_pltoff_entries(), Allocate_Stacked_Register(), allocate_stmt_semantics(), allocated_intrinsic(), alpha_adjust_headers(), alpha_ecoff_bad_format_hook(), alpha_ecoff_get_elt_at_filepos(), alpha_ecoff_get_relocated_section_contents(), alpha_output_filename(), alpha_relocate_section(), alpha_start_function(), alu_op_defines_rflags_used(), ARA_LOOP_INFO::Always_Enough_Parallel_Work(), Among_top_nth_coderep(), Analyse_Dependencies(), Analyze_all_indices(), MEM_ACCESS_ANALYZER::Analyze_array_access(), Analyze_bases(), MEM_ACCESS_ANALYZER::Analyze_iload_pointer(), Analyze_index(), POINTS_TO::Analyze_Lda_Base(), RVI::Analyze_live_range(), CFG::Analyze_loops(), MEM_ACCESS_ANALYZER::Analyze_mem_access(), Analyze_one_address(), Analyze_OP_For_Unwind_Info(), SX_INFO::Analyze_Reduction(), analyze_relocations(), Analyze_Spilling_Live_Range(), POINTS_TO::Analyze_ST(), RVI_LR::Analyze_succs(), LMV_LOOP_INFO::Analyze_var_value_range(), and_opr_handler(), AND_Predicate_To_OP(), Anl_Init(), ANL_PRAGMA_CONSTRUCT::ANL_PRAGMA_CONSTRUCT(), HOIST_SUMMARY::Anticipated_at_CD(), CODEREP::Antloc_rec(), any_bbs_in(), Any_Loop_In_SNL_Parallelizable(), EXP_PHI::Any_opnd_injured(), aout_adobe_mkobject(), aout_adobe_set_arch_mach(), aout_adobe_set_section_contents(), aout_adobe_write_object_contents(), aout_get_external_symbols(), aout_link_add_object_symbols(), aout_link_add_symbols(), aout_link_check_ar_symbols(), aout_link_check_archive_element(), aout_link_free_symbols(), aout_link_input_bfd(), aout_link_input_section(), aout_link_reloc_link_order(), aout_link_write_other_symbol(), aout_link_write_symbols(), SLIST::Append(), CLIST::Append(), append_char(), Append_F77_Indented_Continuation(), Append_Nest_Clauses(), append_objects_to_list(), Append_Op_To_BB(), Append_Pragma_Clauses(), Apply_Controls(), GVN::Apply_cr(), Appropriate_Shackle_Size_Set(), ARA_LOOP_INFO::ARA_LOOP_INFO(), ARA_REF::ARA_REF(), ARB_are_equivalent(), arc_final_prescan_insn(), ARC_is_control_spec(), ARC_is_data_spec(), arc_output_function_epilogue(), SCHED_DFLOW_MGR::Are_Defs_Live_In(), SCHED_DFLOW_MGR::Are_Defs_Live_Out(), Are_different(), WN_Verifier::Are_enclosed_pragmas(), Are_Equal_Dims(), Are_Independent_Regions(), Are_Permutations(), Are_Similar_Dimensions(), Are_Similar_Regions(), arm_cannot_copy_insn_p(), arm_check_note(), arm_coproc_mem_operand(), arm_emit_tls_decoration(), arm_final_prescan_insn(), arm_gen_movmemqi(), arm_gen_movstrqi(), arm_hard_regno_mode_ok(), arm_output_addr_const_extra(), REGIONAL_CFG::ARN_Is_Log_If(), Array_Bounds_Equiv(), array_bounds_resolution(), array_construct_opr_handler(), array_construct_semantics(), array_dim_resolution(), Array_Edge_To_Level_Edge(), Array_Element_Then_Struct(), array_element_to_scalar(), Array_Is_HFA(), Array_Shapes_Match_At_Formal(), Array_Subscript_Uses_IV(), ARRAY_TRANSPOSE_DESCRIPTOR::ARRAY_TRANSPOSE_DESCRIPTOR(), Array_TY_OK(), arrayexp_in_subtree(), ARY_Item_In_List(), AS_Traverse(), asg_opnd_to_tmp(), Assemble_Bundles(), Assemble_Ops(), assert_semantics(), assign_file_positions_except_relocs(), assign_file_positions_for_segments(), assign_new_idxs(), assign_new_idxs_after_input(), assign_offset(), Assign_Registers(), Assign_Registers_For_OP(), assign_section_numbers(), assign_stmt_semantics(), assign_storage_blk(), ALIAS_CLASSIFICATION::Assignment_may_xfer_pointer(), assignment_stmt_semantics(), AssignPregExprPos(), associated_intrinsic(), At_Unallocated_Op_Definition(), Atoi_KMG(), Atomic_Direct(), Atomic_Using_Critical(), Atomic_Using_Swap(), attach_initialized_static_class(), Attempt_Merge(), Attempt_Reshape(), attr_init_semantics(), attr_is_in_list(), attr_link_resolution(), Augment_Simple_Basic_Shackle(), Auto_Parallelization(), LOCAL_CLSC::Aux_id_in_bs(), Avoid_Unit_Spill(), b4const_or_zero(), b_out_bfd_get_relocated_section_contents(), b_out_bfd_relax_section(), b_out_mkobject(), b_out_set_arch_mach(), b_out_set_section_contents(), b_out_slurp_reloc_table(), b_out_squirt_out_relocs(), b_out_write_object_contents(), Backend_Processing(), CIO_RWTRAN::Backpatch_Op_In_Epilog(), CIO_RWTRAN::Backpatch_Op_In_Prolog(), backspace_stmt_semantics(), Backward_Visit(), baseAddress(), BB1_Postdominate_BB2(), RGN_CFLOW_MGR::BB1_Reachable_From_BB2(), DCE::BB_branch_live(), BB_Check_Bundle_Integrity(), BB_Has_Addr_Taken_Label(), BB_Has_Already_Been_Splitted(), BB_has_backedge(), BB_has_backedge_and_is_invariant(), BB_has_barrier(), BB_Has_Exc_Label(), BB_has_goto_bb(), BB_Has_Outer_Block_Label(), BB_Has_Store(), BB_has_target_bb(), BB_has_unpaired_dma_begin(), BB_Hold_Disjoint_Speculative_Code(), BB_Is_Cold(), BB_Is_Followed_By_Call(), EDGE_PROFILE::BB_Is_For_Instru(), EDGE_PROFILE::BB_Is_In_BBLIST(), RGN_CFLOW_MGR::BB_Is_Reachable(), BB_Is_Unique_Instr_Predecessor(), BB_LOOP::BB_LOOP(), BB_MAP_Delete(), BB_Move_Delay_Slot_Op(), BB_not_processed(), REGIONAL_CFG::BB_Not_Suit_Duplicate(), BB_REGION_Calculate_Dominators(), BB_Retarget_Branch(), BB_SET_Calculate_Dominators(), BB_Unique_Successor_Not_In_Set(), BB_Verify_Chk_Split(), BB_Verify_Recovery(), BB_Verify_Reg_Alloc(), BB_Verify_Sched(), BE_Symtab_Initialize(), VECTOR_SPACE< T >::Beautify(), Best_Issue_Port(), bfd_alt_mach_code(), bfd_arm_allocate_interworking_sections(), bfd_arm_get_bfd_for_interworking(), bfd_arm_merge_machines(), bfd_arm_process_before_allocation(), bfd_arm_update_notes(), bfd_boolean(), bfd_cache_close(), bfd_cache_close_all(), bfd_cache_delete(), bfd_cache_init(), bfd_check_format_matches(), bfd_close(), bfd_coff_get_auxent(), bfd_coff_get_syment(), bfd_coff_reloc16_get_value(), bfd_coff_reloc16_relax_section(), bfd_coff_set_symbol_class(), bfd_default_scan(), bfd_default_set_arch_mach(), bfd_ecoff_debug_accumulate(), bfd_ecoff_debug_accumulate_other(), bfd_ecoff_debug_externals(), bfd_ecoff_debug_one_external(), bfd_ecoff_set_gp_value(), bfd_ecoff_set_regmasks(), bfd_ecoff_write_accumulated_debug(), bfd_ecoff_write_debug(), bfd_elf64_archive_slurp_armap(), bfd_elf64_archive_write_armap(), bfd_elf_discard_info(), bfd_elf_final_link(), bfd_elf_gc_common_finalize_got_offsets(), bfd_elf_gc_record_vtentry(), bfd_elf_gc_record_vtinherit(), bfd_elf_gc_sections(), bfd_elf_get_bfd_needed_list(), bfd_elf_link_record_dynamic_symbol(), bfd_elf_match_symbols_in_sections(), bfd_elf_mkobject(), bfd_elf_record_link_assignment(), bfd_elf_reloc_symbol_deleted_p(), bfd_elf_set_group_contents(), bfd_elf_size_dynamic_sections(), bfd_fdopenr(), bfd_fill_in_gnu_debuglink_section(), bfd_find_target(), bfd_generic_discard_group(), bfd_generic_gc_sections(), bfd_generic_get_relocated_section_contents(), bfd_generic_merge_sections(), bfd_generic_relax_section(), bfd_get_section_contents(), bfd_hash_table_init_n(), bfd_i386linux_size_dynamic_sections(), bfd_m68k_coff_create_embedded_relocs(), bfd_m68k_elf32_create_embedded_relocs(), bfd_m68klinux_size_dynamic_sections(), bfd_mach_o_bfd_copy_private_bfd_data(), bfd_mach_o_bfd_copy_private_section_data(), bfd_mach_o_bfd_copy_private_symbol_data(), bfd_mach_o_core_file_matches_executable_p(), bfd_mach_o_mkobject(), bfd_mach_o_write_contents(), bfd_make_readable(), bfd_make_section(), bfd_make_section_anyway(), bfd_make_section_old_way(), bfd_make_writable(), bfd_malloc_and_get_section(), bfd_open_file(), bfd_pef_mkobject(), bfd_preserve_save(), bfd_record_phdr(), bfd_section_already_linked_table_lookup(), bfd_section_from_phdr(), bfd_section_from_shdr(), bfd_set_archive_head(), bfd_set_default_target(), bfd_set_file_flags(), bfd_set_format(), bfd_set_section_contents(), bfd_set_section_flags(), bfd_set_section_size(), bfd_set_start_address(), bfd_set_symtab(), bfd_slurp_armap(), bfd_slurp_bsd_armap_f2(), bfd_sparclinux_size_dynamic_sections(), bfd_sunos_record_link_assignment(), bfd_sunos_size_dynamic_sections(), bfd_true(), bfd_wrapped_link_hash_lookup(), bfd_xcoff_export_symbol(), bfd_xcoff_import_symbol(), bfd_xcoff_link_count_reloc(), bfd_xcoff_link_generate_rtinit(), bfd_xcoff_link_record_set(), bfd_xcoff_record_link_assignment(), bfd_xcoff_size_dynamic_sections(), bin_array_syntax_check(), binary_get_section_contents(), binary_mkobject(), binary_set_section_contents(), Bind_Stack_Frame(), bit_size_intrinsic(), bitmap_element_allocate(), bits_and_bytes_to_words(), BITWISE_DCE::Bitwise_dce(), blk_match_err(), Block_Has_Prompf_Construct(), Block_Is_Empty(), block_jumps_and_fallthru_p(), Block_Loop_Depth(), block_move_sequence(), BND_Max_Expr(), BND_Min_Expr(), BND_Verify_Expression(), BND_Verify_Nest_Bounds(), Bool_Group_Value(), boolean_operator(), Both_Invariant(), GLOBAL_ANNOT::Bottom(), ETABLE::Bottom_up_cr(), ETABLE::Bottom_up_stmt(), OPTCOUNT::Bottom_up_stmt(), Bound_Difference_To_Linex(), Bound_Is_Too_Messy(), bound_resolution(), bound_semantics(), bounds_cdir_handler(), ARA_LOOP_INFO::Bounds_Depend_On_Index(), DEPV_COMPUTE::Bounds_Set_Is_Used(), Branch_In_Region_List(), branch_operator(), Branch_Skips_First_Op(), branch_zero_operator(), BS_ContainsP(), BS_Crosses_MP_Region(), BS_EmptyP(), BS_EqualP(), BS_Find_Region(), BS_Has_If_In_Region(), BS_Has_Use_In_Subscript(), BS_IntersectsP(), BS_Is_Index_Variable(), BS_Is_Linearized(), BS_Loop_Within_Equivalence_Class(), BS_Matching_Load(), BS_Print(), BS_Range_Check(), bsd_write_armap(), buffer_stmt_semantics(), Build_Array_Dependence_Graph(), Build_Blocks_In_Region_List(), Build_Call_Graph(), Build_CFG(), AEQUIV::Build_CFG_Rec(), build_class_init(), build_compound_expr(), DAG_BUILDER::Build_DAG(), Build_Fde_For_Proc(), build_link_order(), build_loop_tbl(), Build_Ori_Blocks(), Build_Outgoing_Edges(), GOTO_TABLE::Build_Rec(), GTABLE::Build_Rec(), ARRAY_REF::Build_Rec(), ARRAY_LOWER_LOOP::Build_Refs(), Build_Regions(), build_search_list(), Build_Skiplist(), TRANSPOSE_DIRECTED_GRAPH16::Build_Snl(), TRANSPOSE_DIRECTED_GRAPH16::Build_Snl_Array(), RVI::Build_up_live_range(), Bundle_Helper(), bv_is_cover(), by_value(), c_build_bitfield_integer_type(), c_lex(), Cache_Access_Same_Line(), Cache_Adjust_Latency(), Cache_Has_Conflict(), Cache_Is_Normal(), Cache_L1_Analysis(), Cache_L1_Has_Data(), Cache_L2_Analysis(), Cache_L2_Has_Data(), Cache_Line_Edge_Reuse(), Cache_Location_Analysis(), Cache_Model(), CACHE_REGION::CACHE_REGION(), PROMPF_INFO::Cache_Tile(), PROMPF_INFO::Cache_Winddown(), Calc_Actual_Area(), SRC_BB_MGR::Calc_Cutting_Set_Between_Src_And_Targ(), Calc_Latency_To(), ARRAY_REF_LIST::Calc_Regs_And_Refs(), EXEC_PATH_MGR::Calc_Subgraph_Path_Num(), Calculate_Control_Dependences(), Calculate_Dominators(), Calculate_Interim_Split_Priority(), calculate_iteration_count(), LOCAL_CLSC::Calculate_liveness(), LRANGE::Calculate_Priority(), WN_Verifier::Call_children_are_PARM(), Call_Heuristic(), CALL_INFO::CALL_INFO(), call_insn_operand(), call_list_semantics(), call_operand(), WN_Verifier::CALL_parent_LDID(), ALIAS_CLASSIFICATION::Callee_changes_no_points_to(), IP_ALIAS_CLASSIFICATION::Callee_returns_new_memory(), ALIAS_CLASSIFICATION::Callee_returns_new_memory(), IP_ALIAS_CLASSIFICATION::Callee_saves_no_parms(), Calls_Alloca(), Can_Append_Succ(), Can_Apply_Default_Private(), Can_Be_Immediate(), CODEREP::Can_be_speculated(), Can_Be_Tail_Call(), SCHEDULER::Can_Cntl_Spec_If_Converted_Code(), Can_Def_Be_Moved(), Can_Do_Fast_Divide(), Can_Do_Fast_Multiply(), Can_Do_Fast_Remainder(), Can_Do_Safe_Predicate_Movement(), Can_Do_Tail_Calls_For_PU(), Can_Evaluate_Cost(), Can_fallthru(), Can_Fix_Array_Deps_On_Index_Variable(), Can_Inline_Call(), Can_Inst_Be_Moved(), Can_Map_Linex(), Can_Map_Projected_Region(), Can_Map_Term(), Can_Mem_Op_Be_Moved(), IF_CONVERTOR::Can_Merge_Into_One_BB(), GOTO_TABLE::Can_Move_Into_Else(), LFTR::Can_only_increase(), Can_OP_Move(), Can_raise_to_doloop(), EMITTER::Can_raise_to_scf(), Can_Schedule_HB(), HB_Schedule::Can_Schedule_Op(), Can_Use_Be_Moved(), cancel_in_relop(), RINIT::Cancel_internal_gotos(), STR_RED::Candidate(), STR_RED::Candidate_phi_res(), CODEMAP::Canonicalize_compare(), carry_compare_operand(), cast_to_cg_default(), cast_to_type_idx(), cast_typeless_constant(), cc_get_stmt(), cc_get_token(), cc_operand(), cc_register(), ccr_eqne_operator(), LU_MAT< T >::Cfactor_And_Insert(), CFG::CFG(), Cflow_Change_Succ(), CG_Configure_Opt_Level(), CG_DEP_Add_Same_Res_Arcs(), CG_DEP_Alloca_Aliases(), CG_DEP_Call_Aliases(), CG_DEP_Can_OP_Move_Across_Call(), CG_DEP_Mem_Ops_Alias(), CG_DEP_Mem_Ops_Offsets_Overlap(), CG_DEP_Prune_Dependence_Arcs(), CG_DEP_Trace_Op_Arcs(), CG_DEP_Trace_Op_SCC_Arcs(), Cg_Dwarf_Add_Line_Entry(), Cg_Dwarf_Process_PU(), Cg_Dwarf_Write_Assembly_From_Symbolic_Relocs(), CG_Edge_Profile_Annotation(), CG_Edge_Profile_Instrument(), CG_Generate_Code(), CG_Init(), CG_LOOP_Make_Strongly_Connected_Components(), CG_LOOP_Optimize(), CG_PU_Initialize(), CG_SCHED_EST_Append_Scheds(), CG_SCHED_EST_Create(), CG_SCHED_EST_Create_Empty(), CG_SCHED_EST_Ignore_Op(), CG_Set_Is_Stack_Used(), CGEMIT_Print_Initialized_Variable(), CGEMIT_Print_INITV(), CGEMIT_Print_Inst(), CGEMIT_Print_Variable(), CGEMIT_Prn_Scn_In_Asm(), CGEXP_Can_Do_Fast_Multiply(), CGGRP_Bundle_BB(), CGGRP_Bundle_OPS(), CGGRP_Check_Split_BB(), CGGRP_Init(), CGGRP_Issue_OP(), CGSPILL_TN_Can_Be_Spilled(), CGTARG_Analyze_Compare(), CGTARG_Branches_On_True(), CGTARG_Bundle_Slot_Available(), CGTARG_Bundle_Stop_Bit_Available(), CGTARG_Can_Be_Speculative(), CGTARG_Can_Predicate(), CGTARG_Can_Predicate_Branches(), CGTARG_Can_Predicate_Calls(), CGTARG_Can_Predicate_Returns(), CGTARG_Check_OP_For_HB_Suitability(), CGTARG_Dependence_Required(), CGTARG_Generate_Branch_Cloop(), CGTARG_Generate_Countdown_Loop(), CGTARG_Generate_Remainder_Branch(), CGTARG_Has_Branch_Predict(), CGTARG_Initialize(), CGTARG_Interference_Initialize(), CGTARG_Is_Long_Latency(), CGTARG_Is_OP_Advanced_Load(), CGTARG_Is_OP_Barrier(), CGTARG_Is_OP_Check_Load(), CGTARG_Is_OP_Speculative(), CGTARG_Is_OP_Speculative_Load(), CGTARG_Is_Preference_Copy(), CGTARG_Is_Right_Shift_Op(), CGTARG_Is_Thread_Local_Memory_OP(), CGTARG_live_out_of(), CGTARG_Load_with_UNAT(), CGTARG_LOOP_Optimize(), CGTARG_Perform_THR_Code_Generation(), CGTARG_Postprocess_Asm_String(), CGTARG_Preg_Register_And_Class(), CGTARG_Store_With_UNAT(), CGTARG_Unconditional_Compare_Helper(), CGTARG_Use_Load_Latency(), CFG::Change_block_kind(), Change_ld_Form(), SCHED_SPEC_HANDSHAKE::Change_Load_Spec_Form(), change_section_to_do(), change_subscript(), Change_Switchtable_Entries(), char_bounds_resolution(), char_intrinsic(), char_len_resolution(), character_to_character(), PF_LG::Check(), check_absence_pattern_sets(), check_actual_and_dummy(), check_allocatable_pointer_optional(), Check_Allow_Reorder(), Check_Allow_Reschedule(), IPAA_DF_SOLVER::Check_and_accumulate_ref_info(), check_and_allocate_common_storage(), check_arg_for_co_array(), check_array_bounds(), Check_Arrays(), check_asg_semantics(), Check_BB_Consistency(), Check_BB_For_HB_Suitability(), Check_CFG_Consistency(), check_cond_move_block(), DCE::Check_conditional_branches_dom(), DCE::Check_conditional_branches_pred(), DCE::Check_constant_cond_br(), FOLD::check_convert(), Check_Cross_Boundary(), check_dependence(), Check_Divide(), Check_Doacross_Sync_Coverage(), check_elemental_conformance(), check_excluded_libs(), check_existence_of_phases(), Check_Expr(), Check_FF2C_Script(), Check_For_Bundle_Hazards(), Check_for_Cycles(), check_for_driver_controls(), check_for_dup_derived_type_lbl(), check_for_duplicate_renames(), check_for_whirl(), check_forall_triplet_for_index(), check_format_info_main(), Check_Global_Preference(), check_gsymbol_for_invalid_type(), Check_HB_For_PQS_Suitability(), Check_If_Ignore_BB(), NORMALIZE_LOOP::Check_if_index_is_passed(), CFG::Check_if_it_can_reach_body_first_bb(), Check_If_Should_Align_BB(), check_il_for_attrs(), check_init(), Check_Inline_Script(), Check_Interior_Predecessor_Spill_Cost(), check_interoperable_constraints(), check_interoperable_data(), check_interoperable_type(), check_ir_for_attrs(), check_label_ref(), Check_loadbw_execute(), Check_Local_Pool_Initialized(), PROMPF_INFO::Check_New_Ids(), Check_No_Use_Between(), check_nocrossref(), PROMPF_INFO::Check_Old_Ids(), check_presence_pattern_sets(), DCE::Check_redundant_cond_br_new(), PF_LG::Check_Ref(), check_regexp_units_distribution(), Check_Region(), Check_Region_Recur(), check_reorder_legality_of_type(), DCE::Check_required_doend(), DSE::Check_Required_Expr(), DATA_SPEC_RES_CONSTRAIT_MGR::Check_Res_Constraint(), DATA_SPEC_RES_CONSTRAIT_MGR::Check_Res_Constraint_Helper(), check_section_ebb_pcrels_fit(), check_section_ebb_reduces(), check_section_open_mp_context(), check_size(), check_size_and_freq(), check_stat_variable(), check_substring_bounds(), check_target_and_value(), Check_TN_BB_LIST_MAPs_Allocated(), PROMPF_INFO::Check_Traverse(), Check_Trip_Counts(), Check_Trip_Counts_Traverse(), check_type_for_size_address(), Check_Undefined_Results(), check_unit_distributions_to_automata(), Check_Version_Map(), Check_Vertices_Traverse(), Check_volatility(), check_where_conformance(), Choose_Avoiding_Neighbor_Preferences(), Choose_Best_Register(), Choose_Noones_Preference(), Choose_Preference(), IVR::Choose_primary_IV(), CIO_RWTRAN::CICSE_Transform(), cif_flush_include_recs(), cif_prog_unit_init(), cif_send_attr(), cif_send_sytb(), cif_stmt_type_rec(), cif_usage_rec(), CIO_RWTRAN::CIO_Copy_Remove(), cisco_core_file_matches_executable_p(), ck_lbl_construct_name(), Classes_Match(), Classify_BB(), IF_CONVERTOR::Classify_BB(), SUMMARIZE< program >::Classify_const_value(), IP_ALIAS_CLASSIFICATION::Classify_deref_of_expr(), ALIAS_CLASSIFICATION::Classify_deref_of_expr(), SUMMARIZE< program >::Classify_indirect(), IP_ALIAS_CLASSIFICATION::Classify_lhs_of_store(), ALIAS_CLASSIFICATION::Classify_lhs_of_store(), ALIAS_CLASSIFICATION::Classify_memops(), cleanup_matches(), SORTED_MAP< KEY, RANGE >::clear(), IPO_ADDR_HASH::Clear(), clobber_millicode_symbols(), BB_NODE::Clonable(), STMTREP::Clone(), CFG::Clone_bb(), Clone_Blocks(), IPO_INLINE::Clone_Callee(), Clone_for_this_formal(), clone_section(), close_one(), close_stmt_semantics(), SD_INFO::Closure(), SD_INFO::Closure_ILoad(), SD_INFO::Closure_IStore(), SD_INFO::Closure_Ldid(), SD_INFO::Closure_Stid(), cmp_ref_trees(), coalesce_shared_literal(), LOOP_INVAR_CODE_MOTION::Code_Motion_Is_Profitable(), coff_a29k_adjust_symndx(), coff_a29k_relocate_section(), coff_arm_adjust_symndx(), coff_arm_copy_private_bfd_data(), coff_arm_final_link_postscript(), coff_arm_merge_private_bfd_data(), coff_arm_print_private_bfd_data(), coff_arm_relocate_section(), coff_find_nearest_line(), coff_get_normalized_symtab(), coff_i960_adjust_symndx(), coff_i960_relocate_section(), coff_i960_start_final_link(), coff_link_add_object_symbols(), coff_link_add_symbols(), coff_link_check_ar_symbols(), coff_link_check_archive_element(), coff_m68k_aux_link_add_one_symbol(), coff_mcore_relocate_section(), coff_or32_adjust_symndx(), coff_or32_relocate_section(), coff_pe_mips_relocate_section(), coff_ppc_relocate_section(), coff_renumber_symbols(), coff_small_new_section_hook(), coff_tic80_relocate_section(), coff_write_alien_symbol(), coff_write_armap(), coff_write_linenumbers(), coff_write_native_symbol(), coff_write_symbol(), coff_write_symbols(), collapse_interface_blk(), Collect_addr_passed(), Collect_addr_passed_for_io(), SCHEDULER::Collect_And_Analyse_Other_Than_Dep_Constraints(), SCHEDULER::Collect_And_Analyse_Unresolved_Dep(), COND_BOUNDS_INFO::Collect_If_Info(), PARTITION_GRAPH::Collect_Info(), OPT_STAB::Collect_nested_ref_info(), COND_BOUNDS_INFO::Collect_Outer_Info(), SNL_BOUNDS_INFO::Collect_Outer_Info(), collect_source_relocs(), combine_adjacent_loads(), Combine_div_operator(), Combine_intrinsic_operator(), Combine_L1_L2_Prefetches(), Combine_minmax_operator(), Combine_rem_operator(), SCHEDULER::Commit_Schedule(), Common_Variable(), comp_unit_contains_address(), PROJECTED_REGION::Compare(), compare_and_swap_intrinsic(), compare_array_entries(), compare_bit(), CODEREP::Compare_bitpos(), compare_cn_and_value(), Compare_Cost(), compare_darg_to_actual_arg(), compare_derived_types(), compare_dummy_arguments(), compare_func_result(), compare_global_args(), compare_global_array(), compare_global_derived_type(), compare_global_type_rank(), compare_il(), compare_ir(), Compare_Priorities(), Compare_Self_Recursive_Cost(), Compare_Type(), compare_value_to_cn(), compared_operand_has_index(), Compatible_Expressions(), Compatible_Mtypes(), Compatible_Type(), Complement_TN_Reference(), FB_CFG::Complete_delayed_edges(), complete_intrinsic_definition(), Completely_replaced(), Compose_Addr(), compress_type_tbl(), DEPV_COMPUTE::Compute(), Compute_BB_Graph(), Compute_BR_Prob_From_Feedback(), Compute_BR_Prob_From_Hint(), FAVOR_DELAY_HEUR::Compute_Delay(), Compute_Doacross_Delay_Cycle(), Compute_Doacross_Sync_Cycle(), INTERVAL_PROCESSOR::Compute_Dominators(), REGIONAL_CFG::Compute_Duplicate_Ratio(), compute_ebb_actions(), compute_ebb_proposed_actions(), Compute_Footprint(), OPT_STAB::Compute_FSA_stmt_or_expr(), EXP_WORKLST::Compute_fully_avail_stops(), REGIONAL_CFG::Compute_Nodes_To_Be_Duplicated(), Compute_Reg_State(), Compute_Region_Graph(), OPT_STAB::Compute_region_mu_chi(), compute_removed_literals(), REGIONAL_CFG::Compute_Scope_Based_On_Main_Exit(), Compute_Split_Regions(), compute_text_actions(), IVR::Compute_trip_count(), EMITTER::Compute_use_def(), PF_UGS::ComputePFVec(), concat_opr_handler(), cond_exec_operand(), cond_exec_process_if_block(), cond_exec_process_insns(), COND_If_Info(), Cond_Is_64Bit(), Cond_Is_Unsigned(), cond_move_operand(), cond_move_process_if_block(), condexec_branch_operator(), condexec_dest_operand(), condexec_extend_operator(), condexec_memory_operand(), condexec_sf_add_operator(), condexec_sf_conv_operator(), condexec_si_binary_operator(), condexec_si_divide_operator(), condexec_si_media_operator(), condexec_si_unary_operator(), condexec_source_operand(), condexec_test_operator(), condexec_unary_operator(), condition_optimization(), condition_redundant(), Conditionally_Assigned(), Configure(), Configure_Alias_Options(), Configure_CG_Options(), Configure_Ofast(), Configure_Prefetch(), Configure_Source(), Configure_Source_Target(), Configure_Target(), ARRAY_REF_LIST::Conflict_Refs(), conform_check(), Connect_call_graph(), const_addr_memory_operand(), const_float_1_operand(), const_init_semantics(), const_ok_for_arm(), ARA_LOOP_INFO::Const_Work_Estimate(), constant_array_base(), PROJECTED_REGION::Constant_bounds(), Constant_Dimension(), Constant_Linex_Value(), Constant_Operand0(), Constant_Operand1(), constant_value_semantics(), constantpool_address_p(), constraint_by_address(), constraint_supported(), Construct_Fld_Path(), constructor_callback(), Contain_Vectorizable_Intrinsic(), Contained_In_Loop(), SYMBOL_LIST::Contains(), REGION_UN::Contains(), CODEREP_CONTAINER::Contains(), CODEREP_LIST_CONTAINER::Contains(), CODEREP::Contains(), BB_LIST_CONTAINER::Contains(), CR_PAIR_LIST::Contains(), MU_LIST::Contains(), USE_LIST::Contains(), BB_LOOP::Contains(), BB_LIST::Contains(), DEF_LIST::Contains(), CR_PAIR_LIST_CONTAINER::Contains(), CODEREP_LIST::Contains(), REGION::Contains(), DEPV_LIST::Contains_All_Equals(), Contains_Array(), Contains_Calls(), Contains_Dedicated_Preg(), Contains_FP_Non_Load(), Contains_ILoad_Without_Vertex(), CODEREP::Contains_image(), Contains_Index_Variable(), Contains_Indirect_Load(), Contains_Intrinsic_Op(), Contains_Load(), CODEREP::Contains_only_constants(), Contains_only_the_var(), TRANSPOSE_DIRECTED_GRAPH16::Contains_Parallelizable(), Contains_Reshaped_Array(), AEQUIV::Contains_Unread_Array(), Contains_Varying_Indirect_Load(), Contains_Vertex(), STMTREP::Contains_volatile_ref(), Contains_Work(), PARTIAL_AVAIL_SEARCH::Continue_from_to(), CANT_BE_AVAIL_SEARCH< PRE_DIRECTION >::Continue_from_to(), CFG::Conv_to_select(), Convert_Alloca_To_Intrinsic(), IF_CONVERTOR::Convert_Candidates(), convert_const(), Convert_Do_Loops_Conditionals(), Convert_Goto_To_If(), Convert_Goto_To_Return(), convert_hex_literal(), Convert_If_To_Goto(), Convert_Imm_Add(), Convert_Imm_And(), Convert_Imm_Cmp(), Convert_Imm_Mul(), Convert_Imm_Or(), Convert_Imm_Xor(), Convert_Indirect_Goto_To_Direct(), Convert_Just_Chunksize_To_Dynamic(), Convert_OP_to_base_update_form(), REGION_BOUND::Convert_ST_list(), OPT_STAB::Convert_ST_to_AUX(), convert_stmt_list_to_OPs(), CODEMAP::Convert_to_loop_invar(), Convert_Tree_Leaves(), Convert_virtual_call(), Convert_WHIRL_To_OPs(), Convert_x87_Regs(), Convex_Peeling_Depth(), copy_and_replace_tmps(), DEPV_COMPUTE::Copy_Bound_To_Work(), DEPV_COMPUTE::Copy_Bounds_To_Work(), DEPV_COMPUTE::Copy_Call_Ref_To_Work(), DEPV_COMPUTE::Copy_Call_To_Work(), copy_entry_exit_sh_list(), DEPV_COMPUTE::Copy_Equal_To_Work(), DEPV_COMPUTE::Copy_Equals_To_Work(), Copy_Exit_BB_Annot(), copy_from_gl_subtree(), SYSTEM_OF_EQUATIONS::Copy_Inverse_To_Work(), DEPV_COMPUTE::Copy_Le_To_Work(), Copy_Non_MP_Tree(), Copy_Non_MP_Tree_Rec(), copy_phase_options(), copy_private_bfd_data(), COPYPROP::Copy_propagate_cr(), Copy_Restricted_Map(), copy_rf_sequence(), copy_sbtree(), copy_simplification(), DEPV_COMPUTE::Copy_Stride_To_Work(), SUMMARIZE< program >::Copy_summary_ctrl_dep(), copy_symbols(), PARTITION_GRAPH::Copy_To(), SYSTEM_OF_EQUATIONS::Copy_To_Work(), SYSTEM_OF_EQUATIONS::Copy_To_Work_Eq(), count_dyn_reloc(), Count_Limit_DevWarn(), PATTERN_TYPE::Count_Slot(), OPT_STAB::Count_syms(), CR_is_equivalent(), CR_match_kids(), cr_operand(), CR_Simplify_Initialize(), FOLD::CR_Simplify_Tree(), CFG::Create(), OPT_STAB::Create(), create_alloc_descriptor(), create_argchck_descriptor(), create_array_constructor_asg(), create_bd_ntry_for_const(), Create_Chance_For_MLBR(), Create_Cold_Region(), WN_INSTRUMENT_WALKER::Create_Comma_Kid(), Create_Common_Block(), GRA_REGION_MGR::Create_Complement(), CFG::Create_conditional(), create_constructor_constant(), Create_Critical_Lock(), Create_DST_type_For_Tree(), CFG::Create_empty_preheader(), OPT_STAB::Create_entry_chi(), CODEREP::Create_exp_in_bb(), Create_Field_Entry(), create_format_tmp(), Create_Global_ST(), create_got_section(), create_imp_do_loops(), Create_Initialize_Loop(), create_interp_stmts(), create_io_call_descriptor(), Create_Io_Entry(), create_kwd_text(), create_lib_entry_attr(), create_linkage_sections(), ARA_LOOP_INFO::Create_Live_Use(), RVI_NODE::Create_load(), Create_Local_Array_ST(), ARRAY_LOWER_REF::Create_Local_Block_Dim(), Create_Local_Variables(), create_loop_stmts(), Create_MemTools_Load(), Create_MemTools_MakeGlobal(), Create_MemTools_MakeLocal(), Create_MemTools_RemoveLocal(), Create_MemTools_Store(), Create_Merged_Block(), Create_MicroTask(), create_mod_info_file(), create_mod_info_tbl(), Create_Name_Lock(), create_namelist_descriptor(), Create_New_Array_Type(), Create_New_DST(), ARA_LOOP_INFO::Create_New_IF_Clause(), ARRAY_LOWER_REF::Create_Remote_Blkcyc_Dim(), ARRAY_LOWER_REF::Create_Remote_Block_Dim(), ARRAY_LOWER_REF::Create_Remote_Cyclic_Dim(), create_runtime_array_constructor(), create_runtime_struct_constructor(), create_scalar_type_tbl(), Create_Simple_Shackle_Loops(), Create_Single_Region(), Create_ST_For_Tree(), Create_ST_TO_FLD_MAP(), ARRAY_LOWER_REF::Create_Star_Dim(), RVI_NODE::Create_store(), create_strct_tbl(), Create_Stride1_Condition_If_Required(), create_struct_argchck_tbl(), create_struct_constructor_asg(), Create_Stub_BB(), Create_Sync_Structure(), create_tmp_DV_asg(), create_tmp_from_stmt_func(), Create_TY_For_Tree(), Create_Unique_Defs_For_TNs(), Create_Unnamed_Critical_Lock(), Create_Unroll_Copy(), Create_Vector_Load_Stores(), cref_fill_array(), cris_elf_check_relocs(), cris_elf_copy_private_bfd_data(), cris_elf_gc_sweep_hook(), cris_elf_grok_psinfo(), cris_elf_merge_private_bfd_data(), cris_elf_print_private_bfd_data(), cris_elf_relocate_section(), cris_elf_set_mach_from_flags(), cris_parse_disassembler_options(), cris_split_movdx(), RGN_CFLOW_MGR::Critical_Edge_Present(), Cross_Loop_Cache_Analysis(), crx_addr_reg_p(), crx_legitimate_address_p(), Cse_Or_Dup(), cshift_intrinsic(), csmg_intrinsic(), cvmgp_intrinsic(), cvrt_exp_to_pdg(), cvrt_opr_handler(), cvrt_proc_to_pdg(), cvrt_str_to_cn(), cvrt_sytb_to_pdg(), cwh_addr_f90_pointer_reference(), cwh_addr_insert_bounds_check(), cwh_addr_stid(), cwh_addr_substr_util(), cwh_addr_temp_section(), cwh_auxst_add_item(), cwh_auxst_add_list(), cwh_auxst_alloc_proc_entry(), cwh_auxst_distr_preg(), cwh_auxst_find_dummy(), cwh_auxst_next_element(), cwh_auxst_set_flag(), cwh_auxst_srcpos_addr(), cwh_auxst_srcpos_val(), cwh_block_push_block(), cwh_directive_barrier_insert(), cwh_do_tranformational(), cwh_dope_from_expression(), cwh_dst_array_type(), cwh_dst_dope_type(), cwh_dst_has_dope(), cwh_dst_is_character_TY(), cwh_dst_member(), cwh_dst_mk_const(), cwh_dst_mk_dope_bound(), cwh_dst_mk_formal(), cwh_dst_mk_func(), cwh_dst_mk_MAIN(), cwh_dst_mk_variable(), cwh_dst_struct_has_DST(), cwh_expr_compare_char(), cwh_expr_temp(), cwh_intrin_ieee_intrin_call_helper(), cwh_intrin_ieee_intrin_helper(), cwh_intrin_sync_intrin(), cwh_intrin_wrap_ref_parm(), cwh_io_analyse_arr(), cwh_io_analyse_expr(), cwh_io_analyse_io_item(), cwh_io_analyse_io_statement(), cwh_io_null_address(), cwh_mp_region(), cwh_stab_altres_offset(), cwh_stab_common_ST(), cwh_stab_mk_fn_0args(), cwh_stab_split_common(), cwh_stab_visited(), cwh_stk_is_byte_STR(), cwh_stmt_add_to_preamble(), cwh_stmt_call_helper(), cwh_stmt_character_icall(), cwh_stmt_insert_conformance_check(), cwh_types_array_util(), cwh_types_ch_parm_TY(), cwh_types_copyin_pragma(), cwh_types_dim_struct_TY(), cwh_types_dim_TY(), cwh_types_dope_TY(), cwh_types_in_dtype(), cwh_types_is_dope(), cwh_types_mk_array_TY(), cwh_types_mk_basic_TY(), cwh_types_mk_character_TY(), cwh_types_mk_dope_invariant_TY(), cwh_types_mk_element(), cwh_types_mk_f90_pointer_ty(), cwh_types_mk_logical_TY(), cwh_types_mk_misaligned_TY(), cwh_types_mk_namelist_item_TY(), cwh_types_mk_namelist_TY(), cwh_types_mk_procedure_TY(), cwh_types_mk_result_temp_TY(), cwh_types_mk_struct(), cwh_types_mk_unique_pointer_TY(), PARTITION_GRAPH::Cycle_Detector(), DISTR_DIM::CyclicOne(), CYG_Instrument_Block(), d30v_emit_cond_move(), d30v_mode_dependent_address_p(), MAT< T >::D_Add_Identity_Rows_and_Cols(), DISTR_ARRAY::DACT_Equiv(), data_imp_do_semantics(), data_repeat_semantics(), data_stmt_semantics(), daVinci::daVinci(), CG_BROWSER::DaVinci_Toggle(), WB_BROWSER::DaVinci_Toggle(), DB_Rename_Cond_TN_Init(), dbl_memory_one_insn_operand(), dbl_memory_two_insn_operand(), LOOP_DCE::Dead_Code_Elimination(), dead_or_predicable(), Dead_Stid(), dealloc_obj_opr_handler(), deallocate_stmt_semantics(), dec_dynrel_count(), decl_is_needed_vtable(), decl_semantics(), decl_semantics_driver(), Declare_Func_N_Arg(), Declare_Func_One_Arg(), Declare_Func_Three_Arg(), Declare_Func_Two_Arg(), Declare_Func_Zero_Arg(), Declare_Function(), decompose_address(), CODEREP::Def_at_entry(), Def_Before_Use(), HOIST_SUMMARY::Def_occur_allows_hoisting(), default_data_link_order(), default_indirect_link_order(), default_init_semantics(), defined_bin_opr_handler(), STR_RED::Defined_by_iv_update(), STR_RED::Defined_by_iv_update_no_def(), defined_un_opr_handler(), Defines_Mapped_TN(), Defreach_Propagate(), Defs_Can_Be_Merged(), Del_Cur_Item(), Del_Item(), REGIONAL_CFG::Del_Node(), PARTITION_GRAPH_NODE::Del_Related_TN(), Delay_Scheduling_OP(), VALNUM_FRE::delete_all_occurs(), CFG::Delete_bb(), Delete_Call(), BITWISE_DCE::Delete_cvtls(), delete_duplicate_op(), delete_gtn_use_arc(), delete_memory_op(), delete_reload_across_dependency(), Delete_stmts(), delete_subset_mem_op(), Delete_Unreachable_Blocks(), Delete_Unwanted_Prefetches(), Delinearize_Shape(), Dep_Carried_By_Outer_Loop(), Dep_Carried_Outside_Or_Zero(), DEP_Lex_Pos_Compose(), Dep_Preserved(), Dependence_Walk(), DAG_OPS_INFO::Dependencies(), Dependent_Between_OPs(), Depv_Already_On_List(), Depv_Carried_By_Outer_Loop(), Depv_Collapse(), _tagRGN_CFG_PATH_INFO::Derive_RGN_CFG_PATH_INFO_from_BB_Node(), _tagRGN_CFG_PATH_INFO::Derive_RGN_CFG_PATH_INFO_from_REGION_Node(), IF_CONVERTOR::Detect_Para_Comp(), Determine_Candidate_Blocks(), EXP_WORKLST::Determine_inserts_saves_deletions(), STR_RED::Determine_iv_update(), STR_RED::Determine_iv_update_phi(), ARA_LOOP_INFO::Determine_Last_Value(), determine_lb_ub(), ARA_LOOP_INFO::Determine_Peel(), determine_phase_order(), determine_stmt_type(), CG_LOOP::Determine_SWP_Unroll_Factor(), IVR::Determine_trip_IV_and_exit_count(), DFS_Search(), di_operand(), POINTS_TO::Different_base(), Digest_Archive(), digit_is_format_label(), digits_intrinsic(), dim_intrinsic(), directive_region_error(), directive_stmt_semantics(), directory_is_writable(), Disable_opt(), MP_INFO::Disable_Plowering(), Disallowed_Homeable(), Disambiguate_Aliased_Actuals(), Discard_Possibly_Empty_Loops(), discombobulate_structure_ref(), Dismantle_Do(), display_version(), DISTR_INFO::DISTR_INFO(), PAR_STAT::Distribute(), ARRAY_DESCRIPTOR::Distribute_Array(), PAR_STAT::Distribute_By_Splitting(), PAR_STAT::Distribute_For_Permutation(), Distribute_Traverse(), PROMPF_INFO::Distribution(), Divide_Exp_By_Const(), CODEREP::Divisable(), RVI_LR::Do_anything(), do_as_repeat(), Do_Automatic_Transformation(), Do_Build_Recovery_Block(), AEQUIV::Do_Color(), Do_Control_Flow_Analysis_Of_Unwind_Info(), do_copy(), CSE::Do_cse_pass_1(), CSE::Do_cse_pass_2(), Do_cyg_instrument_p(), do_fix_for_relocatable_link(), Do_Handlers(), do_inline(), Do_Loop_Explicit_Affinity(), do_loop_expr_semantics(), Do_Loop_Implicit_Affinity(), DO_LOOP_INFO::DO_LOOP_INFO(), Do_Loop_Is_Mp(), OPT_MTYPE_B::Do_mtype_b_cr(), Do_Non_Copy(), do_one(), do_pad(), Do_Pre_Before_Ivr(), do_read_namelist_semantics(), REGIONAL_CFG::Do_Selective_Add(), REGIONAL_CFG::Do_Selective_Cut(), do_shared_object_padding(), do_single_asg(), do_slurp_bsd_armap(), do_slurp_coff_armap(), do_stmt_semantics(), COMP_UNIT::Do_vnfre(), do_with_relocs(), do_without_relocs(), Do_WOPT_and_CG_with_Regions(), WOVP::Do_wovp(), do_write_namelist_semantics(), Doacross_Cost(), Doacross_Init(), PROMPF_INFO::Doacross_Inner_Tile(), PROMPF_INFO::Doacross_Outer_Tile(), PROMPF_INFO::Doacross_Sync(), doall_cmic_semantics(), LOOP_INVAR_CODE_MOTION::Dom_All_Loop_Exits(), Dom_print_dom(), Dominates(), dominates_all_but_one_preds(), PROMPF_INFO::Donest_Middle_Tile(), PROMPF_INFO::Donest_Outer_Tile(), dope_vector_setup(), dot_product_intrinsic(), SCHED_DFLOW_MGR::Downard_Sched_Kill_LiveIn_Defs(), SCHED_DFLOW_MGR::Downward_Sched_Interfere_Nested_Rgns_LiveRanges(), DRA_Add_Clone(), DRA_Clone_Initialize(), DRA_Collect_Commons(), DRA_EC_Array_Portion_Parms(), DRA_EC_Declare_Types(), DRA_Info_Matches_Encoding(), DRA_Initialize(), DRA_Mangle_Call_Site(), DRA_Mangle_Entry(), DRA_Parse_Clone_Name(), DRA_Preprocess_Call_Site(), DRA_Preprocess_Entry(), DRA_Process_Commons(), DRA_Process_Globals(), DRA_Process_Requests(), draw_bb_dependence_graph(), draw_bb_op(), draw_flow_graph(), draw_global_cfg(), draw_partition_graph(), draw_region_tree(), draw_regional_cfg(), draw_regional_dependence_graph(), PROMPF_INFO::Dsm_Io(), PROMPF_INFO::Dsm_Local(), dsm_numthreads_intrinsic(), PROMPF_INFO::Dsm_Tile(), DST_begin_PU(), DST_build(), DST_Create_Subprogram(), DST_enter_array_type(), DST_enter_inlined_subroutine(), DST_enter_member_function(), DST_enter_normal_field(), DST_enter_param_vars(), DST_enter_static_data_mem(), DST_enter_struct_union_members(), DST_Init(), DST_line_overflow(), DST_put_array_type(), DST_put_common_inclusion(), DST_put_const_type(), DST_put_constant(), DST_put_entry_point(), DST_put_formal_parameter(), DST_put_inheritance(), DST_put_member(), DST_put_pointer_type(), DST_put_reference_type(), DST_put_subprogram(), DST_put_subroutine_type(), DST_put_template_type_param(), DST_put_typedef(), DST_put_variable(), DST_put_volatile_type(), SSA::Du2cr(), DU_Closure_Collect_Defs(), Du_Sanity_Check_r(), CFG_NODE_MAP::Dump(), EXEC_PATH::Dump(), CAND_LIST::Dump(), EXEC_PATH_SET::Dump(), dump_generic_node(), dump_loops(), FAVOR_DELAY_HEUR::Dump_OP_Heur_Info(), dump_region_tree(), dump_whirl_node(), Dump_Whirl_Node(), dump_wn(), Dump_WN(), dV_view_whirl(), dwarf1_unit_find_nearest_line(), dwarf_need_debug_line_section(), dwarf_transform_to_disk_form(), Each_Use_Has_Single_Def(), Eager_Ptr_Deref_Spec(), SUMMARIZE< program >::Easy_Trip_Count(), EBO_after_unrolling(), EBO_before_unrolling(), EBO_Can_Eliminate_Zero_Opnd_OP(), EBO_Can_Merge_Into_Offset(), EBO_Fix_Same_Res_Op(), EBO_Fold_Load_Duplicate(), EBO_Identify_Base_and_Offset(), EBO_Lea_Insertion(), EBO_Load_Execution(), EBO_Merge_Memory_Addr(), EBO_Post_Process_Region(), EBO_Pre_Process_Region(), EBO_predicate_complements(), EBO_predicate_dominates(), EBO_Process_Region(), EBO_Remove_Unused_Ops(), EBO_tn_available(), ecoff_add_bytes(), ecoff_add_string(), ecoff_collect_shuffle(), ecoff_compute_reloc_file_positions(), ecoff_compute_section_file_positions(), ecoff_get_extr(), ecoff_indirect_link_order(), ecoff_link_add_archive_symbols(), ecoff_link_add_externals(), ecoff_link_add_object_symbols(), ecoff_link_check_archive_element(), ecoff_link_write_external(), ecoff_reloc_link_order(), ecoff_set_symbol_info(), ecoff_slurp_reloc_table(), ecoff_slurp_symbolic_header(), ecoff_write_shuffle(), ecoff_write_symhdr(), REGIONAL_CFG::Edge_Freq(), Edge_has_new_cprop_annot(), Edge_Is_Reduction_Dependence(), REGIONAL_CFG::Edge_Prob(), Edges_Have_Equiv_Cprop_Annots(), EETARG_Generate_PIC_Entry_Code(), EH_Set_Has_Call(), einfo(), elf32_arm_nabi_grok_psinfo(), elf32_avr_check_relocs(), elf32_avr_gc_sweep_hook(), elf32_avr_relocate_section(), elf32_d10v_check_relocs(), elf32_d10v_gc_sweep_hook(), elf32_d10v_relocate_section(), elf32_dlx_check_relocs(), elf32_frv_add_symbol_hook(), elf32_frv_check_relocs(), elf32_frv_finish_dynamic_sections(), elf32_frv_gc_sweep_hook(), elf32_frv_relocate_gprel12(), elf32_frv_relocate_gprelhi(), elf32_frv_relocate_gprello(), elf32_frv_relocate_gprelu12(), elf32_frv_relocate_section(), elf32_frvfdpic_adjust_dynamic_symbol(), elf32_frvfdpic_always_size_sections(), elf32_frvfdpic_copy_private_bfd_data(), elf32_frvfdpic_create_dynamic_sections(), elf32_frvfdpic_finish_dynamic_sections(), elf32_frvfdpic_finish_dynamic_symbol(), elf32_frvfdpic_modify_segment_map(), elf32_frvfdpic_relax_section(), elf32_frvfdpic_size_dynamic_sections(), elf32_h8_gc_sweep_hook(), elf32_h8_merge_private_bfd_data(), elf32_h8_object_p(), elf32_h8_relax_delete_bytes(), elf32_h8_relax_section(), elf32_h8_relocate_section(), elf32_h8_symbol_address_p(), elf32_hppa_adjust_dynamic_symbol(), elf32_hppa_build_stubs(), elf32_hppa_check_relocs(), elf32_hppa_create_dynamic_sections(), elf32_hppa_finish_dynamic_sections(), elf32_hppa_finish_dynamic_symbol(), elf32_hppa_gc_sweep_hook(), elf32_hppa_grok_psinfo(), elf32_hppa_object_p(), elf32_hppa_relocate_section(), elf32_hppa_set_gp(), elf32_hppa_size_dynamic_sections(), elf32_hppa_size_stubs(), elf32_i860_is_local_label_name(), elf32_i860_relocate_section(), elf32_m68hc11_add_symbol_hook(), elf32_m68hc11_build_stubs(), elf32_m68hc11_check_relocs(), elf32_m68hc11_gc_sweep_hook(), elf32_m68hc11_relocate_section(), elf32_m68hc11_size_stubs(), elf32_m68k_merge_private_bfd_data(), elf32_m68k_print_private_bfd_data(), elf32_m68k_set_private_flags(), elf32_mips_grok_psinfo(), elf32_mn10300_finish_hash_table_entry(), elf32_msp430_check_relocs(), elf32_msp430_gc_sweep_hook(), elf32_msp430_relocate_section(), elf32_shlin_grok_psinfo(), elf32_sparc_adjust_dynamic_symbol(), elf32_sparc_check_relocs(), elf32_sparc_create_dynamic_sections(), elf32_sparc_finish_dynamic_sections(), elf32_sparc_finish_dynamic_symbol(), elf32_sparc_gc_sweep_hook(), elf32_sparc_grok_psinfo(), elf32_sparc_merge_private_bfd_data(), elf32_sparc_mkobject(), elf32_sparc_relax_section(), elf32_sparc_relocate_section(), elf32_sparc_size_dynamic_sections(), elf32_vax_merge_private_bfd_data(), elf32_vax_print_private_bfd_data(), elf32_vax_set_private_flags(), elf64_alpha_add_symbol_hook(), elf64_alpha_adjust_dynamic_symbol(), elf64_alpha_always_size_sections(), elf64_alpha_calc_dynrel_sizes(), elf64_alpha_calc_got_offsets_for_symbol(), elf64_alpha_can_merge_gots(), elf64_alpha_check_relocs(), elf64_alpha_create_dynamic_sections(), elf64_alpha_create_got_section(), elf64_alpha_fake_sections(), elf64_alpha_final_link(), elf64_alpha_find_nearest_line(), elf64_alpha_finish_dynamic_sections(), elf64_alpha_finish_dynamic_symbol(), elf64_alpha_merge_ind_symbols(), elf64_alpha_mkobject(), elf64_alpha_output_extsym(), elf64_alpha_read_ecoff_info(), elf64_alpha_relax_got_load(), elf64_alpha_relax_gprelhilo(), elf64_alpha_relax_section(), elf64_alpha_relax_tls_get_addr(), elf64_alpha_relax_with_lituse(), elf64_alpha_relocate_section(), elf64_alpha_relocate_section_r(), elf64_alpha_section_flags(), elf64_alpha_section_from_shdr(), elf64_alpha_size_dynamic_sections(), elf64_alpha_size_got_sections(), elf64_alpha_size_plt_section(), elf64_alpha_size_plt_section_1(), elf64_alpha_size_rela_got_1(), elf64_alpha_size_rela_got_section(), elf64_hppa_adjust_dynamic_symbol(), elf64_hppa_check_relocs(), elf64_hppa_create_dynamic_sections(), elf64_hppa_dynamic_symbol_p(), elf64_hppa_finalize_dlt(), elf64_hppa_finalize_dynreloc(), elf64_hppa_finalize_opd(), elf64_hppa_finish_dynamic_sections(), elf64_hppa_finish_dynamic_symbol(), elf64_hppa_link_output_symbol_hook(), elf64_hppa_mark_exported_functions(), elf64_hppa_mark_milli_and_exported_functions(), elf64_hppa_modify_segment_map(), elf64_hppa_object_p(), elf64_hppa_section_from_shdr(), elf64_hppa_size_dynamic_sections(), elf64_mips_grok_psinfo(), elf64_x86_64_adjust_dynamic_symbol(), elf64_x86_64_check_relocs(), elf64_x86_64_create_dynamic_sections(), elf64_x86_64_elf_object_p(), elf64_x86_64_finish_dynamic_sections(), elf64_x86_64_finish_dynamic_symbol(), elf64_x86_64_gc_sweep_hook(), elf64_x86_64_grok_psinfo(), elf64_x86_64_mkobject(), elf64_x86_64_relocate_section(), elf64_x86_64_section_from_shdr(), elf64_x86_64_size_dynamic_sections(), elf_add_dynamic_entry(), elf_adjust_dynstr_offsets(), elf_bfd_discard_info(), elf_bfd_final_link(), elf_collect_hash_codes(), elf_core_file_matches_executable_p(), elf_create_pointer_linker_section(), elf_cris_adjust_dynamic_symbol(), elf_cris_adjust_gotplt_to_got(), elf_cris_discard_excess_dso_dynamics(), elf_cris_discard_excess_program_dynamics(), elf_cris_finish_dynamic_sections(), elf_cris_finish_dynamic_symbol(), elf_cris_size_dynamic_sections(), elf_cris_try_fold_plt_to_got(), elf_fake_sections(), elf_finalize_dynstr(), elf_find_function(), elf_finish_pointer_linker_section(), elf_fixup_link_order(), elf_gc_allocate_got_offsets(), elf_gc_common_finalize_got_offsets(), elf_gc_mark(), elf_gc_mark_dynamic_ref_symbol(), elf_gc_propagate_vtable_entries_used(), elf_gc_record_vtentry(), elf_gc_record_vtinherit(), elf_gc_sections(), elf_gc_smash_unused_vtentry_relocs(), elf_gc_sweep(), elf_gc_sweep_symbol(), elf_hppa_fake_sections(), elf_hppa_sort_unwind(), elf_i386_adjust_dynamic_symbol(), elf_i386_check_relocs(), elf_i386_create_dynamic_sections(), elf_i386_fake_sections(), elf_i386_finish_dynamic_sections(), elf_i386_finish_dynamic_symbol(), elf_i386_gc_sweep_hook(), elf_i386_grok_psinfo(), elf_i386_is_local_label_name(), elf_i386_mkobject(), elf_i386_relocate_section(), elf_i386_size_dynamic_sections(), elf_link_add_archive_symbols(), elf_link_add_object_symbols(), elf_link_check_versioned_symbol(), elf_link_flush_output_syms(), elf_link_input_bfd(), elf_link_output_extsym(), elf_link_output_sym(), elf_link_read_relocs_from_section(), elf_link_renumber_hash_table_dynsyms(), elf_link_renumber_local_hash_table_dynsyms(), elf_m68k_adjust_dynamic_symbol(), elf_m68k_check_relocs(), elf_m68k_discard_copies(), elf_m68k_finish_dynamic_sections(), elf_m68k_finish_dynamic_symbol(), elf_m68k_gc_sweep_hook(), elf_m68k_relocate_section(), elf_m68k_size_dynamic_sections(), elf_map_symbols(), ELF_object::ELF_object(), elf_reloc_link_order(), elf_reloc_symbol_deleted_p(), elf_s390_adjust_dynamic_symbol(), elf_s390_check_relocs(), elf_s390_create_dynamic_sections(), elf_s390_finish_dynamic_sections(), elf_s390_finish_dynamic_symbol(), elf_s390_gc_sweep_hook(), elf_s390_is_local_label_name(), elf_s390_mkobject(), elf_s390_relocate_section(), elf_s390_size_dynamic_sections(), elf_section_ignore_discarded_relocs(), elf_slurp_reloc_table(), elf_slurp_reloc_table_from_section(), elf_smash_syms(), elf_vax_adjust_dynamic_symbol(), elf_vax_check_relocs(), elf_vax_discard_copies(), elf_vax_finish_dynamic_sections(), elf_vax_finish_dynamic_symbol(), elf_vax_gc_sweep_hook(), elf_vax_instantiate_got_entries(), elf_vax_relocate_section(), elf_vax_size_dynamic_sections(), elf_write_relocs(), elf_write_shdrs_and_ehdr(), elf_xtensa_adjust_dynamic_symbol(), elf_xtensa_allocate_got_size(), elf_xtensa_allocate_plt_size(), elf_xtensa_check_relocs(), elf_xtensa_combine_prop_entries(), elf_xtensa_create_dynamic_sections(), elf_xtensa_discard_info(), elf_xtensa_finish_dynamic_sections(), elf_xtensa_finish_dynamic_symbol(), elf_xtensa_fix_refcounts(), elf_xtensa_gc_sweep_hook(), elf_xtensa_grok_psinfo(), elf_xtensa_in_literal_pool(), elf_xtensa_merge_private_bfd_data(), elf_xtensa_modify_segment_map(), elf_xtensa_object_p(), elf_xtensa_relax_section(), elf_xtensa_relocate_section(), elf_xtensa_set_private_flags(), elf_xtensa_size_dynamic_sections(), elfcore_grok_netbsd_note(), elfcore_grok_note(), elfcore_grok_nto_note(), elfcore_grok_nto_regs(), elfcore_maybe_make_sect(), elfcore_netbsd_get_lwpid(), elfcore_read_notes(), elfNN_hpux_backend_section_from_bfd_section(), elfNN_ia64_add_symbol_hook(), elfNN_ia64_adjust_dynamic_symbol(), elfNN_ia64_check_relocs(), elfNN_ia64_choose_gp(), elfNN_ia64_create_dynamic_sections(), elfNN_ia64_fake_sections(), elfNN_ia64_final_link(), elfNN_ia64_final_write_processing(), elfNN_ia64_finish_dynamic_sections(), elfNN_ia64_finish_dynamic_symbol(), elfNN_ia64_global_dyn_sym_thunk(), elfNN_ia64_merge_private_bfd_data(), elfNN_ia64_modify_segment_map(), elfNN_ia64_print_private_bfd_data(), elfNN_ia64_relax_section(), elfNN_ia64_relocate_section(), elfNN_ia64_section_flags(), elfNN_ia64_section_from_shdr(), elfNN_ia64_set_private_flags(), elfNN_ia64_size_dynamic_sections(), SYSTEM_OF_EQUATIONS::Elim_One(), SYSTEM_OF_EQUATIONS::Elim_Simple_Redundant(), Eliminate_Dead_Do(), Eliminate_Dead_If(), Eliminate_Dead_SCF_rec(), DEPV_LIST::Eliminate_Inner_Carried(), DEPV_LIST::Eliminate_Inner_Carried_Or_All_Equals(), DEPV_LIST::Eliminate_Non_Distance_Carried_By(), else_stmt_semantics(), Em_Add_New_Composite_Rela(), Em_Add_New_Rela(), em_alloca(), em_exp_float(), ML_WHIRL_EMITTER::Emit(), EMITTER::Emit(), emit_builtin_compare_and_swap(), emit_builtin_lock_release(), emit_builtin_sync_fetch_op(), emit_builtin_synchronize(), Emit_Cleanup(), emit_link_insn(), Emit_Loop_Note(), Emit_Message(), Emit_Verification_Messg(), PF_SPLIT_VECTOR::Empty(), EMT_Assemble_BB(), EMT_Begin_File(), EMT_Emit_PU(), PROMPF_INFO::Enable(), Enable_Fill_Delay_Slots_For_Target(), Enable_Prefetch_Ahead_For_Target(), Enable_Prefetch_For_Target(), Enable_SWP_Optimistic_II_Search(), FAVOR_DELAY_HEUR::Enable_Trace_Cand_Sel_Process(), encap_write_object_contents(), Enclosing_Loop_Body(), Enclosing_Proper_Do_Loop(), encode_decode_stmt_semantics(), end_blk_mp_semantics(), end_blockdata(), end_contains(), end_do_blk(), end_forall_blk(), end_function(), end_function_semantics(), end_if_blk(), end_if_semantics(), end_interface_blk(), end_interface_body(), end_internal_proc(), end_labeled_do(), end_module(), end_module_proc(), end_multi_option(), end_program_unit(), end_select_blk(), end_subroutine(), end_task_do_blk(), end_type_blk(), end_where_blk(), endfile_stmt_semantics(), idmap::ID_MAP< NODE_TYPE, KEY_TYPE >::Enlarge(), BINARY_TREE_NODE< BINARY_NODE >::Enter(), SYMBOL_TREE_NODE::Enter(), SNL_DEP_INFO::Enter(), enter_cmd_line_cc_define(), SNL_ANAL_INFO::Enter_Deps(), Enter_Guarded_WNs(), ARRAY_REF::Enter_Innermost_Scalar_Expand(), enter_intrinsic_info(), STMTREP::Enter_lhs(), enter_predefined_macros(), ARRAY_REF::Enter_Scalar_Expand(), Enter_Scalar_Expandable_Refs(), SYMBOL_TREE::Enter_Scalar_Refs(), OPT_STAB::Enter_symbol(), OPT_TAIL::Entry_is_well_behaved(), Enumerate_Paths(), eoshift_intrinsic(), ep_memory_operand(), epsilon_intrinsic(), eq_opr_handler(), SUMMARY_VALUE::Equal(), DEPV_NODE::Equal(), SUMMARY_EXPR::Equal(), SUMMARY_EXPR::Equal_Node(), EXEC_PATH_SET::Equal_Size(), DEPV_ARRAY::Equal_Through_Depth(), Equiv(), REDUCTION_MANAGER::Equiv(), DEPV_COMPUTE::Equiv_Dim(), DEPV_COMPUTE::Equiv_Dims(), Equiv_Expression(), AEQUIV::Equivalence_Arrays(), equivalence_semantics(), LINEX::Equivalent(), AUX_STAB_ENTRY::Equivalent(), Equivalent(), PROJECTED_REGION::Equivalent(), Equivalent_Access_Arrays(), Equivalent_Load(), Equivalent_Types(), ErrMsg_Report_Nonuser(), ErrMsg_Report_User(), ANL_DIAGNOSTICS::Error(), Est_Num_Iters_Suspect(), HB_Schedule::Estimate_Reg_Cost_For_OP(), etir_ctl(), etir_opr(), etir_sta(), etir_stc(), etir_sto(), IV_EXPR::Eval_to_const(), REGISTER_MODEL::Evaluate(), CALL_INFO::Evaluate(), LOOP_MODEL::Evaluate(), Evaluate_actuals(), Evaluate_common_const(), LOOP_MULTIVER::Evaluate_cr_rec(), Evaluate_Operand_Range(), Evaluate_RSE_Cost(), LOOP_MULTIVER::Evaluate_stmt(), even_fpr_operand(), even_gpr_operand(), even_reg_operand(), LU_MAT< FRAC >::Exact_Arithmetic(), Exceeds_FS_Limit(), SNL_NEST_INFO::Exclude_Outer_Loops(), EXEC_PATH_MGR::EXEC_PATH_MGR(), Execution_Count_Evaluated(), OPT_TAIL::Exit_is_well_behaved(), Exp_COPY(), Exp_Depends_On_Outer_Loop(), exp_fold_tree(), CODEREP::Exp_has_e_num(), Exp_Intrinsic_Op(), Exp_Is_Large_Stack_Sym(), Exp_Ldst(), Exp_Load(), Exp_Node_Varies_In_Loop(), exp_print_tree(), Exp_Select_And_Condition(), Exp_Select_And_VLdid(), Exp_Spadjust(), Exp_Store(), Exp_To_Linex(), Exp_To_Linex_Array(), Exp_True_False_Preds_For_Block(), Exp_Varies_In_Loop(), Expand_Bool_Equal(), Expand_Branch(), expand_call_inline(), Expand_Constant_Multiply(), Expand_Expr(), CODEMAP::Expand_expr(), Expand_Float_Compares(), Expand_Float_Div_By_Const(), Expand_Float_Div_By_Pow2(), Expand_Float_Divide(), Expand_Immediate(), Expand_Immediate_Into_Register(), expand_imp_do(), Expand_Integer_Divide_By_Constant(), expand_io_list(), Expand_Load(), Expand_Multiply_Into_Shifts(), Expand_New_Call_To_OPs(), Expand_OP(), Expand_Ordered_Select_Compare(), Expand_Power_Of_2_Divide(), Expand_Sibling_Blocks(), Expand_Simulated_Ops(), Expand_Special_And_Immed(), Expand_Split_Leading_Zeros(), Expand_Sqrt(), expand_start_do_loop(), Expand_Statement(), Expand_Store(), Expand_TN_Pair(), expand_user_bound(), Expr_has_only_formals(), Expr_Has_Vertex(), expr_is_symbolic_constant(), expr_iter(), ALIAS_CLASSIFICATION::Expr_may_contain_pointer(), MEM_ACCESS_ANALYZER::Expr_of_ptr_ty(), Expr_Should_Always_Be_Hoisted(), extend_ebb_bounds(), extend_ebb_bounds_backward(), extend_ebb_bounds_forward(), extract_calls(), Extract_Do_Info(), PROMPF_INFO::F90_Array_Stmt(), F90_Do_Copies(), F90_Do_Dependence_Analysis(), F90_Generate_Loops(), F90_Insert_All_Prelists(), F90_Insert_Temp_Allocations(), F90_Is_Char_Intrinsic(), F90_Is_Transformational(), F90_Lower(), F90_Lower_Alloc_Dealloc(), F90_Lower_Copy_To_ATemp(), F90_Lower_Create_Temp(), F90_Lower_Init(), F90_Lower_Intrinsic_Fixup(), F90_Lower_Merge_Dep_Info(), F90_Lower_Walk(), F90_Move_Transformational_Walk(), F90_Move_Transformationals(), F90_Scalarize_Triplets_And_Sizes(), F90_Size_Walk(), F90_Triplet_Scalarization_Walk(), F90_Walk_All_Statements(), F90_Walk_Statements_Helper(), fadd_fmult(), CFG::Fall_through(), Falls_Thru(), Fast_32_Rem(), fast_fuse_check_ok(), fdpic_fptr_operand(), fdpic_operand(), fdump_region_tree(), fdump_tree(), fdump_wn(), fdump_wn_no_st(), fei_allocate(), fei_array_dimen(), fei_atomic_open_mp(),