Searched refs:cur_state (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.hpp286 ValueStack* cur_state = v_state; \
288 for_each_state(cur_state) { \
290 for_each_local_value(cur_state, cur_index, v_value) { \
295 for_each_stack_value(cur_state, cur_index, v_value) { \
315 ValueStack* cur_state = v_block->state(); \
318 for_each_stack_value(cur_state, cur_index, value) { \
326 for_each_local_value(cur_state, cur_index, value) { \
H A Dc1_GraphBuilder.cpp2198 ValueStack* cur_state = instruction->state_before();
2202 assert(cur_state != NULL, "state_before must be set");
2204 int cur_bci = cur_state->bci();
2205 assert(cur_scope_data->scope() == cur_state->scope(), "scopes do not match");
2229 assert(entry->state() == NULL || cur_state->total_locks_size() == entry->state()->total_locks_size(), "locks do not match");
2232 if (cur_state->stack_size() != 0) {
2233 cur_state = cur_state->copy(ValueStack::ExceptionState, cur_state->bci());
2236 instruction->set_exception_state(cur_state);
[all...]
H A Dc1_LIRGenerator.cpp1012 void LIRGenerator::move_to_phi(ValueStack* cur_state) { argument
1020 int max_phis = cur_state->stack_size() + cur_state->locals_size();
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");
1032 move_to_phi(&resolver, cur_state->stack_at(index), sux_value);
1036 move_to_phi(&resolver, cur_state->local_at(index), sux_value);
1039 assert(cur_state->caller_state() == sux_state->caller_state(), "caller states must be equal");
H A Dc1_LinearScan.cpp2834 IRScopeDebugInfo* LinearScan::compute_debug_info_for_scope(int op_id, IRScope* cur_scope, ValueStack* cur_state, ValueStack* innermost_state) { argument
2837 ValueStack* caller_state = cur_state->caller_state();
2851 int nof_locals = cur_state->locals_size();
2857 assert(pos < cur_state->locals_size(), "why not?");
2859 Value local = cur_state->local_at(pos);
2865 assert(locals->length() == cur_state->locals_size(), "wrong number of locals");
2867 assert(cur_state->kind() == ValueStack::EmptyExceptionState, "should be");
2876 int nof_stack = cur_state->stack_size();
2882 Value expression = cur_state->stack_at_inc(pos);
2887 assert(expressions->length() == cur_state
[all...]
H A Dc1_LIRGenerator.hpp230 void move_to_phi(ValueStack* cur_state);
H A Dc1_LinearScan.hpp367 IRScopeDebugInfo* compute_debug_info_for_scope(int op_id, IRScope* cur_scope, ValueStack* cur_state, ValueStack* innermost_state);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsafepoint.cpp238 ThreadSafepointState *cur_state = cur->safepoint_state(); local
239 if (cur_state->is_running()) {
240 cur_state->examine_state_of_thread();
241 if (!cur_state->is_running()) {
250 if (TraceSafepoint && Verbose) cur_state->print();
481 ThreadSafepointState* cur_state = current->safepoint_state(); local
482 assert(cur_state->type() != ThreadSafepointState::_running, "Thread not suspended at safepoint");
483 cur_state->restart();
484 assert(cur_state->is_running(), "safepoint state has not been reset");
848 ThreadSafepointState *cur_state; local
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp1227 intArray* cur_state = sim()->write_state(); local
1233 assert(cur_state->length() == sux_state->length(), "incorrect length");
1234 for (int i = 0; i < cur_state->length(); i++) {
1235 assert(cur_state->at(i) == sux_state->at(i), "element not equal");
H A DcppInterpreter_x86.cpp2390 interpreterState cur_state = (interpreterState) ((intptr_t)interpreter_frame->fp() - sizeof(BytecodeInterpreter)); local
2422 intptr_t* monitor_base = (intptr_t*) cur_state;
2428 BytecodeInterpreter::layout_interpreterState(cur_state,
2439 // BytecodeInterpreter::pd_layout_interpreterState(cur_state, interpreter_return_address, interpreter_frame->fp());
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DcppInterpreter_sparc.cpp2232 interpreterState cur_state = (interpreterState) ((intptr_t)interpreter_frame->fp() - sizeof(BytecodeInterpreter)); local
2270 intptr_t* monitor_base = (intptr_t*) cur_state;
2276 BytecodeInterpreter::layout_interpreterState(cur_state,
2287 BytecodeInterpreter::pd_layout_interpreterState(cur_state, interpreter_return_address, interpreter_frame->fp());

Completed in 311 milliseconds