Searched refs:sux_state (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Optimizer.cpp136 // check if at least one word was pushed on sux_state
139 ValueStack* sux_state = sux->state(); local
140 if (if_state->scope()->level() > sux_state->scope()->level()) {
141 while (sux_state->scope() != if_state->scope()) {
145 } else if (if_state->scope()->level() < sux_state->scope()->level()) {
146 while (sux_state->scope() != if_state->scope()) {
147 sux_state = sux_state->caller_state();
148 assert(sux_state != NULL, "states do not match up");
152 if (sux_state
351 ValueStack* sux_state = sux->state(); local
[all...]
H A Dc1_LIRGenerator.cpp1023 ValueStack* sux_state = sux->state(); local
1027 assert(cur_state->scope() == sux_state->scope(), "not matching");
1028 assert(cur_state->locals_size() == sux_state->locals_size(), "not matching");
1029 assert(cur_state->stack_size() == sux_state->stack_size(), "not matching");
1031 for_each_stack_value(sux_state, index, sux_value) {
1035 for_each_local_value(sux_state, index, sux_value) {
1039 assert(cur_state->caller_state() == sux_state->caller_state(), "caller states must be equal");
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp1207 intArray* sux_state = sux->fpu_stack_state(); local
1208 assert(state->length() == sux_state->length(), "overwriting existing stack state");
1210 assert(state->at(j) == sux_state->at(j), "overwriting existing stack state");
1230 intArray* sux_state = sux->fpu_stack_state(); local
1232 assert(sux_state != NULL, "no fpu state");
1233 assert(cur_state->length() == sux_state->length(), "incorrect length");
1235 assert(cur_state->at(i) == sux_state->at(i), "element not equal");

Completed in 45 milliseconds