Home
last modified time | relevance | path

Searched refs:tmp_rtx (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/gcc/
HDgraph.c109 node_data (FILE *fp, rtx tmp_rtx) in node_data() argument
111 if (PREV_INSN (tmp_rtx) == 0) in node_data()
121 current_function_name (), XINT (tmp_rtx, 0)); in node_data()
133 current_function_name (), XINT (tmp_rtx, 0), in node_data()
134 NOTE_P (tmp_rtx) ? "lightgrey" in node_data()
135 : NONJUMP_INSN_P (tmp_rtx) ? "green" in node_data()
136 : JUMP_P (tmp_rtx) ? "darkgreen" in node_data()
137 : CALL_P (tmp_rtx) ? "darkgreen" in node_data()
138 : LABEL_P (tmp_rtx) ? "\ in node_data()
140 GET_RTX_NAME (GET_CODE (tmp_rtx)), XINT (tmp_rtx, 0)); in node_data()
[all …]
HDprint-rtl.c740 rtx tmp_rtx; in print_rtl() local
759 for (tmp_rtx = rtx_first; tmp_rtx != 0; tmp_rtx = NEXT_INSN (tmp_rtx)) in print_rtl()
761 || !NOTE_P (tmp_rtx) || NOTE_LINE_NUMBER (tmp_rtx) < 0) in print_rtl()
764 print_rtx (tmp_rtx); in print_rtl()
HDcfgrtl.c1616 rtx tmp_rtx; in print_rtl_with_bb() local
1649 for (tmp_rtx = rtx_first; NULL != tmp_rtx; tmp_rtx = NEXT_INSN (tmp_rtx)) in print_rtl_with_bb()
1653 if ((bb = start[INSN_UID (tmp_rtx)]) != NULL) in print_rtl_with_bb()
1661 if (in_bb_p[INSN_UID (tmp_rtx)] == NOT_IN_BB in print_rtl_with_bb()
1662 && !NOTE_P (tmp_rtx) in print_rtl_with_bb()
1663 && !BARRIER_P (tmp_rtx)) in print_rtl_with_bb()
1665 else if (in_bb_p[INSN_UID (tmp_rtx)] == IN_MULTIPLE_BB) in print_rtl_with_bb()
1668 did_output = print_rtl_single (outf, tmp_rtx); in print_rtl_with_bb()
1670 if ((bb = end[INSN_UID (tmp_rtx)]) != NULL) in print_rtl_with_bb()
1690 for (tmp_rtx = current_function_epilogue_delay_list; tmp_rtx != 0; in print_rtl_with_bb()
[all …]