Lines Matching refs:JVMState

235 JVMState::JVMState(ciMethod* method, JVMState* caller) :
250 JVMState::JVMState(int stack_size) :
266 JVMState* JVMState::of_depth(int d) const {
267 const JVMState* jvmp = this;
273 return (JVMState*)jvmp;
277 bool JVMState::same_calls_as(const JVMState* that) const {
280 const JVMState* p = this;
281 const JVMState* q = that;
295 uint JVMState::debug_start() const {
296 debug_only(JVMState* jvmroot = of_depth(1));
297 assert(jvmroot->locoff() <= this->locoff(), "youngest JVMState must be last");
302 uint JVMState::debug_end() const {
303 debug_only(JVMState* jvmroot = of_depth(1));
304 assert(jvmroot->endoff() <= this->endoff(), "youngest JVMState must be last");
309 uint JVMState::debug_depth() const {
311 for (const JVMState* jvmp = this; jvmp != NULL; jvmp = jvmp->caller()) {
378 void JVMState::format(PhaseRegAlloc *regalloc, const Node *n, outputStream* st) const {
487 void JVMState::dump_spec(outputStream *st) const {
520 void JVMState::dump_on(outputStream* st) const {
551 void dump_jvms(JVMState* jvms) {
557 JVMState* JVMState::clone_shallow(Compile* C) const {
558 JVMState* n = has_method() ? new (C) JVMState(_method, _caller) : new (C) JVMState(0);
572 JVMState* JVMState::clone_deep(Compile* C) const {
573 JVMState* n = clone_shallow(C);
574 for (JVMState* p = n; p->_caller != NULL; p = p->_caller) {
915 void SafePointNode::set_local(JVMState* jvms, uint idx, Node *c) {
1012 void SafePointNode::grow_stack(JVMState* jvms, uint grow_by) {
1031 assert(JVMState::logMonitorEdges == exact_log2(MonitorEdges), "correct MonitorEdges");
1049 const int MonitorEdges = (1<<JVMState::logMonitorEdges);
1533 void AbstractLockNode::create_lock_counter(JVMState* state) {
1665 JVMState* youngest_jvms = sfn->jvms();
1668 JVMState* jvms = youngest_jvms->of_depth(depth);