Open64 (mfef90, whirl2f, and IR tools)  TAG: version-openad; SVN changeset: 916
debug.m File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Defines

#define INDENT_SIZE   3
#define LONG_TYPE_FMT   "d"
#define LONG_TYPE_X_FMT   "x"
#define PRINT_BLK_STK
#define PRINT_BD_TBL
#define PRINT_CMD_LINE_TBLS
#define PRINT_CN_TBL
#define PRINT_DEF_TBL
#define PRINT_EQV_TBL
#define PRINT_GL_TBL
#define PRINT_GN_TBL
#define PRINT_INTRIN
#define PRINT_FORTRAN_OUT
#define PRINT_IR_TBL
#define PRINT_IR_TBL2
#define PRINT_IR_TBL3
#define PRINT_IR_TBL4
#define PRINT_NAME_TBLS
#define PRINT_FP_TBL
#define PRINT_SB_TBL
#define PRINT_SCP_TBL
#define PRINT_DBG_SYTB
#define PRINT_DBG_STMT
#define PRINT_SYTB
#define PRINT_TYP_TBL
#define TRACE(TRACE_TYPE, FUNC_NAME, INFO)
#define OUTPUT_PASS_HEADER(PASS)
#define TRACE_NEW_STMT(ARG1)
#define PRINT_ALL_SYM_TBLS

Define Documentation

#define LONG_TYPE_FMT   "d"

Definition at line 45 of file debug.m.

Referenced by dump_dv(), and dump_io_type_code_ntry().

#define LONG_TYPE_X_FMT   "x"

Definition at line 46 of file debug.m.

Referenced by dump_dv().

#define OUTPUT_PASS_HEADER (   PASS)
Value:
if (dump_flags.ftrace_info) {                                  \
                   dump_func_trace_info (PASS, NULL, NULL);                    \
                }

Definition at line 260 of file debug.m.

Referenced by main().

Value:
{                                              \
      PRINT_DEF_TBL;                                                           \
      PRINT_SCP_TBL;                                                           \
      PRINT_FP_TBL;                                                            \
      PRINT_SYTB;                                                              \
      PRINT_NAME_TBLS;                                                         \
      PRINT_BD_TBL;                                                            \
      PRINT_CN_TBL;                                                            \
      PRINT_SB_TBL;                                                            \
      PRINT_TYP_TBL;                                                           \
      PRINT_IR_TBL2;                                                           \
                                }

Definition at line 278 of file debug.m.

Referenced by main(), and PRINTMSG().

#define PRINT_BD_TBL
Value:
if (dump_flags.bd_tbl) {                                       \
                   print_bd_tbl();                                             \
                }

Definition at line 59 of file debug.m.

#define PRINT_BLK_STK
Value:
if (dump_flags.blk_stk) {                                      \
                   print_blk_tbl();                                            \
                }

Definition at line 50 of file debug.m.

Referenced by PRINTMSG().

Value:
if (dump_flags.cmd_line_tbls) {                                \
                   print_cmd_tbl ();                                           \
                }

Definition at line 68 of file debug.m.

Referenced by PRINTMSG().

#define PRINT_CN_TBL
Value:
if (dump_flags.cn_tbl) {                                       \
                   print_cn_tbl();                                             \
                }

Definition at line 77 of file debug.m.

#define PRINT_DBG_STMT
Value:
if (SCP_DBG_PRINT_STMT(curr_scp_idx)) {                        \
                   print_sh_tbl(FALSE);                                        \
                }

Definition at line 224 of file debug.m.

Referenced by pgm_unit_semantics(), and PRINTMSG().

#define PRINT_DBG_SYTB
Value:
if (SCP_DBG_PRINT_SYTB(curr_scp_idx)) {                        \
                   print_sytb(curr_scp_idx, FALSE, TRUE);                      \
                }

Definition at line 215 of file debug.m.

Referenced by interface_semantics_pass_driver(), pgm_unit_semantics(), and PRINTMSG().

#define PRINT_DEF_TBL
Value:
if (dump_flags.defines) {                                      \
                   print_defines();                                            \
                }

Definition at line 86 of file debug.m.

Value:
if (dump_flags.fort_out) {                                     \
                   print_expanded_stmt();                                      \
                }

Definition at line 131 of file debug.m.

Referenced by main().

#define PRINT_FP_TBL
Value:
if (dump_flags.fp_tbl) {                                       \
                   print_fp_tbl ();                                            \
                }

Definition at line 188 of file debug.m.

#define PRINT_GL_TBL
Value:
if (dump_flags.gl_tbl) {                                       \
                   print_gl_tbl ();                                            \
                }

Definition at line 104 of file debug.m.

Referenced by main(), and PRINTMSG().

#define PRINT_GN_TBL
Value:
if (dump_flags.name_tbls) {                                    \
                   print_gn_tbl ();                                            \
                }

Definition at line 113 of file debug.m.

Referenced by main(), and PRINTMSG().

