comparison src/cpu/zero/vm/cppInterpreter_zero.cpp @ 14456:abec000618bf

Merge
author kvn
date Tue, 28 Jan 2014 12:25:34 -0800
parents de6a9e811145 2b8e28fdf503
children 4ca6dc0799b6 0bf37f737702
comparison
equal deleted inserted replaced
14269:2a8891e0a082 14456:abec000618bf
218 if (HAS_PENDING_EXCEPTION) 218 if (HAS_PENDING_EXCEPTION)
219 goto unwind_and_return; 219 goto unwind_and_return;
220 } 220 }
221 InvocationCounter *counter = mcs->invocation_counter(); 221 InvocationCounter *counter = mcs->invocation_counter();
222 counter->increment(); 222 counter->increment();
223 if (counter->reached_InvocationLimit()) { 223 if (counter->reached_InvocationLimit(mcs->backedge_counter())) {
224 CALL_VM_NOCHECK( 224 CALL_VM_NOCHECK(
225 InterpreterRuntime::frequency_counter_overflow(thread, NULL)); 225 InterpreterRuntime::frequency_counter_overflow(thread, NULL));
226 if (HAS_PENDING_EXCEPTION) 226 if (HAS_PENDING_EXCEPTION)
227 goto unwind_and_return; 227 goto unwind_and_return;
228 } 228 }