Home
last modified time | relevance | path

Searched refs:problems_by_index (Results 1 – 4 of 4) sorted by relevance

/openbsd/src/gnu/gcc/gcc/
Ddf.h353 struct dataflow *problems_by_index [DF_LAST_PROBLEM_PLUS1]; member
378 #define DF_SCAN_BB_INFO(DF, BB) (df_scan_get_bb_info((DF)->problems_by_index[DF_SCAN],(BB)->index))
379 #define DF_RU_BB_INFO(DF, BB) (df_ru_get_bb_info((DF)->problems_by_index[DF_RU],(BB)->index))
380 #define DF_RD_BB_INFO(DF, BB) (df_rd_get_bb_info((DF)->problems_by_index[DF_RD],(BB)->index))
381 #define DF_LR_BB_INFO(DF, BB) (df_lr_get_bb_info((DF)->problems_by_index[DF_LR],(BB)->index))
382 #define DF_UR_BB_INFO(DF, BB) (df_ur_get_bb_info((DF)->problems_by_index[DF_UR],(BB)->index))
383 #define DF_UREC_BB_INFO(DF, BB) (df_urec_get_bb_info((DF)->problems_by_index[DF_UREC],(BB)->index))
Ddf-scan.c435 struct dataflow *dflow = df->problems_by_index[DF_SCAN]; in df_rescan_blocks()
547 struct dataflow *dflow = df->problems_by_index[DF_SCAN]; in df_ref_create()
584 struct dataflow *dflow = df->problems_by_index[DF_SCAN]; in df_get_artificial_defs()
594 struct dataflow *dflow = df->problems_by_index[DF_SCAN]; in df_get_artificial_uses()
687 df_chain_unlink (df->problems_by_index[DF_CHAIN], ref, NULL); in df_reg_chain_unlink()
716 struct dataflow *dflow = df->problems_by_index[DF_SCAN]; in df_ref_remove()
Ddf-problems.c148 gcc_assert (df->problems_by_index[DF_LR]); in df_get_live_in()
150 if (df->problems_by_index[DF_UREC]) in df_get_live_in()
152 else if (df->problems_by_index[DF_UR]) in df_get_live_in()
165 gcc_assert (df->problems_by_index[DF_LR]); in df_get_live_out()
167 if (df->problems_by_index[DF_UREC]) in df_get_live_out()
169 else if (df->problems_by_index[DF_UR]) in df_get_live_out()
1978 struct dataflow *lr_dflow = df->problems_by_index[DF_LR]; in df_ur_local_finalize()
2560 struct dataflow *lr_dflow = df->problems_by_index[DF_LR]; in df_urec_local_finalize()
3030 struct dataflow *rd_dflow = df->problems_by_index [DF_RD]; in df_chain_finalize()
3725 df_lr_dump (dflow->df->problems_by_index [DF_LR], stderr); in df_ri_compute()
Ddf-core.c341 dflow = df->problems_by_index[problem->id]; in df_add_problem()
351 df->problems_by_index[dflow->problem->id] = dflow; in df_add_problem()
430 struct dataflow *scan_dflow = df->problems_by_index [DF_SCAN]; in df_set_blocks()