| Index: src/builtins/ia32/builtins-ia32.cc
|
| diff --git a/src/builtins/ia32/builtins-ia32.cc b/src/builtins/ia32/builtins-ia32.cc
|
| index bd638672b1efa061881dcccaf2dac027e10983bf..9013c5fce3f7e4a302a20d8e00a20348a78d5c69 100644
|
| --- a/src/builtins/ia32/builtins-ia32.cc
|
| +++ b/src/builtins/ia32/builtins-ia32.cc
|
| @@ -392,11 +392,10 @@ void Builtins::Generate_ResumeGeneratorTrampoline(MacroAssembler* masm) {
|
| // Flood function if we are stepping.
|
| Label prepare_step_in_if_stepping, prepare_step_in_suspended_generator;
|
| Label stepping_prepared;
|
| - ExternalReference last_step_action =
|
| - ExternalReference::debug_last_step_action_address(masm->isolate());
|
| - STATIC_ASSERT(StepFrame > StepIn);
|
| - __ cmpb(Operand::StaticVariable(last_step_action), Immediate(StepIn));
|
| - __ j(greater_equal, &prepare_step_in_if_stepping);
|
| + ExternalReference debug_hook =
|
| + ExternalReference::debug_hook_on_function_call_address(masm->isolate());
|
| + __ cmpb(Operand::StaticVariable(debug_hook), Immediate(0));
|
| + __ j(not_equal, &prepare_step_in_if_stepping);
|
|
|
| // Flood function if we need to continue stepping in the suspended generator.
|
| ExternalReference debug_suspended_generator =
|
| @@ -464,7 +463,7 @@ void Builtins::Generate_ResumeGeneratorTrampoline(MacroAssembler* masm) {
|
| __ Push(ebx);
|
| __ Push(edx);
|
| __ Push(edi);
|
| - __ CallRuntime(Runtime::kDebugPrepareStepInIfStepping);
|
| + __ CallRuntime(Runtime::kDebugOnFunctionCall);
|
| __ Pop(edx);
|
| __ Pop(ebx);
|
| __ mov(edi, FieldOperand(ebx, JSGeneratorObject::kFunctionOffset));
|
|
|