Home
last modified time | relevance | path

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

/openbsd-src/gnu/gcc/gcc/
H A Dsched-deps.c377 ds_t new_status = ds | DEP_STATUS (link); in add_or_update_back_dep_1()
382 || !(DEP_STATUS (link) & SPECULATIVE)) in add_or_update_back_dep_1()
387 && (DEP_STATUS (link) & SPECULATIVE)) in add_or_update_back_dep_1()
403 new_status = ds_merge (DEP_STATUS (link), ds); in add_or_update_back_dep_1()
433 && DEP_STATUS (link) != ds) in add_or_update_back_dep_1()
435 DEP_STATUS (link) = ds; in add_or_update_back_dep_1()
1661 new_link = alloc_DEPS_LIST (to, INSN_DEPEND (from), DEP_STATUS (link)); in add_forw_dep()
1892 && (DEP_STATUS (link) & SPECULATIVE)) in adjust_add_sorted_back_dep()
1894 DEP_STATUS (link) &= ~SPECULATIVE; in adjust_add_sorted_back_dep()
1903 if (DEP_STATUS (link) & SPECULATIVE) in adjust_add_sorted_back_dep()
[all …]
H A Dhaifa-sched.c773 && (DEP_STATUS (link) & SPECULATIVE) in priority()
3027 if (DEP_STATUS (link) & SPECULATIVE) in try_ready()
3032 *ts = DEP_STATUS (link) & SPECULATIVE; in try_ready()
3034 *ts = ds_merge (*ts, DEP_STATUS (link) & SPECULATIVE); in try_ready()
3364 ds = DEP_STATUS (link); in process_insn_depend_be_in_spec()
3453 gcc_assert (!(DEP_STATUS (link) & BEGIN_SPEC) in add_to_speculative_block()
3454 && (DEP_STATUS (link) & BE_IN_SPEC) in add_to_speculative_block()
3455 && (DEP_STATUS (link) & DEP_TYPES) == DEP_TRUE); in add_to_speculative_block()
3763 if (DEP_STATUS (link) & DEP_OUTPUT) in create_check_block_twin()
3870 ds = DEP_STATUS (link); in create_check_block_twin()
[all …]
H A Dsched-int.h395 #define DEP_STATUS(LINK) XINT (LINK, 2) macro