#define PRINT_INTRIN
Value:
if (dump_flags.intrin_tbl) {                                   \
                   print_sytb(INTRINSIC_SCP_IDX, FALSE, TRUE);                 \
                }

Definition at line 122 of file debug.m.

Referenced by init_parse_prog_unit().

#define PRINT_IR_TBL
Value:
if (dump_flags.ir1_tbl) {                                      \
                   print_sh_tbl (TRUE);                                        \
                }

Definition at line 140 of file debug.m.

Referenced by main().

#define PRINT_IR_TBL2
Value:
if (dump_flags.ir2_tbl) {                                      \
                   print_sh_tbl (TRUE);                                        \
                }

Definition at line 149 of file debug.m.

#define PRINT_IR_TBL3
Value:
if (dump_flags.ir3_tbl) {                                      \
                   print_sytb(curr_scp_idx, FALSE, TRUE);                      \
                   print_sh_tbl (TRUE);                                        \
                }

Definition at line 158 of file debug.m.

Referenced by main().

#define PRINT_IR_TBL4
Value:
if (dump_flags.ir4_tbl) {                                      \
                   print_sytb(curr_scp_idx, FALSE, TRUE);                      \
                   print_sh_tbl (TRUE);                                        \
                }

Definition at line 168 of file debug.m.

Referenced by dim_reshape_pass_driver(), and runtime_ptr_chk_driver().

#define PRINT_NAME_TBLS
Value:
if (dump_flags.name_tbls) {                                    \
                   print_ln_tbl ();                                            \
                   print_hn_tbl ();                                            \
                }

Definition at line 178 of file debug.m.

#define PRINT_SB_TBL
Value:
if (dump_flags.sb_tbl) {                                       \
                   print_sb_tbl();                                             \
                }

Definition at line 197 of file debug.m.

#define PRINT_SYTB
Value:
if (dump_flags.sytb) {                                         \
                   print_sytb(1, TRUE, TRUE);                                  \
                }

Definition at line 233 of file debug.m.

#define PRINT_TYP_TBL
Value:
if (dump_flags.typ_tbl) {                                      \
                   print_typ_tbl();                                            \
                }

Definition at line 242 of file debug.m.

#define TRACE (   TRACE_TYPE,
  FUNC_NAME,
  INFO 
)
Value:
if (dump_flags.ftrace_info) {                                  \
                   dump_func_trace_info (TRACE_TYPE, FUNC_NAME, (INFO));       \
                }

Definition at line 251 of file debug.m.

