Home
last modified time | relevance | path

Searched refs:LABEL_DECL_UID (Results 1 – 25 of 27) sorted by relevance

12

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dprint-tree.c144 && LABEL_DECL_UID (node) != -1) in print_node_brief()
149 fprintf (file, " L.%d", (int) LABEL_DECL_UID (node)); in print_node_brief()
289 && LABEL_DECL_UID (node) != -1) in print_node()
294 fprintf (file, " L.%d", (int) LABEL_DECL_UID (node)); in print_node()
H A Dtree-pretty-print.c294 if (TREE_CODE (node) == LABEL_DECL && LABEL_DECL_UID (node) != -1) in dump_decl_name()
295 pp_printf (pp, "L%c%d", uid_sep, (int) LABEL_DECL_UID (node)); in dump_decl_name()
2135 else if (LABEL_DECL_UID (node) != -1) in dump_generic_node()
2138 pp_printf (pp, "L%d", (int) LABEL_DECL_UID (node)); in dump_generic_node()
2140 pp_printf (pp, "<L%d>", (int) LABEL_DECL_UID (node)); in dump_generic_node()
H A Dtree-cfg.c1370 int uid = LABEL_DECL_UID (dest); in label_to_block()
1383 uid = LABEL_DECL_UID (dest); in label_to_block()
4895 uid = LABEL_DECL_UID (decl); in verify_gimple_label()
7218 int uid = LABEL_DECL_UID (label); in move_block_to_fn()
7316 LABEL_DECL_UID (m->to) = LABEL_DECL_UID (decl); in new_label_mapper()
7317 if (LABEL_DECL_UID (m->to) >= cfun->cfg->last_label_uid) in new_label_mapper()
7318 cfun->cfg->last_label_uid = LABEL_DECL_UID (m->to) + 1; in new_label_mapper()
H A Dtree-streamer-in.c251 LABEL_DECL_UID (expr) = -1; in unpack_ts_decl_common_value_fields()
H A Dtree-switch-conversion.c1473 return (LABEL_DECL_UID (CASE_LABEL (d2->label)) in cmp()
1474 - LABEL_DECL_UID (CASE_LABEL (d1->label))); in cmp()
H A Dgimple.c1699 uid = LABEL_DECL_UID (t); in gimple_set_bb()
1704 LABEL_DECL_UID (t) = uid = cfun->cfg->last_label_uid++; in gimple_set_bb()
H A Dlto-streamer-out.c1231 hstate.add_int (LABEL_DECL_UID (t)); in hash_tree()
H A Dtree-inline.c6020 LABEL_DECL_UID (copy) = -1; in copy_decl_no_change()
H A Dtree.c1079 LABEL_DECL_UID (t) = -1; in make_node()
15314 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl)); in test_labels()
H A Dtree.h2789 #define LABEL_DECL_UID(NODE) \ macro
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dprint-tree.cc144 && LABEL_DECL_UID (node) != -1) in print_node_brief()
149 fprintf (file, " L.%d", (int) LABEL_DECL_UID (node)); in print_node_brief()
289 && LABEL_DECL_UID (node) != -1) in print_node()
294 fprintf (file, " L.%d", (int) LABEL_DECL_UID (node)); in print_node()
H A Dtree-pretty-print.cc300 if (TREE_CODE (node) == LABEL_DECL && LABEL_DECL_UID (node) != -1) in dump_decl_name()
304 pp_decimal_int (pp, (int) LABEL_DECL_UID (node)); in dump_decl_name()
2296 else if (LABEL_DECL_UID (node) != -1) in dump_generic_node()
2301 pp_decimal_int (pp, (int) LABEL_DECL_UID (node)); in dump_generic_node()
2306 pp_decimal_int (pp, (int) LABEL_DECL_UID (node)); in dump_generic_node()
H A Dtree-cfg.cc1364 int uid = LABEL_DECL_UID (dest); in label_to_block()
1377 uid = LABEL_DECL_UID (dest); in label_to_block()
4953 uid = LABEL_DECL_UID (decl); in verify_gimple_label()
7298 int uid = LABEL_DECL_UID (label); in move_block_to_fn()
7393 LABEL_DECL_UID (m->to) = LABEL_DECL_UID (decl); in new_label_mapper()
7394 if (LABEL_DECL_UID (m->to) >= cfun->cfg->last_label_uid) in new_label_mapper()
7395 cfun->cfg->last_label_uid = LABEL_DECL_UID (m->to) + 1; in new_label_mapper()
H A Dtree-streamer-in.cc253 LABEL_DECL_UID (expr) = -1; in unpack_ts_decl_common_value_fields()
H A Dtree-switch-conversion.cc1478 return (LABEL_DECL_UID (CASE_LABEL (d2->label)) in cmp()
1479 - LABEL_DECL_UID (CASE_LABEL (d1->label))); in cmp()
H A Dgimple.cc1783 uid = LABEL_DECL_UID (t); in gimple_set_bb()
1788 LABEL_DECL_UID (t) = uid = cfun->cfg->last_label_uid++; in gimple_set_bb()
H A Dlto-streamer-out.cc1267 hstate.add_int (LABEL_DECL_UID (t)); in hash_tree()
H A Dtree-inline.cc6060 LABEL_DECL_UID (copy) = -1; in copy_decl_no_change()
H A Dtree.cc1242 LABEL_DECL_UID (t) = -1; in make_node()
14811 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl)); in test_labels()
H A Dtree.h2948 #define LABEL_DECL_UID(NODE) \ macro
H A DChangeLog.tree-ssa5527 * tree.h (LABEL_DECL_UID): Rename from LABEL_DECL_INDEX.
5530 * tree-cfg.c (set_bb_for_stmt): Don't re-set LABEL_DECL_UID.
5533 * tree-pretty-print.c (dump_generic_node): Use LABEL_DECL_UID if set.
H A DChangeLog-200910206 (LABEL_DECL_UID): Update to match.
17429 LABEL_DECL_UID for label decls.
17438 (LABEL_DECL_UID): Adjust.
H A DChangeLog-200518238 * integrate.c (copy_decl_for_inlining): Kill LABEL_DECL_UID field.
30931 * print-tree.c (print_node_brief): Print LABEL_DECL_UID.
/netbsd-src/external/gpl3/gcc.old/dist/gcc/lto/
H A Dlto-common.c1181 compare_values (LABEL_DECL_UID); in compare_tree_sccs_1()
/netbsd-src/external/gpl3/gcc/dist/gcc/lto/
H A Dlto-common.cc1186 compare_values (LABEL_DECL_UID); in compare_tree_sccs_1()

12