Searched refs:current_state (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.hpp78 SharkState* current_state() { function in class:SharkBlock
85 void set_current_state(SharkState* current_state) { argument
86 _current_state = current_state;
92 SharkValue *value = current_state()->local(index);
96 current_state()->local(index + 1) == NULL), "should be");
101 current_state()->set_local(index, value);
103 current_state()->set_local(index + 1, NULL);
109 current_state()->push(value);
112 return current_state()->pop();
115 SharkValue *value = current_state()
[all...]
H A DsharkTopLevelBlock.hpp200 return current_state()->method();
207 assert(!current_state()->oop_tmp(), "oop_tmp gets and sets must match");
208 current_state()->set_oop_tmp(value);
211 llvm::Value* value = current_state()->oop_tmp();
213 current_state()->set_oop_tmp(NULL);
228 return current_state()->num_monitors();
231 current_state()->set_num_monitors(num_monitors);
298 current_state()->set_has_safepointed(true);
H A DsharkTopLevelBlock.cpp261 SharkJavaCallDecacher(function(), bci(), callee).scan(current_state());
283 SharkJavaCallCacher(function(), callee).scan(current_state());
287 SharkVMCallDecacher(function(), bci()).scan(current_state());
291 SharkVMCallCacher(function()).scan(current_state());
295 SharkTrapDecacher(function(), bci()).scan(current_state());
326 SharkState *saved_state = current_state();
416 SharkState *saved_state = current_state()->copy();
448 SharkState *saved_state = current_state()->copy();
552 handler->add_incoming(current_state());
621 successor->add_incoming(current_state());
[all...]
H A DsharkFunction.cpp114 entry_state = locker->current_state();
144 _state(block->current_state()->copy()),
H A DsharkBlock.cpp46 current_state();

Completed in 43 milliseconds