Referenced by abs_intrinsic(), add_alt_return_lbl(), add_attr_to_local_list(), add_common_blk_objects_to_list(), add_substring_length(), adjust_char_value_len(), adjust_continued_macro(), adjustl_intrinsic(), aimag_intrinsic(), aint_intrinsic(), align_bit_length(), all_intrinsic(), alloc_arg_entry(), alloc_obj_opr_handler(), allocate_mod_link_tbl(), allocate_pdg_link_tbls(), allocate_stmt_semantics(), allocated_intrinsic(), analyse_loops(), and_opr_handler(), anint_intrinsic(), arith_if_stmt_semantics(), array_bounds_resolution(), array_construct_opr_handler(), array_construct_semantics(), array_dim_resolution(), array_element_to_scalar(), asg_opnd_to_tmp(), assert_semantics(), assign_new_idxs(), assign_new_idxs_after_input(), assign_offset(), assign_offsets_for_equiv_groups(), assign_stmt_semantics(), assign_storage_blk(), assignment_stmt_semantics(), associated_intrinsic(), atan2_intrinsic(), attr_init_semantics(), attr_is_in_list(), attr_link_resolution(), attr_semantics(), backspace_stmt_semantics(), bin_array_syntax_check(), bit_size_intrinsic(), bits_and_bytes_to_words(), blank_padding(), blk_desc_str(), blk_match_err(), block_err_string(), blockdata_stmt_semantics(), bound_resolution(), bound_semantics(), bounds_cdir_handler(), broadcast_scalar(), btest_intrinsic(), buffer_stmt_semantics(), build_fwd_ref_entry(), build_loop_tbl(), calculate_iteration_count(), calculate_pad(), call_list_semantics(), call_stmt_semantics(), case_stmt_semantics(), case_value_range_semantics(), cast_opnd_to_type_idx(), cast_to_cg_default(), cast_to_type_idx(), cast_typeless_constant(), cc_advance_idx(), cc_get_next_char(), cc_get_stmt(), cc_get_token(), ceiling_intrinsic(), ch_after_paren_grp(), change_asg_to_where(), change_section_to_do(), change_section_to_this_element(), change_subscript(), char_bounds_resolution(), char_intrinsic(), char_len_resolution(), character_to_character(), check_actual_and_dummy(), check_and_allocate_common_storage(), check_arg_for_co_array(), check_array_bounds(), check_asg_semantics(), check_bd_typ_for_dargs(), check_call_for_global_def(), check_cmic_blk_branches(), check_defines_compatibility(), check_dependence(), check_do_open_mp_nesting(), check_elemental_conformance(), check_enums_for_change(), check_expr_for_elementals(), check_for_constructors(), check_for_dependencies(), check_for_dup_derived_type_lbl(), check_for_duplicate_renames(), check_for_elementals(), check_for_legal_define(), check_for_vestigial_task_blks(), check_forall_triplet_for_index(), check_global_pgm_unit(), check_il_for_attrs(), check_ir_for_attrs(), check_label_ref(), check_loop_bottom_nesting(), check_mp_dir_nesting(), check_multiple_entry_func(), check_ordered_open_mp_nesting(), check_section_open_mp_context(), check_stat_variable(), check_substring_bounds(), check_target_and_value(), check_type_for_size_address(), check_where_conformance(), chg_data_obj_to_pgm_unit(), chk_for_unlabeled_stmt(), cif_begin_scope_rec(), cif_call_site_rec(), cif_copy_temp_to_actual_CIF(), cif_data_type(), cif_directive_rec(), cif_enable_disable_rec(), cif_end_scope_rec(), cif_end_unit_rec(), Cif_Error(), cif_fake_a_unit(), cif_file_name_rec(), cif_flush_include_recs(), cif_include_rec(), cif_label_rec(), cif_loop_def_rec(), cif_machine_characteristics_rec(), cif_message_rec(), cif_misc_compiler_opts_rec(), cif_named_constant_rec(), cif_object_rec_for_func_result(), cif_optimization_opts_rec(), cif_prog_unit_init(), cif_rename_rec(), cif_sb_usage_rec(), cif_scope_info_rec(), cif_send_attr(), cif_send_sytb(), cif_source_file_rec(), cif_stmt_type_rec(), cif_summary_rec(), cif_unit_rec(), cif_usage_rec(), cif_use_module_rec(), ck_lbl_construct_name(), classify_line(), clean_pdg_link_tbls_for_nested_pu(), clean_up_module_files(), clear_cdir_switches(), clock_intrinsic(), close_cif(), close_stmt_semantics(), cmp_ref_trees(), cmplx_intrinsic(), collapse_interface_blk(), compare_and_swap_intrinsic(), compare_array_entries(), compare_cn_and_value(), 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_message_recs(), compare_names(), compare_opnds(), compare_target_consts(), compare_value_to_cn(), complete_intrinsic_definition(), compress_tbls(), compress_type_tbl(), compute_char_element_len(), concat_opr_handler(), conform_check(), conjg_intrinsic(), const_init_semantics(), constant_value_semantics(), continue_stmt_semantics(), convert_binary_literal(), convert_const(), convert_cval_to_string(), convert_hex_literal(), convert_octal_literal(), convert_to_do_var_type(), convert_to_string(), copy_and_replace_tmps(), copy_define_str(), copy_entry_exit_sh_list(), copy_from_gl_subtree(), copy_sbtree(), copy_subtree(), copy_text_for_expansion(), copy_to_gl_subtree(), create_alloc_descriptor(), create_argchck_descriptor(), create_array_constructor_asg(), create_bd_ntry_for_const(), create_constructor_constant(), create_dv_type_code(), create_equiv_stor_blk(), create_format_tmp(), create_hidden_name_tbl(), create_imp_do_loops(), create_interp_stmts(), create_io_call_descriptor(), create_kwd_text(), create_lib_entry_attr(), create_loop_stmts(), create_mod_info_file(), create_mod_info_tbl(), create_namelist_descriptor(), create_runtime_array_constructor(), create_runtime_struct_constructor(), create_scalar_type_tbl(), create_strct_tbl(), create_struct_argchck_tbl(), create_struct_constructor_asg(), create_tmp_asg(), create_tmp_DV_asg(), create_tmp_from_stmt_func(), cri_ptr_type(), cshift_intrinsic(), csmg_intrinsic(), cval_to_f_int(), cvmgp_intrinsic(), cvrt_exp_to_pdg(), cvrt_ir_to_pdg(), cvrt_opr_handler(), cvrt_proc_to_pdg(), cvrt_str_to_cn(), cvrt_sytb_to_pdg(), cvrt_to_pdg(), darg_in_entry_list(), data_imp_do_semantics(), data_repeat_semantics(), data_stmt_semantics(), dealloc_obj_opr_handler(), deallocate_local_allocatables(), deallocate_stmt_semantics(), decl_semantics(), decl_semantics_driver(), default_init_semantics(), defined_bin_opr_handler(), defined_un_opr_handler(), determine_lb_ub(), determine_num_elements(), determine_slice_size(), determine_stmt_type(), determine_struct_tbl_size(), determine_tmp_size(), digit_is_format_label(), digits_intrinsic(), dim_intrinsic(), dim_reshape_pass_driver(), directive_region_error(), directive_stmt_semantics(), discombobulate_structure_ref(), distribution_resolution(), do_cmic_blk_checks(), do_loop_expr_semantics(), do_read_namelist_semantics(), do_single_asg(), do_slice_asg(), do_stmt_semantics(), do_write_namelist_semantics(), doall_cmic_semantics(), doall_end_semantics(), doparallel_cmic_semantics(), dope_vector_setup(), dot_product_intrinsic(), dprod_intrinsic(), dshiftl_intrinsic(), dsm_numthreads_intrinsic(), dump_cn_tree(), dump_io_type_code_ntry(), dump_pdt(), else_stmt_semantics(), encode_decode_stmt_semantics(), end_blk_mp_semantics(), end_blockdata(), end_contains(), end_critical_section_blk(), end_do_blk(), end_do_parallel_blk(), end_doacross_blk(), end_doall_blk(), end_forall_blk(), end_forall_semantics(), end_function(), end_function_semantics(), end_guard_blk(), end_if_blk(), end_interface_blk(), end_interface_body(), end_internal_err(), end_internal_proc(), end_labeled_do(), end_module(), end_module_proc(), 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_select_semantics(), end_SGI_parallel_blk(), end_single_process_blk(), end_stmt_semantics(), end_subroutine(), end_subroutine_semantics(), end_task_do_blk(), end_type_blk(), end_wait_blk(), end_where_blk(), end_where_semantics(), endfile_stmt_semantics(), endparallel_cmic_semantics(), enlarge_call_list_tables(), enlarge_char_result_buffer(), enlarge_info_list_table(), enter_cmd_line_cc_define(), enter_intrinsic_info(), enter_predefined_macros(), entry_stmt_semantics(), eoshift_intrinsic(), epsilon_intrinsic(), eq_opr_handler(), equivalence_semantics(), exit_compiler(), exit_intrinsic(), expand_imp_do(), expand_io_list(), expand_stmts(), expand_user_bound(), expanded_macro_len(), exponent_intrinsic(), expr_is_symbolic_constant(), f90_character_compare(), f_int_to_cval(), fcd_intrinsic(), fetch_and_add_intrinsic(), fill_in_global_attr_ntry(), fill_in_struct_argchck_const(), final_arg_work(), final_attr_semantics(), final_decl_semantics(), final_equivalence_semantics(), final_src_input(), find_attr_in_il(), find_attr_in_ir(), find_attrs_in_il(), find_attrs_in_ir(), find_attrs_used_in_bound(), find_base_attr(), find_ciitem_idx(), find_files_in_directory(), find_host_associated_attrs_in_il(), find_host_associated_attrs_in_ir(), find_left_attr(), find_line_and_col(), find_opnd_line_and_column(), find_prog_unit_tbl(), finish_cdir_id(), finish_symbolic_expr(), fixed_classify_line(), fixed_get_char(), fixed_get_char_literal(), fixed_get_keyword(), fixed_get_stmt(), flatten_function_call(), floor_intrinsic(), flush_cc_line(), flush_LA_to_EOS(), flush_LA_to_symbol(), flush_msg_file(), fnd_semantic_err(), fold_aggragate_expression(), fold_all_subscripts(), fold_cc_expr(), fold_clen_opr(), fold_f_abort_(), fold_nested_substrings(), fold_relationals(), folder_driver(), forall_mask_needs_tmp(), forall_semantics(), format_line_n_col(), fp_classify(), fraction_intrinsic(), free_arg_entry(), free_attr_list(), free_classify_line(), free_get_char(), free_get_char_literal(), free_get_keyword(), free_get_stmt(), free_intrinsic(), free_ir_list(), free_ir_stream(), free_stmt_expansion_opr(), free_stmt_tmp_tbl(), free_tables(), function_stmt_semantics(), gen_alloc_header_const(), gen_allocatable_ptr_ptee(), gen_arg_type_descriptor(), gen_array_element_init(), gen_assumed_shape_copy(), gen_attr_and_IR_for_lbl(), gen_auto_length(), gen_bd_entry(), gen_bias_ref(), gen_bounds_check_call(), gen_branch_around_ir(), gen_call_type_descriptor(), gen_common_dv_init(), gen_compiler_star(), gen_compiler_tmp(), gen_compiler_upbd(), gen_conform_check_call(), gen_copyin_bounds_stmt(), gen_darg_branch_test(), gen_dbg_write_stmt(), gen_debug_lbl_stmt(), gen_default_init_code(), gen_directive_ir(), gen_dv_access_low_bound(), gen_dv_def_loops(), gen_Dv_Set_stmt(), gen_dv_stride_mult(), gen_dv_whole_def(), gen_dv_whole_def_init(), gen_end_prologue_debug_label(), gen_entry_dope_code(), gen_forall_branch_around(), gen_forall_derived_type(), gen_forall_if_mask(), gen_forall_loops(), gen_forall_max_expr(), gen_forall_tmp(), gen_forall_tmp_bd_entry(), gen_gl_sh(), gen_if_ir(), gen_if_stmt(), gen_il(), gen_init_stmt(), gen_initialized_tmp(), gen_internal_call_stmt(), gen_internal_dope_vector(), gen_internal_lbl(), gen_ir(), gen_ir_at_this_entry(), gen_lb_array_ref(), gen_loop_end_ir(), gen_loop_lbl_name(), gen_opnd(), gen_present_ir(), gen_ptr_chk_call(), gen_rbounds_check_call(), gen_rbounds_condition(), gen_runtime_bounds(), gen_runtime_checks(), gen_runtime_conformance(), gen_runtime_ptr_chk(), gen_runtime_substring(), gen_sbounds_check_call(), gen_section_ref(), gen_sf_dv_whole_def(), gen_sh(), gen_single_automatic_allocate(), gen_split_alloc(), gen_static_dv_whole_def(), gen_static_integer_array_tmp(), gen_stmt_expansion_opr(), gen_temp_init(), gen_tmp_eq_zero_ir(), gen_tmp_equal_max_zero(), gen_user_code_start_opr(), gen_whole_subscript(), gen_whole_substring(), generate_bounds_list(), generic_spec_semantics(), get_act_arg_type(), get_arg_type(), get_basic_type(), get_basic_type_str(), get_char_len(), get_concat_len(), get_curr_file_name(), get_debug_directive(), get_dir_token_from_str(), get_directive(), get_dummy_arg_type(), get_dynamic_predef_str(), get_format_str(), get_ieee_status_intrinsic(), get_label(), get_line_and_file_id(), get_machine_chars(), get_micro_directive(), get_next_array_expr_element(), get_nxt_line(), get_open_mp_directive(), get_openad_directive(), get_operand_digit(), get_operand_dot(), get_operand_letter(), get_operand_quote(), get_operator(), get_operator_dot(), get_program_str(), get_punctuator(), get_sgi_directive(), get_shape_from_attr(), get_stmt_tmp(), get_temp_file(), get_token(), get_type_desc(), getpos_intrinsic(), global_name_semantics(), global_to_file_id(), global_to_file_line_number(), global_to_local_file(), global_to_local_line_number(), global_to_local_path(), good_data_imp_do_expr(), goto_stmt_semantics(), has_been_reprivatized(), host_associated_attr_semantics(), huge_intrinsic(), iand_intrinsic(), ibits_intrinsic(), ibset_intrinsic(), ichar_intrinsic(), idate_intrinsic(), ieee_finite_intrinsic(), ieee_real_intrinsic(), if_stmt_semantics(), il_is_symbolic_constant(), ilen_intrinsic(), illegal_stmt_type(), imp_do_metamorphed(), implicit_use_semantics(), implied_do_depth(), increment_count(), increment_subscript(), index_intrinsic(), init_call_structs(), init_cif(), init_compiler(), init_cond_comp(), init_const_tbl(), init_date_time_info(), init_directive(), init_lex(), init_msg_processing(), init_name_and_stor_tbls(), init_parse_prog_unit(), init_PDGCS(), init_release_level(), init_src_input(), init_sytb(), init_type(), init_whole_array(), inline_processing(), inquire_stmt_semantics(), insert_argchck_calls(), insert_constant(), insert_global_sh(), insert_init_stmt_for_tmp(), insert_macro(), insert_on_left(), insert_sh_after_entries(), insert_sh_chain(), insert_sh_chain_after_entries(), insert_sh_chain_before(), insert_unordered_constant(), int_intrinsic(), interface_semantics_pass_driver(), interpret_adjustl_intrinsic(), interpret_array_construct_opr(), 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_sik_intrinsic(), interpret_size_intrinsic(), interpret_srk_intrinsic(), interpret_struct_construct_opr(), interpret_transfer_intrinsic(), interpret_trim_intrinsic(), interpret_ubound_intrinsic(), interpret_unary_intrinsic_opr(), interpret_unary_opr(), io_ctl_list_semantics(), io_list_semantics(), ir_is_symbolic_constant(), is_attr_referenced_in_bound(), is_directory(), is_dollar_directive(), is_implied_do(), is_local_forall_index(), is_normal(), is_par_directive(), is_pound_line_dir(), is_star_directive(), is_substring_ref(), ishft_intrinsic(), ishftc_intrinsic(), iss_blk_stk_err(), issue_attr_blk_err(), issue_attr_err(), issue_deferred_msgs(), issue_undefined_type_msg(), item_has_bounds_chk(), just_find_dope_and_rank(), kind_intrinsic(), kind_to_linear_type(), label_def_stmt_semantics(), label_ref_semantics(), lbound_intrinsic(), leadz_intrinsic(), len_intrinsic(), len_trim_intrinsic(), length_intrinsic(), lg_opr_handler(), lge_intrinsic(), linearize_list_for_equiv(), linearize_pe_dims(), loc_intrinsic(), lock_release_intrinsic(), logical_intrinsic(), look_for_real_div(), loop_end_processing(), loop_top_is_perfectly_nested(), lower_ptr_asg(), lt_opr_handler(), make_base_assumed_size(), make_base_subtree(), make_copy_of_routine(), make_external_name(), make_in_parent_string(), make_io_type_code(), make_logical_array_tmp(), make_new_bd_entries(), make_ro_entry(), make_table_changes(), make_triplet_extent_tree(), malloc_intrinsic(), mark_attr_defined(), mask_intrinsic(), match_blk(), matched_specific_token(), matmul_intrinsic(), max_intrinsic(), max_opr_handler(), maxexponent_intrinsic(), mclr_intrinsic(), memory_barrier_intrinsic(), merge_access(), merge_allocatable(), merge_automatic(), merge_co_array(), merge_data(), merge_dimension(), merge_entry_list_count(), merge_entry_lists(), merge_equivalence_groups1(), merge_equivalence_groups2(), merge_external(), merge_intent(), merge_interfaces(), merge_intrinsic(), merge_optional(), merge_parameter(), merge_pointer(), merge_save(), merge_target(), merge_type(), merge_volatile(), mergee_intrinsic(), minexponent_intrinsic(), minus_opr_handler(), minval_intrinsic(), mld_intrinsic(), mldmx_intrinsic(), mmx_intrinsic(), mod_intrinsic(), module_stmt_semantics(), modulo_intrinsic(), move_blk_to_end(), move_up_next_msg_queue(), mp_directive_semantics(), mpp_cn_int_to_c(), mul_intrinsic(), mult_opr_handler(), multiple_clause_err(), must_reassign_XT_temp(), mvbits_intrinsic(), my_pe_intrinsic(), namelist_resolution(), namelist_static_dv_whole_def(), nearest_intrinsic(), needs_bounds_check(), next_arg_is_kwd_equal(), next_id_is_imp_control(), next_tok_is_paren_slash(), nint_intrinsic(), no_semantics_routine(), not_intrinsic(), not_opr_handler(), not_visible_semantics(), ntr_abnormal_ieee_const(), ntr_array_in_bd_tbl(), ntr_attr_list_tbl(), ntr_bnds_sh_tmp_list(), ntr_bnds_tmp_list(), ntr_boolean_const_tbl(), ntr_boz_const_tbl(), ntr_cc_sym_tbl(), ntr_common_in_global_attr_tbl(), ntr_const_tbl(), ntr_derived_type_tbl(), ntr_file_in_fp_tbl(), ntr_gl_ir_list_tbl(), ntr_gl_ir_tbl(), ntr_gl_sh_tbl(), ntr_global_attr_tbl(), ntr_global_bounds_tbl(), ntr_global_name_tbl(), ntr_global_type_tbl(), ntr_hidden_name_tbl(), ntr_host_in_sym_tbl(), ntr_int_const_tbl(), ntr_io_string_constant(), ntr_ir_list_tbl(), ntr_ir_tbl(), ntr_local_attr_list(), ntr_msg_queue(), ntr_next_msg_queue(), ntr_ref_in_global_tbl(), ntr_sh_tbl(), ntr_stor_blk_tbl(), ntr_sym_tbl(), ntr_type_tbl(), ntr_unshared_const_tbl(), null_intrinsic(), nullify_stmt_semantics(), num_images_intrinsic(), numarg_intrinsic(), object_semantics(), omp_extension_prefix(), omp_get_max_threads_intrinsic(), omp_set_lock_intrinsic(), open_include_file(), open_module_file(), open_mp_directive_semantics(), open_stmt_semantics(), operation_is_intrinsic(), opr_to_str(), optimize_reshape(), optimize_whole_array_init(), outer_imp_do_count(), outmoded_if_stmt_semantics(), output_minimal_object_rec(), output_mod_info_file(), output_msg(), output_struct_ids(), pack_intrinsic(), parallel_cmic_semantics(), paren_grp_is_cplx_const(), paren_opr_handler(), parse_access_stmt(), parse_actual_arg_spec(), parse_add_opnd(), parse_allocatable_stmt(), parse_allocate_stmt(), parse_and_opnd(), parse_array_spec(), parse_assert_directive(), parse_assign_stmt(), parse_assignment_stmt(), parse_attr_spec(), parse_attrs(), parse_automatic_stmt(), parse_auxiliary_dir(), parse_backspace_stmt(), parse_bad_stmt(), parse_block_stmt(), parse_buffer_stmt(), parse_cache_align_name_list(), parse_cache_bypass_dir(), parse_cache_noalloc(), parse_call_stmt(), parse_case_stmt(), parse_cc_add_opnd(), parse_cc_equiv_opnd(), parse_cc_expr(), parse_cc_level_2(), parse_cc_level_3(), parse_cc_level_4(), parse_cc_level_5(), parse_cc_level_6(), parse_cc_level_7(), parse_cc_level_8(), parse_cc_line(), parse_cc_mult_opnd(), parse_cc_operand(), parse_cc_or_opnd(), parse_close_stmt(), parse_common_dirs(), parse_common_stmt(), parse_contains_stmt(), parse_continue_stmt(), parse_copy_assumed_shape_dir(), 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_dimension_stmt(), parse_dir_directives(), parse_dir_var_list(), parse_directive_stmt(), parse_distribution_dir(), parse_do_stmt(), parse_doall_cmic(), parse_dollar_directives(), parse_doparallel_cmic(), parse_dummy_args(), parse_elemental_stmt(), parse_else_stmt(), parse_encode_stmt(), parse_end_stmt(), parse_endfile_stmt(), parse_entry_stmt(), parse_equiv_opnd(), parse_equivalence_stmt(), parse_err_flush(), parse_exit_stmt(), parse_expr(), parse_external_stmt(), parse_fill_align_symbol(), parse_forall(), parse_format_stmt(), parse_function_stmt(), parse_generic_spec(), parse_goto_stmt(), parse_id_directive(), parse_if_stmt(), parse_ignore_tkr(), parse_imp_do(), parse_implicit_stmt(), parse_initializer(), parse_inline_always_never(), parse_inquire_stmt(), parse_int_or_star_list(), parse_int_spec_expr(), parse_intent_spec(), parse_intent_stmt(), parse_interface_stmt(), parse_intrinsic_stmt(), parse_io_control_list(), parse_io_list(), parse_kind_selector(), parse_label_list(), parse_length_selector(), parse_level_1(), parse_level_2(), parse_level_3(), parse_level_4(), parse_level_5(), parse_lhs(), parse_mic_directives(), parse_module_stmt(), parse_mp_directive(), parse_mult_opnd(), parse_name_dir(), parse_namelist_stmt(), parse_nosideeffects_dir(), parse_nullify_stmt(), parse_only_spec(), parse_open_mp_clauses(), parse_open_mp_directives(), parse_open_stmt(), parse_openad_directives(), parse_openad_varlist(), parse_operand(), parse_optional_stmt(), parse_or_opnd(), parse_par_directives(), parse_parallel_cmic(), parse_parameter_stmt(), parse_pe_array_spec(), parse_permutation_mic(), parse_pointer_stmt(), parse_prefetch_ref(), parse_prefix_spec(), parse_print_stmt(), parse_prog_unit(), parse_program_stmt(), parse_pure_stmt(), parse_read_stmt(), parse_recursive_stmt(), parse_redistribute_dir(), parse_reference_list(), parse_return_stmt(), parse_rewind_stmt(), parse_save_stmt(), parse_select_stmt(), parse_sequence_stmt(), parse_sgi_dir_inline(), parse_slash_common_dirs(), parse_star_dir_directives(), parse_star_directives(), parse_stmt_func_stmt(), parse_stop_pause_stmt(), parse_subroutine_stmt(), parse_symmetric_dir(), parse_target_stmt(), parse_type_dcl_stmt(), parse_type_spec(), parse_typed_function_stmt(), parse_use_stmt(), parse_var_common_list(), parse_var_name_list(), parse_vfunction_dir(), parse_volatile_stmt(), parse_where_stmt(), parse_write_stmt(), pe_array_dim_resolution(), pgm_unit_semantics(), plus_opr_handler(), pop_and_err_blk_stk(), pop_task_blk(), power_o_two(), power_opr_handler(), pp_get_stmt(), pre_parse_format(), precision_intrinsic(), prefetch_ref_semantics(), preprocess_only_driver(), present_intrinsic(), prev_char_line_and_col(), print_buffered_messages(), print_id_line(), print_mod_tbl(), print_nxt_line(), print_src_stk_entry(), print_stmt_semantics(), PRINTMSG(), process_all_initialized_cpnts(), process_attr_links(), process_attr_list(), process_blockable_dir(), process_char_len(), process_cpnt_inits(), process_data_imp_do_target(), process_deferred_functions(), process_deferred_io_list(), process_interchange_dir(), process_procs_for_inlining(), process_variable_size_func(), program_stmt_semantics(), ptr_assign_from_ptr(), push_data_value(), push_task_blk(), put_c_str_in_cn(), put_char_const_in_tbl(), put_file_name_in_cn(), put_format_in_tbl(), put_string_in_tmp(), pvp_isnormal(), radix_intrinsic(), random_number_intrinsic(), random_seed_intrinsic(), ranf_intrinsic(), range_intrinsic(), ranget_intrinsic(), read_in_module_tbl(), read_line(), read_module_tbl_header(), read_stmt_semantics(), read_sytb_from_module_file(), readsm_intrinsic(), real_intrinsic(), remote_write_barrier_intrinsic(), remove_do_parallel_blk(), remove_hidden_name_ntry(), remove_hidden_name_tbl(), remove_ln_ntry(), remove_pdo_blk(), remove_sh(), rename_only_semantics(), repeat_intrinsic(), reserve_array_ntry(), reset_lex(), reset_src_input(), reset_stmt_tmp_tbl(), reshape_array_semantics(), reshape_intrinsic(), reshape_reference_subscripts(), resolve_all_components(), resolve_attr(), resolve_ext_opr(), resolve_fwd_lbl_refs(), resolve_used_modules(), return_stmt_semantics(), retype_attr(), rewind_stmt_semantics(), rrspacing_intrinsic(), rtc_intrinsic(), runtime_ptr_chk_driver(), save_array_syntax_subscripts(), scalar_dope_to_scalar(), scale_intrinsic(), scan_cc_line(), scan_cc_macro(), scan_fixed_comment(), scan_for_ptr_chk(), scan_fortran_macro(), scan_fortran_stmt(), scan_thru_close_paren(), search_expr_for_dargs(), section_semantics(), select_stmt_semantics(), selected_int_kind_intrinsic(), selected_real_kind_intrinsic(), semantics_pass_driver(), send_attr_ntry(), send_darg_list(), send_derived_type(), send_dummy_procedure(), send_interface_list(), send_label(), send_label_def(), send_mod_file_name(), send_namelist_group(), send_non_standard_aligned_type(), send_procedure(), send_stor_blk(), set_at_actual_arg(), set_attr_flds_for_output(), set_compile_info_for_target(), set_directives_on_label(), set_exponent_intrinsic(), set_format_start_idx(), set_function_rslt(), set_global_value_variables(), set_ieee_exception_intrinsic(), set_inline_state(), set_integer_default_type(), set_mod_link_tbl_for_attr(), set_mod_link_tbl_for_bd(), set_mod_link_tbl_for_cn(), set_mod_link_tbl_for_il(), set_mod_link_tbl_for_ir(), set_mod_link_tbl_for_typ(), set_mp_task_flags(), set_open_mp_task_flags(), set_related_gl_source_lines(), set_sb_first_attr_idx(), set_shape_for_deferred_funcs(), set_stmt_type_known(), set_stride_for_first_dim(), set_up_allocate_as_call(), set_up_bd_tmps(), set_up_exp_desc(), set_up_fake_dt_blk(), set_up_letter_idx_table(), set_up_logical_constant(), set_up_pe_offset_attr(), set_up_token_tables(), set_up_which_entry_tmp(), setup_interchange_level_list(), shape_intrinsic(), shift_cc_stmt_buf(), shift_intrinsic(), shift_nxt_line(), shift_to_line_size(), short_circuit_branch(), short_circuit_high_level_if(), sign_bit(), sign_intrinsic(), sin_intrinsic(), size_intrinsic(), size_offset_binary_calc(), size_offset_logical_calc(), size_offset_min_max_calc(), sizeof_intrinsic(), sm_unit_in_bits(), spacing_intrinsic(), spread_intrinsic(), srch_ar_file_for_module_tbl(), srch_cc_sym_tbl(), srch_for_calls(), srch_for_module_tbl(), srch_global_name_tbl(), srch_hidden_name_tbl(), srch_host_stor_blk_tbl(), srch_host_sym_tbl(), srch_kwd_name(), srch_linked_sn(), srch_name_tbl(), srch_stor_blk_tbl(), srch_sym_tbl(), start_new_prog_unit(), start_new_scp(), start_new_subpgm(), stmt_expansion_control_end(), stmt_expansion_control_start(), stmt_func_call_opr_handler(), stmt_func_semantics(), stmt_has_double_colon(), stmt_is_DATA_stmt(), stmt_is_DO_stmt(), stmt_is_save_stmt(), stmt_level_semantics(), stop_pause_stmt_semantics(), stor_bit_size_of(), storage_blk_resolution(), struct_construct_opr_handler(), struct_opr_handler(), subroutine_stmt_semantics(), subscript_opr_handler(), substring_opr_handler(), synchronize_intrinsic(), system_clock_intrinsic(), terminate_PDGCS(), test_ieee_interrupt_intrinsic(), test_size_stmts(), then_stmt_semantics(), tiny_intrinsic(), tmp_il_resolution(), tmp_ir_resolution(), transfer_intrinsic(), transform_char_sequence_ref(), transform_cri_ch_ptr(), translate_distant_dv_ref(), translate_distant_ref(), translate_distant_ref1(), translate_distant_ref2(), translate_dv_component(), transpose_intrinsic(), tree_produces_dealloc(), trim_intrinsic(), triplet_opr_handler(), type_init_semantics(), ubound_intrinsic(), unit_intrinsic(), unknown_intrinsic(), unpack_intrinsic(), update_components(), update_fld_type(), update_global_line(), update_idxs_in_attr_entry(), update_intrinsic(), uplus_opr_handler(), use_stmt_semantics(), validate_char_len(), validate_kind(), verify_interface(), verify_semantic_tbls(), vv_subscript_semantics(), wait_send_semantics(), whats_after_brkt_group(), whats_after_paren_group(), where_stmt_semantics(), write_constant(), write_memory_barrier_intrinsic(), and write_stmt_semantics().

#define TRACE_NEW_STMT (   ARG1)
Value:
if (dump_flags.ftrace_info) {                                  \
                   dump_func_trace_info (Stmt_Start, NULL, ARG1);              \
                }

Definition at line 269 of file debug.m.

Referenced by parse_prog_unit(), and pgm_unit_semantics().

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines