src/share/vm/interpreter/bytecodeInterpreter.cpp

changeset 2084
13b87063b4d8
parent 2036
126ea7725993
child 2314
f95d63e2154a
equal deleted inserted replaced
2083:a62d332029cf 2084:13b87063b4d8
419 static int _compiling; // (UseCompiler || CountCompiledCalls) 419 static int _compiling; // (UseCompiler || CountCompiledCalls)
420 420
421 #ifdef ASSERT 421 #ifdef ASSERT
422 if (istate->_msg != initialize) { 422 if (istate->_msg != initialize) {
423 assert(abs(istate->_stack_base - istate->_stack_limit) == (istate->_method->max_stack() + 1), "bad stack limit"); 423 assert(abs(istate->_stack_base - istate->_stack_limit) == (istate->_method->max_stack() + 1), "bad stack limit");
424 IA32_ONLY(assert(istate->_stack_limit == istate->_thread->last_Java_sp() + 1, "wrong")); 424 #ifndef SHARK
425 IA32_ONLY(assert(istate->_stack_limit == istate->_thread->last_Java_sp() + 1, "wrong"));
426 #endif // !SHARK
425 } 427 }
426 // Verify linkages. 428 // Verify linkages.
427 interpreterState l = istate; 429 interpreterState l = istate;
428 do { 430 do {
429 assert(l == l->_self_link, "bad link"); 431 assert(l == l->_self_link, "bad link");

mercurial