Home
last modified time | relevance | path

Searched refs:curr_state (Results 1 – 13 of 13) sorted by relevance

/openbsd/src/gnu/usr.bin/gcc/gcc/
Dmbchar.c101 JIS_STATE curr_state = save_state; local
226 action = JIS_action_table[curr_state][ch];
227 curr_state = JIS_state_table[curr_state][ch];
238 save_state = curr_state;
244 save_state = curr_state;
251 save_state = curr_state;
258 save_state = curr_state;
Dhaifa-sched.c279 state_t curr_state; variable
1086 state_transition (curr_state, in advance_one_cycle()
1089 state_transition (curr_state, NULL); in advance_one_cycle()
1092 state_transition (curr_state, in advance_one_cycle()
1836 memcpy (choice_stack->state, curr_state, dfa_state_size);
1862 memcpy (curr_state, top->state, dfa_state_size);
1870 delay = state_transition (curr_state, insn);
1873 if (state_dead_lock_p (curr_state))
1878 if (memcmp (top->state, curr_state, dfa_state_size) != 0)
1884 memcpy (top->state, curr_state, dfa_state_size);
[all …]
Dgenautomata.c5962 state_t curr_state; local
5981 curr_state = first_state->next_equiv_class_state;
5982 curr_state != NULL;
5983 curr_state = next_state)
5985 next_state = curr_state->next_equiv_class_state;
5986 if (state_is_differed (curr_state, out_arcs_num,
5992 curr_state->next_equiv_class_state = new_equiv_class;
5996 curr_state->equiv_class_num_2 = *new_equiv_class_num_ptr;
5998 curr_state->equiv_class_num_1 = *new_equiv_class_num_ptr;
5999 new_equiv_class = curr_state;
[all …]
Dsched-int.h24 extern state_t curr_state;
Dsched-rgn.c2068 || min_insn_conflict_delay (curr_state,
2181 && min_insn_conflict_delay (curr_state, next,
DChangeLog.612651 * sched-int.h: (curr_state): Add the external definition for
12676 (curr_state, dfa_state_size, ready_try): New varaibles for
DChangeLog.79504 * sched-int.h: (curr_state): Add the external definition for
9529 (curr_state, dfa_state_size, ready_try): New varaibles for
/openbsd/src/gnu/gcc/gcc/config/ia64/
Dia64.c6489 memcpy (prev_cycle_state, curr_state, dfa_state_size); in ia64_variable_issue()
6558 state_transition (curr_state, dfa_stop_insn); in ia64_dfa_new_cycle()
6570 state_reset (curr_state); in ia64_dfa_new_cycle()
6573 memcpy (curr_state, prev_cycle_state, dfa_state_size); in ia64_dfa_new_cycle()
6574 state_transition (curr_state, dfa_stop_insn); in ia64_dfa_new_cycle()
6575 state_transition (curr_state, dfa_pre_cycle_insn); in ia64_dfa_new_cycle()
6576 state_transition (curr_state, NULL); in ia64_dfa_new_cycle()
7292 struct bundle_state *curr_state, *next_state; in finish_bundle_states() local
7294 for (curr_state = allocated_bundle_states_chain; in finish_bundle_states()
7295 curr_state != NULL; in finish_bundle_states()
[all …]
/openbsd/src/gnu/gcc/gcc/
Dhaifa-sched.c299 state_t curr_state; variable
1122 state_transition (curr_state, in advance_one_cycle()
1125 state_transition (curr_state, NULL); in advance_one_cycle()
1128 state_transition (curr_state, in advance_one_cycle()
2085 memcpy (choice_stack->state, curr_state, dfa_state_size); in max_issue()
2112 memcpy (curr_state, top->state, dfa_state_size); in max_issue()
2120 delay = state_transition (curr_state, insn); in max_issue()
2123 if (state_dead_lock_p (curr_state)) in max_issue()
2128 if (memcmp (top->state, curr_state, dfa_state_size) != 0) in max_issue()
2134 memcpy (top->state, curr_state, dfa_state_size); in max_issue()
[all …]
Dgenautomata.c5804 state_t curr_state; in partition_equiv_class() local
5818 curr_state = first_state->next_equiv_class_state; in partition_equiv_class()
5819 curr_state != NULL; in partition_equiv_class()
5820 curr_state = next_state) in partition_equiv_class()
5822 next_state = curr_state->next_equiv_class_state; in partition_equiv_class()
5823 if (state_is_differed (curr_state, first_state, in partition_equiv_class()
5829 curr_state->next_equiv_class_state = new_equiv_class; in partition_equiv_class()
5833 curr_state->equiv_class_num_2 = *new_equiv_class_num_ptr; in partition_equiv_class()
5835 curr_state->equiv_class_num_1 = *new_equiv_class_num_ptr; in partition_equiv_class()
5836 new_equiv_class = curr_state; in partition_equiv_class()
[all …]
Dmodulo-sched.c2285 state_transition (curr_state, in advance_one_cycle()
2288 state_transition (curr_state, NULL); in advance_one_cycle()
2291 state_transition (curr_state, in advance_one_cycle()
2308 state_reset (curr_state); in kernel_number_of_cycles()
2318 if (!can_issue_more || state_dead_lock_p (curr_state)) in kernel_number_of_cycles()
2327 if (state_transition (curr_state, insn) >= 0) in kernel_number_of_cycles()
2355 state_reset (curr_state); in ps_has_conflicts()
2374 if (!can_issue_more || state_dead_lock_p (curr_state)) in ps_has_conflicts()
2379 if (state_transition (curr_state, insn) >= 0) in ps_has_conflicts()
Dsched-int.h34 extern state_t curr_state;
Dsched-rgn.c2090 && min_insn_conflict_delay (curr_state, next, next) in new_ready()