Searched refs:incoming_state (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkState.cpp371 void SharkPHIState::add_incoming(SharkState* incoming_state) { argument
375 ((PHINode *) method())->addIncoming(incoming_state->method(), predecessor);
380 local(i)->addIncoming(incoming_state->local(i), predecessor);
385 assert(stack_depth == incoming_state->stack_depth(), "should be");
387 assert((stack(i) == NULL) == (incoming_state->stack(i) == NULL), "oops");
389 stack(i)->addIncoming(incoming_state->stack(i), predecessor);
393 assert(num_monitors() == incoming_state->num_monitors(), "should be");
396 assert(oop_tmp() == incoming_state->oop_tmp(), "should be");
H A DsharkState.hpp197 void add_incoming(SharkState* incoming_state);
H A DsharkTopLevelBlock.hpp195 void add_incoming(SharkState* incoming_state);
H A DsharkTopLevelBlock.cpp206 void SharkTopLevelBlock::add_incoming(SharkState* incoming_state) { argument
208 ((SharkPHIState *) entry_state())->add_incoming(incoming_state);
211 _entry_state = incoming_state;
214 assert(entry_state()->equal_to(incoming_state), "should be");
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_32.cpp153 TosState incoming_state = state; local
158 if ((incoming_state == ftos && UseSSE < 1) || (incoming_state == dtos && UseSSE < 2)) {
166 if ((incoming_state == ftos && UseSSE < 1) || (incoming_state == dtos && UseSSE < 2)) {
174 if (incoming_state == ftos && UseSSE >= 1) {
179 } else if (incoming_state == dtos && UseSSE >= 2) {
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Optimizer.cpp586 ValueSet* incoming_state);
727 bool NullCheckEliminator::merge_state_for(BlockBegin* block, ValueSet* incoming_state) { argument
730 state = incoming_state->copy();
734 bool changed = state->set_intersect(incoming_state);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp156 TosState incoming_state = state; local
172 if (incoming_state == ltos) {

Completed in 73 milliseconds