d4cbf9486b566b0c3f9d25429f5d411b6cd0fdfd
[platform/upstream/v8.git] / src / ia32 / builtins-ia32.cc
1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "src/v8.h"
6
7 #if V8_TARGET_ARCH_IA32
8
9 #include "src/code-factory.h"
10 #include "src/codegen.h"
11 #include "src/deoptimizer.h"
12 #include "src/full-codegen/full-codegen.h"
13
14 namespace v8 {
15 namespace internal {
16
17
18 #define __ ACCESS_MASM(masm)
19
20
21 void Builtins::Generate_Adaptor(MacroAssembler* masm,
22                                 CFunctionId id,
23                                 BuiltinExtraArguments extra_args) {
24   // ----------- S t a t e -------------
25   //  -- eax                : number of arguments excluding receiver
26   //  -- edi                : called function (only guaranteed when
27   //                          extra_args requires it)
28   //  -- esi                : context
29   //  -- esp[0]             : return address
30   //  -- esp[4]             : last argument
31   //  -- ...
32   //  -- esp[4 * argc]      : first argument (argc == eax)
33   //  -- esp[4 * (argc +1)] : receiver
34   // -----------------------------------
35
36   // Insert extra arguments.
37   int num_extra_args = 0;
38   if (extra_args == NEEDS_CALLED_FUNCTION) {
39     num_extra_args = 1;
40     Register scratch = ebx;
41     __ pop(scratch);  // Save return address.
42     __ push(edi);
43     __ push(scratch);  // Restore return address.
44   } else {
45     DCHECK(extra_args == NO_EXTRA_ARGUMENTS);
46   }
47
48   // JumpToExternalReference expects eax to contain the number of arguments
49   // including the receiver and the extra arguments.
50   __ add(eax, Immediate(num_extra_args + 1));
51   __ JumpToExternalReference(ExternalReference(id, masm->isolate()));
52 }
53
54
55 static void CallRuntimePassFunction(
56     MacroAssembler* masm, Runtime::FunctionId function_id) {
57   FrameScope scope(masm, StackFrame::INTERNAL);
58   // Push a copy of the function.
59   __ push(edi);
60   // Function is also the parameter to the runtime call.
61   __ push(edi);
62
63   __ CallRuntime(function_id, 1);
64   // Restore receiver.
65   __ pop(edi);
66 }
67
68
69 static void GenerateTailCallToSharedCode(MacroAssembler* masm) {
70   __ mov(eax, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
71   __ mov(eax, FieldOperand(eax, SharedFunctionInfo::kCodeOffset));
72   __ lea(eax, FieldOperand(eax, Code::kHeaderSize));
73   __ jmp(eax);
74 }
75
76
77 static void GenerateTailCallToReturnedCode(MacroAssembler* masm) {
78   __ lea(eax, FieldOperand(eax, Code::kHeaderSize));
79   __ jmp(eax);
80 }
81
82
83 void Builtins::Generate_InOptimizationQueue(MacroAssembler* masm) {
84   // Checking whether the queued function is ready for install is optional,
85   // since we come across interrupts and stack checks elsewhere.  However,
86   // not checking may delay installing ready functions, and always checking
87   // would be quite expensive.  A good compromise is to first check against
88   // stack limit as a cue for an interrupt signal.
89   Label ok;
90   ExternalReference stack_limit =
91       ExternalReference::address_of_stack_limit(masm->isolate());
92   __ cmp(esp, Operand::StaticVariable(stack_limit));
93   __ j(above_equal, &ok, Label::kNear);
94
95   CallRuntimePassFunction(masm, Runtime::kTryInstallOptimizedCode);
96   GenerateTailCallToReturnedCode(masm);
97
98   __ bind(&ok);
99   GenerateTailCallToSharedCode(masm);
100 }
101
102
103 static void Generate_JSConstructStubHelper(MacroAssembler* masm,
104                                            bool is_api_function,
105                                            bool create_memento) {
106   // ----------- S t a t e -------------
107   //  -- eax: number of arguments
108   //  -- edi: constructor function
109   //  -- ebx: allocation site or undefined
110   //  -- edx: original constructor
111   // -----------------------------------
112
113   // Should never create mementos for api functions.
114   DCHECK(!is_api_function || !create_memento);
115
116   // Enter a construct frame.
117   {
118     FrameScope scope(masm, StackFrame::CONSTRUCT);
119
120     // Preserve the incoming parameters on the stack.
121     __ AssertUndefinedOrAllocationSite(ebx);
122     __ push(ebx);
123     __ SmiTag(eax);
124     __ push(eax);
125     __ push(edi);
126     __ push(edx);
127
128     // Try to allocate the object without transitioning into C code. If any of
129     // the preconditions is not met, the code bails out to the runtime call.
130     Label rt_call, allocated;
131     if (FLAG_inline_new) {
132       ExternalReference debug_step_in_fp =
133           ExternalReference::debug_step_in_fp_address(masm->isolate());
134       __ cmp(Operand::StaticVariable(debug_step_in_fp), Immediate(0));
135       __ j(not_equal, &rt_call);
136
137       // Fall back to runtime if the original constructor and function differ.
138       __ cmp(edx, edi);
139       __ j(not_equal, &rt_call);
140
141       // Verified that the constructor is a JSFunction.
142       // Load the initial map and verify that it is in fact a map.
143       // edi: constructor
144       __ mov(eax, FieldOperand(edi, JSFunction::kPrototypeOrInitialMapOffset));
145       // Will both indicate a NULL and a Smi
146       __ JumpIfSmi(eax, &rt_call);
147       // edi: constructor
148       // eax: initial map (if proven valid below)
149       __ CmpObjectType(eax, MAP_TYPE, ebx);
150       __ j(not_equal, &rt_call);
151
152       // Check that the constructor is not constructing a JSFunction (see
153       // comments in Runtime_NewObject in runtime.cc). In which case the
154       // initial map's instance type would be JS_FUNCTION_TYPE.
155       // edi: constructor
156       // eax: initial map
157       __ CmpInstanceType(eax, JS_FUNCTION_TYPE);
158       __ j(equal, &rt_call);
159
160       if (!is_api_function) {
161         Label allocate;
162         // The code below relies on these assumptions.
163         STATIC_ASSERT(Map::Counter::kShift + Map::Counter::kSize == 32);
164         // Check if slack tracking is enabled.
165         __ mov(esi, FieldOperand(eax, Map::kBitField3Offset));
166         __ shr(esi, Map::Counter::kShift);
167         __ cmp(esi, Map::kSlackTrackingCounterEnd);
168         __ j(less, &allocate);
169         // Decrease generous allocation count.
170         __ sub(FieldOperand(eax, Map::kBitField3Offset),
171                Immediate(1 << Map::Counter::kShift));
172
173         __ cmp(esi, Map::kSlackTrackingCounterEnd);
174         __ j(not_equal, &allocate);
175
176         __ push(eax);
177         __ push(edx);
178         __ push(edi);
179
180         __ push(edi);  // constructor
181         __ CallRuntime(Runtime::kFinalizeInstanceSize, 1);
182
183         __ pop(edi);
184         __ pop(edx);
185         __ pop(eax);
186         __ mov(esi, Map::kSlackTrackingCounterEnd - 1);
187
188         __ bind(&allocate);
189       }
190
191       // Now allocate the JSObject on the heap.
192       // edi: constructor
193       // eax: initial map
194       __ movzx_b(edi, FieldOperand(eax, Map::kInstanceSizeOffset));
195       __ shl(edi, kPointerSizeLog2);
196       if (create_memento) {
197         __ add(edi, Immediate(AllocationMemento::kSize));
198       }
199
200       __ Allocate(edi, ebx, edi, no_reg, &rt_call, NO_ALLOCATION_FLAGS);
201
202       Factory* factory = masm->isolate()->factory();
203
204       // Allocated the JSObject, now initialize the fields.
205       // eax: initial map
206       // ebx: JSObject
207       // edi: start of next object (including memento if create_memento)
208       __ mov(Operand(ebx, JSObject::kMapOffset), eax);
209       __ mov(ecx, factory->empty_fixed_array());
210       __ mov(Operand(ebx, JSObject::kPropertiesOffset), ecx);
211       __ mov(Operand(ebx, JSObject::kElementsOffset), ecx);
212       // Set extra fields in the newly allocated object.
213       // eax: initial map
214       // ebx: JSObject
215       // edi: start of next object (including memento if create_memento)
216       // esi: slack tracking counter (non-API function case)
217       __ mov(edx, factory->undefined_value());
218       __ lea(ecx, Operand(ebx, JSObject::kHeaderSize));
219       if (!is_api_function) {
220         Label no_inobject_slack_tracking;
221
222         // Check if slack tracking is enabled.
223         __ cmp(esi, Map::kSlackTrackingCounterEnd);
224         __ j(less, &no_inobject_slack_tracking);
225
226         // Allocate object with a slack.
227         __ movzx_b(esi, FieldOperand(eax, Map::kInObjectPropertiesOffset));
228         __ movzx_b(eax, FieldOperand(eax, Map::kUnusedPropertyFieldsOffset));
229         __ sub(esi, eax);
230         __ lea(esi,
231                Operand(ebx, esi, times_pointer_size, JSObject::kHeaderSize));
232         // esi: offset of first field after pre-allocated fields
233         if (FLAG_debug_code) {
234           __ cmp(esi, edi);
235           __ Assert(less_equal,
236                     kUnexpectedNumberOfPreAllocatedPropertyFields);
237         }
238         __ InitializeFieldsWithFiller(ecx, esi, edx);
239         __ mov(edx, factory->one_pointer_filler_map());
240         // Fill the remaining fields with one pointer filler map.
241
242         __ bind(&no_inobject_slack_tracking);
243       }
244
245       if (create_memento) {
246         __ lea(esi, Operand(edi, -AllocationMemento::kSize));
247         __ InitializeFieldsWithFiller(ecx, esi, edx);
248
249         // Fill in memento fields if necessary.
250         // esi: points to the allocated but uninitialized memento.
251         __ mov(Operand(esi, AllocationMemento::kMapOffset),
252                factory->allocation_memento_map());
253         // Get the cell or undefined.
254         __ mov(edx, Operand(esp, 3 * kPointerSize));
255         __ AssertUndefinedOrAllocationSite(edx);
256         __ mov(Operand(esi, AllocationMemento::kAllocationSiteOffset),
257                edx);
258       } else {
259         __ InitializeFieldsWithFiller(ecx, edi, edx);
260       }
261
262       // Add the object tag to make the JSObject real, so that we can continue
263       // and jump into the continuation code at any time from now on.
264       // ebx: JSObject (untagged)
265       __ or_(ebx, Immediate(kHeapObjectTag));
266
267       // Continue with JSObject being successfully allocated
268       // ebx: JSObject (tagged)
269       __ jmp(&allocated);
270     }
271
272     // Allocate the new receiver object using the runtime call.
273     // edx: original constructor
274     __ bind(&rt_call);
275     int offset = kPointerSize;
276     if (create_memento) {
277       // Get the cell or allocation site.
278       __ mov(edi, Operand(esp, kPointerSize * 3));
279       __ push(edi);  // argument 1: allocation site
280       offset += kPointerSize;
281     }
282
283     // Must restore esi (context) and edi (constructor) before calling
284     // runtime.
285     __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
286     __ mov(edi, Operand(esp, offset));
287     __ push(edi);  // argument 2/1: constructor function
288     __ push(edx);  // argument 3/2: original constructor
289     if (create_memento) {
290       __ CallRuntime(Runtime::kNewObjectWithAllocationSite, 3);
291     } else {
292       __ CallRuntime(Runtime::kNewObject, 2);
293     }
294     __ mov(ebx, eax);  // store result in ebx
295
296     // Runtime_NewObjectWithAllocationSite increments allocation count.
297     // Skip the increment.
298     Label count_incremented;
299     if (create_memento) {
300       __ jmp(&count_incremented);
301     }
302
303     // New object allocated.
304     // ebx: newly allocated object
305     __ bind(&allocated);
306
307     if (create_memento) {
308       __ mov(ecx, Operand(esp, 3 * kPointerSize));
309       __ cmp(ecx, masm->isolate()->factory()->undefined_value());
310       __ j(equal, &count_incremented);
311       // ecx is an AllocationSite. We are creating a memento from it, so we
312       // need to increment the memento create count.
313       __ add(FieldOperand(ecx, AllocationSite::kPretenureCreateCountOffset),
314              Immediate(Smi::FromInt(1)));
315       __ bind(&count_incremented);
316     }
317
318     // Restore the parameters.
319     __ pop(edx);  // new.target
320     __ pop(edi);  // Constructor function.
321
322     // Retrieve smi-tagged arguments count from the stack.
323     __ mov(eax, Operand(esp, 0));
324     __ SmiUntag(eax);
325
326     // Push new.target onto the construct frame. This is stored just below the
327     // receiver on the stack.
328     __ push(edx);
329
330     // Push the allocated receiver to the stack. We need two copies
331     // because we may have to return the original one and the calling
332     // conventions dictate that the called function pops the receiver.
333     __ push(ebx);
334     __ push(ebx);
335
336     // Set up pointer to last argument.
337     __ lea(ebx, Operand(ebp, StandardFrameConstants::kCallerSPOffset));
338
339     // Copy arguments and receiver to the expression stack.
340     Label loop, entry;
341     __ mov(ecx, eax);
342     __ jmp(&entry);
343     __ bind(&loop);
344     __ push(Operand(ebx, ecx, times_4, 0));
345     __ bind(&entry);
346     __ dec(ecx);
347     __ j(greater_equal, &loop);
348
349     // Call the function.
350     if (is_api_function) {
351       __ mov(esi, FieldOperand(edi, JSFunction::kContextOffset));
352       Handle<Code> code =
353           masm->isolate()->builtins()->HandleApiCallConstruct();
354       __ call(code, RelocInfo::CODE_TARGET);
355     } else {
356       ParameterCount actual(eax);
357       __ InvokeFunction(edi, actual, CALL_FUNCTION,
358                         NullCallWrapper());
359     }
360
361     // Store offset of return address for deoptimizer.
362     if (!is_api_function) {
363       masm->isolate()->heap()->SetConstructStubDeoptPCOffset(masm->pc_offset());
364     }
365
366     // Restore context from the frame.
367     __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
368
369     // If the result is an object (in the ECMA sense), we should get rid
370     // of the receiver and use the result; see ECMA-262 section 13.2.2-7
371     // on page 74.
372     Label use_receiver, exit;
373
374     // If the result is a smi, it is *not* an object in the ECMA sense.
375     __ JumpIfSmi(eax, &use_receiver);
376
377     // If the type of the result (stored in its map) is less than
378     // FIRST_SPEC_OBJECT_TYPE, it is not an object in the ECMA sense.
379     __ CmpObjectType(eax, FIRST_SPEC_OBJECT_TYPE, ecx);
380     __ j(above_equal, &exit);
381
382     // Throw away the result of the constructor invocation and use the
383     // on-stack receiver as the result.
384     __ bind(&use_receiver);
385     __ mov(eax, Operand(esp, 0));
386
387     // Restore the arguments count and leave the construct frame. The arguments
388     // count is stored below the reciever and the new.target.
389     __ bind(&exit);
390     __ mov(ebx, Operand(esp, 2 * kPointerSize));
391
392     // Leave construct frame.
393   }
394
395   // Remove caller arguments from the stack and return.
396   STATIC_ASSERT(kSmiTagSize == 1 && kSmiTag == 0);
397   __ pop(ecx);
398   __ lea(esp, Operand(esp, ebx, times_2, 1 * kPointerSize));  // 1 ~ receiver
399   __ push(ecx);
400   __ IncrementCounter(masm->isolate()->counters()->constructed_objects(), 1);
401   __ ret(0);
402 }
403
404
405 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) {
406   Generate_JSConstructStubHelper(masm, false, FLAG_pretenuring_call_new);
407 }
408
409
410 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) {
411   Generate_JSConstructStubHelper(masm, true, false);
412 }
413
414
415 void Builtins::Generate_JSConstructStubForDerived(MacroAssembler* masm) {
416   // ----------- S t a t e -------------
417   //  -- eax: number of arguments
418   //  -- edi: constructor function
419   //  -- ebx: allocation site or undefined
420   //  -- edx: original constructor
421   // -----------------------------------
422
423   {
424     FrameScope frame_scope(masm, StackFrame::CONSTRUCT);
425
426     // Preserve allocation site.
427     __ AssertUndefinedOrAllocationSite(ebx);
428     __ push(ebx);
429
430     // Preserve actual arguments count.
431     __ SmiTag(eax);
432     __ push(eax);
433     __ SmiUntag(eax);
434
435     // Push new.target.
436     __ push(edx);
437
438     // receiver is the hole.
439     __ push(Immediate(masm->isolate()->factory()->the_hole_value()));
440
441     // Set up pointer to last argument.
442     __ lea(ebx, Operand(ebp, StandardFrameConstants::kCallerSPOffset));
443
444     // Copy arguments and receiver to the expression stack.
445     Label loop, entry;
446     __ mov(ecx, eax);
447     __ jmp(&entry);
448     __ bind(&loop);
449     __ push(Operand(ebx, ecx, times_4, 0));
450     __ bind(&entry);
451     __ dec(ecx);
452     __ j(greater_equal, &loop);
453
454     // Handle step in.
455     Label skip_step_in;
456     ExternalReference debug_step_in_fp =
457         ExternalReference::debug_step_in_fp_address(masm->isolate());
458     __ cmp(Operand::StaticVariable(debug_step_in_fp), Immediate(0));
459     __ j(equal, &skip_step_in);
460
461     __ push(eax);
462     __ push(edi);
463     __ push(edi);
464     __ CallRuntime(Runtime::kHandleStepInForDerivedConstructors, 1);
465     __ pop(edi);
466     __ pop(eax);
467
468     __ bind(&skip_step_in);
469
470     // Invoke function.
471     ParameterCount actual(eax);
472     __ InvokeFunction(edi, actual, CALL_FUNCTION, NullCallWrapper());
473
474     // Restore context from the frame.
475     __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
476
477     // Get arguments count, skipping over new.target.
478     __ mov(ebx, Operand(esp, kPointerSize));
479   }
480
481   __ pop(ecx);  // Return address.
482   __ lea(esp, Operand(esp, ebx, times_2, 1 * kPointerSize));
483   __ push(ecx);
484   __ ret(0);
485 }
486
487
488 enum IsTagged { kEaxIsSmiTagged, kEaxIsUntaggedInt };
489
490
491 // Clobbers ecx, edx, edi; preserves all other registers.
492 static void Generate_CheckStackOverflow(MacroAssembler* masm,
493                                         const int calleeOffset,
494                                         IsTagged eax_is_tagged) {
495   // eax   : the number of items to be pushed to the stack
496   //
497   // Check the stack for overflow. We are not trying to catch
498   // interruptions (e.g. debug break and preemption) here, so the "real stack
499   // limit" is checked.
500   Label okay;
501   ExternalReference real_stack_limit =
502       ExternalReference::address_of_real_stack_limit(masm->isolate());
503   __ mov(edi, Operand::StaticVariable(real_stack_limit));
504   // Make ecx the space we have left. The stack might already be overflowed
505   // here which will cause ecx to become negative.
506   __ mov(ecx, esp);
507   __ sub(ecx, edi);
508   // Make edx the space we need for the array when it is unrolled onto the
509   // stack.
510   __ mov(edx, eax);
511   int smi_tag = eax_is_tagged == kEaxIsSmiTagged ? kSmiTagSize : 0;
512   __ shl(edx, kPointerSizeLog2 - smi_tag);
513   // Check if the arguments will overflow the stack.
514   __ cmp(ecx, edx);
515   __ j(greater, &okay);  // Signed comparison.
516
517   // Out of stack space.
518   __ push(Operand(ebp, calleeOffset));  // push this
519   if (eax_is_tagged == kEaxIsUntaggedInt) {
520     __ SmiTag(eax);
521   }
522   __ push(eax);
523   __ InvokeBuiltin(Builtins::STACK_OVERFLOW, CALL_FUNCTION);
524
525   __ bind(&okay);
526 }
527
528
529 static void Generate_JSEntryTrampolineHelper(MacroAssembler* masm,
530                                              bool is_construct) {
531   ProfileEntryHookStub::MaybeCallEntryHook(masm);
532
533   // Clear the context before we push it when entering the internal frame.
534   __ Move(esi, Immediate(0));
535
536   {
537     FrameScope scope(masm, StackFrame::INTERNAL);
538
539     // Load the previous frame pointer (ebx) to access C arguments
540     __ mov(ebx, Operand(ebp, 0));
541
542     // Get the function from the frame and setup the context.
543     __ mov(ecx, Operand(ebx, EntryFrameConstants::kFunctionArgOffset));
544     __ mov(esi, FieldOperand(ecx, JSFunction::kContextOffset));
545
546     // Push the function and the receiver onto the stack.
547     __ push(ecx);
548     __ push(Operand(ebx, EntryFrameConstants::kReceiverArgOffset));
549
550     // Load the number of arguments and setup pointer to the arguments.
551     __ mov(eax, Operand(ebx, EntryFrameConstants::kArgcOffset));
552     __ mov(ebx, Operand(ebx, EntryFrameConstants::kArgvOffset));
553
554     // Check if we have enough stack space to push all arguments.
555     // The function is the first thing that was pushed above after entering
556     // the internal frame.
557     const int kFunctionOffset =
558         InternalFrameConstants::kCodeOffset - kPointerSize;
559     // Expects argument count in eax. Clobbers ecx, edx, edi.
560     Generate_CheckStackOverflow(masm, kFunctionOffset, kEaxIsUntaggedInt);
561
562     // Copy arguments to the stack in a loop.
563     Label loop, entry;
564     __ Move(ecx, Immediate(0));
565     __ jmp(&entry);
566     __ bind(&loop);
567     __ mov(edx, Operand(ebx, ecx, times_4, 0));  // push parameter from argv
568     __ push(Operand(edx, 0));  // dereference handle
569     __ inc(ecx);
570     __ bind(&entry);
571     __ cmp(ecx, eax);
572     __ j(not_equal, &loop);
573
574     // Get the function from the stack and call it.
575     // kPointerSize for the receiver.
576     __ mov(edi, Operand(esp, eax, times_4, kPointerSize));
577
578     // Invoke the code.
579     if (is_construct) {
580       // No type feedback cell is available
581       __ mov(ebx, masm->isolate()->factory()->undefined_value());
582       CallConstructStub stub(masm->isolate(), NO_CALL_CONSTRUCTOR_FLAGS);
583       __ CallStub(&stub);
584     } else {
585       ParameterCount actual(eax);
586       __ InvokeFunction(edi, actual, CALL_FUNCTION,
587                         NullCallWrapper());
588     }
589
590     // Exit the internal frame. Notice that this also removes the empty.
591     // context and the function left on the stack by the code
592     // invocation.
593   }
594   __ ret(kPointerSize);  // Remove receiver.
595 }
596
597
598 void Builtins::Generate_JSEntryTrampoline(MacroAssembler* masm) {
599   Generate_JSEntryTrampolineHelper(masm, false);
600 }
601
602
603 void Builtins::Generate_JSConstructEntryTrampoline(MacroAssembler* masm) {
604   Generate_JSEntryTrampolineHelper(masm, true);
605 }
606
607
608 // Generate code for entering a JS function with the interpreter.
609 // On entry to the function the receiver and arguments have been pushed on the
610 // stack left to right.  The actual argument count matches the formal parameter
611 // count expected by the function.
612 //
613 // The live registers are:
614 //   o edi: the JS function object being called
615 //   o esi: our context
616 //   o ebp: the caller's frame pointer
617 //   o esp: stack pointer (pointing to return address)
618 //
619 // The function builds a JS frame.  Please see JavaScriptFrameConstants in
620 // frames-ia32.h for its layout.
621 // TODO(rmcilroy): We will need to include the current bytecode pointer in the
622 // frame.
623 void Builtins::Generate_InterpreterEntryTrampoline(MacroAssembler* masm) {
624   // Open a frame scope to indicate that there is a frame on the stack.  The
625   // MANUAL indicates that the scope shouldn't actually generate code to set up
626   // the frame (that is done below).
627   FrameScope frame_scope(masm, StackFrame::MANUAL);
628   __ push(ebp);  // Caller's frame pointer.
629   __ mov(ebp, esp);
630   __ push(esi);  // Callee's context.
631   __ push(edi);  // Callee's JS function.
632
633   // Get the bytecode array from the function object and load the pointer to the
634   // first entry into edi (InterpreterBytecodeRegister).
635   __ mov(edi, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
636   __ mov(edi, FieldOperand(edi, SharedFunctionInfo::kFunctionDataOffset));
637
638   if (FLAG_debug_code) {
639     // Check function data field is actually a BytecodeArray object.
640     __ AssertNotSmi(edi);
641     __ CmpObjectType(edi, BYTECODE_ARRAY_TYPE, eax);
642     __ Assert(equal, kFunctionDataShouldBeBytecodeArrayOnInterpreterEntry);
643   }
644
645   // Allocate the local and temporary register file on the stack.
646   {
647     // Load frame size from the BytecodeArray object.
648     __ mov(ebx, FieldOperand(edi, BytecodeArray::kFrameSizeOffset));
649
650     // Do a stack check to ensure we don't go over the limit.
651     Label ok;
652     __ mov(ecx, esp);
653     __ sub(ecx, ebx);
654     ExternalReference stack_limit =
655         ExternalReference::address_of_real_stack_limit(masm->isolate());
656     __ cmp(ecx, Operand::StaticVariable(stack_limit));
657     __ j(above_equal, &ok, Label::kNear);
658     __ InvokeBuiltin(Builtins::STACK_OVERFLOW, CALL_FUNCTION);
659     __ bind(&ok);
660
661     // If ok, push undefined as the initial value for all register file entries.
662     // Note: there should always be at least one stack slot for the return
663     // register in the register file.
664     Label loop_header;
665     __ mov(eax, Immediate(masm->isolate()->factory()->undefined_value()));
666     __ bind(&loop_header);
667     // TODO(rmcilroy): Consider doing more than one push per loop iteration.
668     __ push(eax);
669     // Continue loop if not done.
670     __ sub(ebx, Immediate(kPointerSize));
671     __ j(not_equal, &loop_header, Label::kNear);
672   }
673
674   // TODO(rmcilroy): List of things not currently dealt with here but done in
675   // fullcodegen's prologue:
676   //  - Support profiler (specifically profiling_counter).
677   //  - Call ProfileEntryHookStub when isolate has a function_entry_hook.
678   //  - Allow simulator stop operations if FLAG_stop_at is set.
679   //  - Deal with sloppy mode functions which need to replace the
680   //    receiver with the global proxy when called as functions (without an
681   //    explicit receiver object).
682   //  - Code aging of the BytecodeArray object.
683   //  - Supporting FLAG_trace.
684   //
685   // The following items are also not done here, and will probably be done using
686   // explicit bytecodes instead:
687   //  - Allocating a new local context if applicable.
688   //  - Setting up a local binding to the this function, which is used in
689   //    derived constructors with super calls.
690   //  - Setting new.target if required.
691   //  - Dealing with REST parameters (only if
692   //    https://codereview.chromium.org/1235153006 doesn't land by then).
693   //  - Dealing with argument objects.
694
695   // Perform stack guard check.
696   {
697     Label ok;
698     ExternalReference stack_limit =
699         ExternalReference::address_of_stack_limit(masm->isolate());
700     __ cmp(esp, Operand::StaticVariable(stack_limit));
701     __ j(above_equal, &ok, Label::kNear);
702     __ CallRuntime(Runtime::kStackGuard, 0);
703     __ bind(&ok);
704   }
705
706   // Load bytecode offset and dispatch table into registers.
707   __ mov(ecx, Immediate(BytecodeArray::kHeaderSize - kHeapObjectTag));
708   // Since the dispatch table root might be set after builtins are generated,
709   // load directly from the roots table.
710   __ LoadRoot(ebx, Heap::kInterpreterTableRootIndex);
711   __ add(ebx, Immediate(FixedArray::kHeaderSize - kHeapObjectTag));
712
713   // Dispatch to the first bytecode handler for the function.
714   __ movzx_b(eax, Operand(edi, ecx, times_1, 0));
715   __ mov(eax, Operand(ebx, eax, times_pointer_size, 0));
716   // TODO(rmcilroy): Make dispatch table point to code entrys to avoid untagging
717   // and header removal.
718   __ add(eax, Immediate(Code::kHeaderSize - kHeapObjectTag));
719   __ jmp(eax);
720 }
721
722
723 void Builtins::Generate_InterpreterExitTrampoline(MacroAssembler* masm) {
724   // TODO(rmcilroy): List of things not currently dealt with here but done in
725   // fullcodegen's EmitReturnSequence.
726   //  - Supporting FLAG_trace for Runtime::TraceExit.
727   //  - Support profiler (specifically decrementing profiling_counter
728   //    appropriately and calling out to HandleInterrupts if necessary).
729
730   // Load return value into r0.
731   __ mov(eax, Operand(ebp, -kPointerSize -
732                                StandardFrameConstants::kFixedFrameSizeFromFp));
733   // Leave the frame (also dropping the register file).
734   __ leave();
735   // Return droping receiver + arguments.
736   // TODO(rmcilroy): Get number of arguments from BytecodeArray.
737   __ Ret(1 * kPointerSize, ecx);
738 }
739
740
741 void Builtins::Generate_CompileLazy(MacroAssembler* masm) {
742   CallRuntimePassFunction(masm, Runtime::kCompileLazy);
743   GenerateTailCallToReturnedCode(masm);
744 }
745
746
747
748 static void CallCompileOptimized(MacroAssembler* masm, bool concurrent) {
749   FrameScope scope(masm, StackFrame::INTERNAL);
750   // Push a copy of the function.
751   __ push(edi);
752   // Function is also the parameter to the runtime call.
753   __ push(edi);
754   // Whether to compile in a background thread.
755   __ Push(masm->isolate()->factory()->ToBoolean(concurrent));
756
757   __ CallRuntime(Runtime::kCompileOptimized, 2);
758   // Restore receiver.
759   __ pop(edi);
760 }
761
762
763 void Builtins::Generate_CompileOptimized(MacroAssembler* masm) {
764   CallCompileOptimized(masm, false);
765   GenerateTailCallToReturnedCode(masm);
766 }
767
768
769 void Builtins::Generate_CompileOptimizedConcurrent(MacroAssembler* masm) {
770   CallCompileOptimized(masm, true);
771   GenerateTailCallToReturnedCode(masm);
772 }
773
774
775 static void GenerateMakeCodeYoungAgainCommon(MacroAssembler* masm) {
776   // For now, we are relying on the fact that make_code_young doesn't do any
777   // garbage collection which allows us to save/restore the registers without
778   // worrying about which of them contain pointers. We also don't build an
779   // internal frame to make the code faster, since we shouldn't have to do stack
780   // crawls in MakeCodeYoung. This seems a bit fragile.
781
782   // Re-execute the code that was patched back to the young age when
783   // the stub returns.
784   __ sub(Operand(esp, 0), Immediate(5));
785   __ pushad();
786   __ mov(eax, Operand(esp, 8 * kPointerSize));
787   {
788     FrameScope scope(masm, StackFrame::MANUAL);
789     __ PrepareCallCFunction(2, ebx);
790     __ mov(Operand(esp, 1 * kPointerSize),
791            Immediate(ExternalReference::isolate_address(masm->isolate())));
792     __ mov(Operand(esp, 0), eax);
793     __ CallCFunction(
794         ExternalReference::get_make_code_young_function(masm->isolate()), 2);
795   }
796   __ popad();
797   __ ret(0);
798 }
799
800 #define DEFINE_CODE_AGE_BUILTIN_GENERATOR(C)                 \
801 void Builtins::Generate_Make##C##CodeYoungAgainEvenMarking(  \
802     MacroAssembler* masm) {                                  \
803   GenerateMakeCodeYoungAgainCommon(masm);                    \
804 }                                                            \
805 void Builtins::Generate_Make##C##CodeYoungAgainOddMarking(   \
806     MacroAssembler* masm) {                                  \
807   GenerateMakeCodeYoungAgainCommon(masm);                    \
808 }
809 CODE_AGE_LIST(DEFINE_CODE_AGE_BUILTIN_GENERATOR)
810 #undef DEFINE_CODE_AGE_BUILTIN_GENERATOR
811
812
813 void Builtins::Generate_MarkCodeAsExecutedOnce(MacroAssembler* masm) {
814   // For now, as in GenerateMakeCodeYoungAgainCommon, we are relying on the fact
815   // that make_code_young doesn't do any garbage collection which allows us to
816   // save/restore the registers without worrying about which of them contain
817   // pointers.
818   __ pushad();
819   __ mov(eax, Operand(esp, 8 * kPointerSize));
820   __ sub(eax, Immediate(Assembler::kCallInstructionLength));
821   {  // NOLINT
822     FrameScope scope(masm, StackFrame::MANUAL);
823     __ PrepareCallCFunction(2, ebx);
824     __ mov(Operand(esp, 1 * kPointerSize),
825            Immediate(ExternalReference::isolate_address(masm->isolate())));
826     __ mov(Operand(esp, 0), eax);
827     __ CallCFunction(
828         ExternalReference::get_mark_code_as_executed_function(masm->isolate()),
829         2);
830   }
831   __ popad();
832
833   // Perform prologue operations usually performed by the young code stub.
834   __ pop(eax);   // Pop return address into scratch register.
835   __ push(ebp);  // Caller's frame pointer.
836   __ mov(ebp, esp);
837   __ push(esi);  // Callee's context.
838   __ push(edi);  // Callee's JS Function.
839   __ push(eax);  // Push return address after frame prologue.
840
841   // Jump to point after the code-age stub.
842   __ ret(0);
843 }
844
845
846 void Builtins::Generate_MarkCodeAsExecutedTwice(MacroAssembler* masm) {
847   GenerateMakeCodeYoungAgainCommon(masm);
848 }
849
850
851 void Builtins::Generate_MarkCodeAsToBeExecutedOnce(MacroAssembler* masm) {
852   Generate_MarkCodeAsExecutedOnce(masm);
853 }
854
855
856 static void Generate_NotifyStubFailureHelper(MacroAssembler* masm,
857                                              SaveFPRegsMode save_doubles) {
858   // Enter an internal frame.
859   {
860     FrameScope scope(masm, StackFrame::INTERNAL);
861
862     // Preserve registers across notification, this is important for compiled
863     // stubs that tail call the runtime on deopts passing their parameters in
864     // registers.
865     __ pushad();
866     __ CallRuntime(Runtime::kNotifyStubFailure, 0, save_doubles);
867     __ popad();
868     // Tear down internal frame.
869   }
870
871   __ pop(MemOperand(esp, 0));  // Ignore state offset
872   __ ret(0);  // Return to IC Miss stub, continuation still on stack.
873 }
874
875
876 void Builtins::Generate_NotifyStubFailure(MacroAssembler* masm) {
877   Generate_NotifyStubFailureHelper(masm, kDontSaveFPRegs);
878 }
879
880
881 void Builtins::Generate_NotifyStubFailureSaveDoubles(MacroAssembler* masm) {
882   Generate_NotifyStubFailureHelper(masm, kSaveFPRegs);
883 }
884
885
886 static void Generate_NotifyDeoptimizedHelper(MacroAssembler* masm,
887                                              Deoptimizer::BailoutType type) {
888   {
889     FrameScope scope(masm, StackFrame::INTERNAL);
890
891     // Pass deoptimization type to the runtime system.
892     __ push(Immediate(Smi::FromInt(static_cast<int>(type))));
893     __ CallRuntime(Runtime::kNotifyDeoptimized, 1);
894
895     // Tear down internal frame.
896   }
897
898   // Get the full codegen state from the stack and untag it.
899   __ mov(ecx, Operand(esp, 1 * kPointerSize));
900   __ SmiUntag(ecx);
901
902   // Switch on the state.
903   Label not_no_registers, not_tos_eax;
904   __ cmp(ecx, FullCodeGenerator::NO_REGISTERS);
905   __ j(not_equal, &not_no_registers, Label::kNear);
906   __ ret(1 * kPointerSize);  // Remove state.
907
908   __ bind(&not_no_registers);
909   __ mov(eax, Operand(esp, 2 * kPointerSize));
910   __ cmp(ecx, FullCodeGenerator::TOS_REG);
911   __ j(not_equal, &not_tos_eax, Label::kNear);
912   __ ret(2 * kPointerSize);  // Remove state, eax.
913
914   __ bind(&not_tos_eax);
915   __ Abort(kNoCasesLeft);
916 }
917
918
919 void Builtins::Generate_NotifyDeoptimized(MacroAssembler* masm) {
920   Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::EAGER);
921 }
922
923
924 void Builtins::Generate_NotifySoftDeoptimized(MacroAssembler* masm) {
925   Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::SOFT);
926 }
927
928
929 void Builtins::Generate_NotifyLazyDeoptimized(MacroAssembler* masm) {
930   Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::LAZY);
931 }
932
933
934 void Builtins::Generate_FunctionCall(MacroAssembler* masm) {
935   Factory* factory = masm->isolate()->factory();
936
937   // 1. Make sure we have at least one argument.
938   { Label done;
939     __ test(eax, eax);
940     __ j(not_zero, &done);
941     __ pop(ebx);
942     __ push(Immediate(factory->undefined_value()));
943     __ push(ebx);
944     __ inc(eax);
945     __ bind(&done);
946   }
947
948   // 2. Get the function to call (passed as receiver) from the stack, check
949   //    if it is a function.
950   Label slow, non_function;
951   // 1 ~ return address.
952   __ mov(edi, Operand(esp, eax, times_4, 1 * kPointerSize));
953   __ JumpIfSmi(edi, &non_function);
954   __ CmpObjectType(edi, JS_FUNCTION_TYPE, ecx);
955   __ j(not_equal, &slow);
956
957
958   // 3a. Patch the first argument if necessary when calling a function.
959   Label shift_arguments;
960   __ Move(edx, Immediate(0));  // indicate regular JS_FUNCTION
961   { Label convert_to_object, use_global_proxy, patch_receiver;
962     // Change context eagerly in case we need the global receiver.
963     __ mov(esi, FieldOperand(edi, JSFunction::kContextOffset));
964
965     // Do not transform the receiver for strict mode functions.
966     __ mov(ebx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
967     __ test_b(FieldOperand(ebx, SharedFunctionInfo::kStrictModeByteOffset),
968               1 << SharedFunctionInfo::kStrictModeBitWithinByte);
969     __ j(not_equal, &shift_arguments);
970
971     // Do not transform the receiver for natives (shared already in ebx).
972     __ test_b(FieldOperand(ebx, SharedFunctionInfo::kNativeByteOffset),
973               1 << SharedFunctionInfo::kNativeBitWithinByte);
974     __ j(not_equal, &shift_arguments);
975
976     // Compute the receiver in sloppy mode.
977     __ mov(ebx, Operand(esp, eax, times_4, 0));  // First argument.
978
979     // Call ToObject on the receiver if it is not an object, or use the
980     // global object if it is null or undefined.
981     __ JumpIfSmi(ebx, &convert_to_object);
982     __ cmp(ebx, factory->null_value());
983     __ j(equal, &use_global_proxy);
984     __ cmp(ebx, factory->undefined_value());
985     __ j(equal, &use_global_proxy);
986     STATIC_ASSERT(LAST_SPEC_OBJECT_TYPE == LAST_TYPE);
987     __ CmpObjectType(ebx, FIRST_SPEC_OBJECT_TYPE, ecx);
988     __ j(above_equal, &shift_arguments);
989
990     __ bind(&convert_to_object);
991
992     { // In order to preserve argument count.
993       FrameScope scope(masm, StackFrame::INTERNAL);
994       __ SmiTag(eax);
995       __ push(eax);
996
997       __ mov(eax, ebx);
998       ToObjectStub stub(masm->isolate());
999       __ CallStub(&stub);
1000       __ mov(ebx, eax);
1001       __ Move(edx, Immediate(0));  // restore
1002
1003       __ pop(eax);
1004       __ SmiUntag(eax);
1005     }
1006
1007     // Restore the function to edi.
1008     __ mov(edi, Operand(esp, eax, times_4, 1 * kPointerSize));
1009     __ jmp(&patch_receiver);
1010
1011     __ bind(&use_global_proxy);
1012     __ mov(ebx,
1013            Operand(esi, Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX)));
1014     __ mov(ebx, FieldOperand(ebx, GlobalObject::kGlobalProxyOffset));
1015
1016     __ bind(&patch_receiver);
1017     __ mov(Operand(esp, eax, times_4, 0), ebx);
1018
1019     __ jmp(&shift_arguments);
1020   }
1021
1022   // 3b. Check for function proxy.
1023   __ bind(&slow);
1024   __ Move(edx, Immediate(1));  // indicate function proxy
1025   __ CmpInstanceType(ecx, JS_FUNCTION_PROXY_TYPE);
1026   __ j(equal, &shift_arguments);
1027   __ bind(&non_function);
1028   __ Move(edx, Immediate(2));  // indicate non-function
1029
1030   // 3c. Patch the first argument when calling a non-function.  The
1031   //     CALL_NON_FUNCTION builtin expects the non-function callee as
1032   //     receiver, so overwrite the first argument which will ultimately
1033   //     become the receiver.
1034   __ mov(Operand(esp, eax, times_4, 0), edi);
1035
1036   // 4. Shift arguments and return address one slot down on the stack
1037   //    (overwriting the original receiver).  Adjust argument count to make
1038   //    the original first argument the new receiver.
1039   __ bind(&shift_arguments);
1040   { Label loop;
1041     __ mov(ecx, eax);
1042     __ bind(&loop);
1043     __ mov(ebx, Operand(esp, ecx, times_4, 0));
1044     __ mov(Operand(esp, ecx, times_4, kPointerSize), ebx);
1045     __ dec(ecx);
1046     __ j(not_sign, &loop);  // While non-negative (to copy return address).
1047     __ pop(ebx);  // Discard copy of return address.
1048     __ dec(eax);  // One fewer argument (first argument is new receiver).
1049   }
1050
1051   // 5a. Call non-function via tail call to CALL_NON_FUNCTION builtin,
1052   //     or a function proxy via CALL_FUNCTION_PROXY.
1053   { Label function, non_proxy;
1054     __ test(edx, edx);
1055     __ j(zero, &function);
1056     __ Move(ebx, Immediate(0));
1057     __ cmp(edx, Immediate(1));
1058     __ j(not_equal, &non_proxy);
1059
1060     __ pop(edx);   // return address
1061     __ push(edi);  // re-add proxy object as additional argument
1062     __ push(edx);
1063     __ inc(eax);
1064     __ GetBuiltinEntry(edx, Builtins::CALL_FUNCTION_PROXY);
1065     __ jmp(masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(),
1066            RelocInfo::CODE_TARGET);
1067
1068     __ bind(&non_proxy);
1069     __ GetBuiltinEntry(edx, Builtins::CALL_NON_FUNCTION);
1070     __ jmp(masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(),
1071            RelocInfo::CODE_TARGET);
1072     __ bind(&function);
1073   }
1074
1075   // 5b. Get the code to call from the function and check that the number of
1076   //     expected arguments matches what we're providing.  If so, jump
1077   //     (tail-call) to the code in register edx without checking arguments.
1078   __ mov(edx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
1079   __ mov(ebx,
1080          FieldOperand(edx, SharedFunctionInfo::kFormalParameterCountOffset));
1081   __ mov(edx, FieldOperand(edi, JSFunction::kCodeEntryOffset));
1082   __ SmiUntag(ebx);
1083   __ cmp(eax, ebx);
1084   __ j(not_equal,
1085        masm->isolate()->builtins()->ArgumentsAdaptorTrampoline());
1086
1087   ParameterCount expected(0);
1088   __ InvokeCode(edx, expected, expected, JUMP_FUNCTION, NullCallWrapper());
1089 }
1090
1091
1092 static void Generate_PushAppliedArguments(MacroAssembler* masm,
1093                                           const int argumentsOffset,
1094                                           const int indexOffset,
1095                                           const int limitOffset) {
1096   // Copy all arguments from the array to the stack.
1097   Label entry, loop;
1098   Register receiver = LoadDescriptor::ReceiverRegister();
1099   Register key = LoadDescriptor::NameRegister();
1100   Register slot = LoadDescriptor::SlotRegister();
1101   Register vector = LoadWithVectorDescriptor::VectorRegister();
1102   __ mov(key, Operand(ebp, indexOffset));
1103   __ jmp(&entry);
1104   __ bind(&loop);
1105   __ mov(receiver, Operand(ebp, argumentsOffset));  // load arguments
1106
1107   // Use inline caching to speed up access to arguments.
1108   Code::Kind kinds[] = {Code::KEYED_LOAD_IC};
1109   FeedbackVectorSpec spec(0, 1, kinds);
1110   Handle<TypeFeedbackVector> feedback_vector =
1111       masm->isolate()->factory()->NewTypeFeedbackVector(&spec);
1112   int index = feedback_vector->GetIndex(FeedbackVectorICSlot(0));
1113   __ mov(slot, Immediate(Smi::FromInt(index)));
1114   __ mov(vector, Immediate(feedback_vector));
1115   Handle<Code> ic =
1116       KeyedLoadICStub(masm->isolate(), LoadICState(kNoExtraICState)).GetCode();
1117   __ call(ic, RelocInfo::CODE_TARGET);
1118   // It is important that we do not have a test instruction after the
1119   // call.  A test instruction after the call is used to indicate that
1120   // we have generated an inline version of the keyed load.  In this
1121   // case, we know that we are not generating a test instruction next.
1122
1123   // Push the nth argument.
1124   __ push(eax);
1125
1126   // Update the index on the stack and in register key.
1127   __ mov(key, Operand(ebp, indexOffset));
1128   __ add(key, Immediate(1 << kSmiTagSize));
1129   __ mov(Operand(ebp, indexOffset), key);
1130
1131   __ bind(&entry);
1132   __ cmp(key, Operand(ebp, limitOffset));
1133   __ j(not_equal, &loop);
1134
1135   // On exit, the pushed arguments count is in eax, untagged
1136   __ Move(eax, key);
1137   __ SmiUntag(eax);
1138 }
1139
1140
1141 // Used by FunctionApply and ReflectApply
1142 static void Generate_ApplyHelper(MacroAssembler* masm, bool targetIsArgument) {
1143   const int kFormalParameters = targetIsArgument ? 3 : 2;
1144   const int kStackSize = kFormalParameters + 1;
1145
1146   // Stack at entry:
1147   // esp     : return address
1148   // esp[4]  : arguments
1149   // esp[8]  : receiver ("this")
1150   // esp[12] : function
1151   {
1152     FrameScope frame_scope(masm, StackFrame::INTERNAL);
1153     // Stack frame:
1154     // ebp     : Old base pointer
1155     // ebp[4]  : return address
1156     // ebp[8]  : function arguments
1157     // ebp[12] : receiver
1158     // ebp[16] : function
1159     static const int kArgumentsOffset = kFPOnStackSize + kPCOnStackSize;
1160     static const int kReceiverOffset = kArgumentsOffset + kPointerSize;
1161     static const int kFunctionOffset = kReceiverOffset + kPointerSize;
1162
1163     __ push(Operand(ebp, kFunctionOffset));  // push this
1164     __ push(Operand(ebp, kArgumentsOffset));  // push arguments
1165     if (targetIsArgument) {
1166       __ InvokeBuiltin(Builtins::REFLECT_APPLY_PREPARE, CALL_FUNCTION);
1167     } else {
1168       __ InvokeBuiltin(Builtins::APPLY_PREPARE, CALL_FUNCTION);
1169     }
1170
1171     Generate_CheckStackOverflow(masm, kFunctionOffset, kEaxIsSmiTagged);
1172
1173     // Push current index and limit.
1174     const int kLimitOffset =
1175         StandardFrameConstants::kExpressionsOffset - 1 * kPointerSize;
1176     const int kIndexOffset = kLimitOffset - 1 * kPointerSize;
1177     __ push(eax);  // limit
1178     __ push(Immediate(0));  // index
1179
1180     // Get the receiver.
1181     __ mov(ebx, Operand(ebp, kReceiverOffset));
1182
1183     // Check that the function is a JS function (otherwise it must be a proxy).
1184     Label push_receiver, use_global_proxy;
1185     __ mov(edi, Operand(ebp, kFunctionOffset));
1186     __ CmpObjectType(edi, JS_FUNCTION_TYPE, ecx);
1187     __ j(not_equal, &push_receiver);
1188
1189     // Change context eagerly to get the right global object if necessary.
1190     __ mov(esi, FieldOperand(edi, JSFunction::kContextOffset));
1191
1192     // Compute the receiver.
1193     // Do not transform the receiver for strict mode functions.
1194     Label call_to_object;
1195     __ mov(ecx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
1196     __ test_b(FieldOperand(ecx, SharedFunctionInfo::kStrictModeByteOffset),
1197               1 << SharedFunctionInfo::kStrictModeBitWithinByte);
1198     __ j(not_equal, &push_receiver);
1199
1200     Factory* factory = masm->isolate()->factory();
1201
1202     // Do not transform the receiver for natives (shared already in ecx).
1203     __ test_b(FieldOperand(ecx, SharedFunctionInfo::kNativeByteOffset),
1204               1 << SharedFunctionInfo::kNativeBitWithinByte);
1205     __ j(not_equal, &push_receiver);
1206
1207     // Compute the receiver in sloppy mode.
1208     // Call ToObject on the receiver if it is not an object, or use the
1209     // global object if it is null or undefined.
1210     __ JumpIfSmi(ebx, &call_to_object);
1211     __ cmp(ebx, factory->null_value());
1212     __ j(equal, &use_global_proxy);
1213     __ cmp(ebx, factory->undefined_value());
1214     __ j(equal, &use_global_proxy);
1215     STATIC_ASSERT(LAST_SPEC_OBJECT_TYPE == LAST_TYPE);
1216     __ CmpObjectType(ebx, FIRST_SPEC_OBJECT_TYPE, ecx);
1217     __ j(above_equal, &push_receiver);
1218
1219     __ bind(&call_to_object);
1220     __ mov(eax, ebx);
1221     ToObjectStub stub(masm->isolate());
1222     __ CallStub(&stub);
1223     __ mov(ebx, eax);
1224     __ jmp(&push_receiver);
1225
1226     __ bind(&use_global_proxy);
1227     __ mov(ebx,
1228            Operand(esi, Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX)));
1229     __ mov(ebx, FieldOperand(ebx, GlobalObject::kGlobalProxyOffset));
1230
1231     // Push the receiver.
1232     __ bind(&push_receiver);
1233     __ push(ebx);
1234
1235     // Loop over the arguments array, pushing each value to the stack
1236     Generate_PushAppliedArguments(
1237         masm, kArgumentsOffset, kIndexOffset, kLimitOffset);
1238
1239     // Call the function.
1240     Label call_proxy;
1241     ParameterCount actual(eax);
1242     __ mov(edi, Operand(ebp, kFunctionOffset));
1243     __ CmpObjectType(edi, JS_FUNCTION_TYPE, ecx);
1244     __ j(not_equal, &call_proxy);
1245     __ InvokeFunction(edi, actual, CALL_FUNCTION, NullCallWrapper());
1246
1247     frame_scope.GenerateLeaveFrame();
1248     __ ret(kStackSize * kPointerSize);  // remove this, receiver, and arguments
1249
1250     // Call the function proxy.
1251     __ bind(&call_proxy);
1252     __ push(edi);  // add function proxy as last argument
1253     __ inc(eax);
1254     __ Move(ebx, Immediate(0));
1255     __ GetBuiltinEntry(edx, Builtins::CALL_FUNCTION_PROXY);
1256     __ call(masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(),
1257             RelocInfo::CODE_TARGET);
1258
1259     // Leave internal frame.
1260   }
1261   __ ret(kStackSize * kPointerSize);  // remove this, receiver, and arguments
1262 }
1263
1264
1265 // Used by ReflectConstruct
1266 static void Generate_ConstructHelper(MacroAssembler* masm) {
1267   const int kFormalParameters = 3;
1268   const int kStackSize = kFormalParameters + 1;
1269
1270   // Stack at entry:
1271   // esp     : return address
1272   // esp[4]  : original constructor (new.target)
1273   // esp[8]  : arguments
1274   // esp[16] : constructor
1275   {
1276     FrameScope frame_scope(masm, StackFrame::INTERNAL);
1277     // Stack frame:
1278     // ebp     : Old base pointer
1279     // ebp[4]  : return address
1280     // ebp[8]  : original constructor (new.target)
1281     // ebp[12] : arguments
1282     // ebp[16] : constructor
1283     static const int kNewTargetOffset = kFPOnStackSize + kPCOnStackSize;
1284     static const int kArgumentsOffset = kNewTargetOffset + kPointerSize;
1285     static const int kFunctionOffset = kArgumentsOffset + kPointerSize;
1286
1287     // If newTarget is not supplied, set it to constructor
1288     Label validate_arguments;
1289     __ mov(eax, Operand(ebp, kNewTargetOffset));
1290     __ CompareRoot(eax, Heap::kUndefinedValueRootIndex);
1291     __ j(not_equal, &validate_arguments, Label::kNear);
1292     __ mov(eax, Operand(ebp, kFunctionOffset));
1293     __ mov(Operand(ebp, kNewTargetOffset), eax);
1294
1295     // Validate arguments
1296     __ bind(&validate_arguments);
1297     __ push(Operand(ebp, kFunctionOffset));
1298     __ push(Operand(ebp, kArgumentsOffset));
1299     __ push(Operand(ebp, kNewTargetOffset));
1300     __ InvokeBuiltin(Builtins::REFLECT_CONSTRUCT_PREPARE, CALL_FUNCTION);
1301
1302     Generate_CheckStackOverflow(masm, kFunctionOffset, kEaxIsSmiTagged);
1303
1304     // Push current index and limit.
1305     const int kLimitOffset =
1306         StandardFrameConstants::kExpressionsOffset - 1 * kPointerSize;
1307     const int kIndexOffset = kLimitOffset - 1 * kPointerSize;
1308     __ Push(eax);  // limit
1309     __ push(Immediate(0));  // index
1310     // Push the constructor function as callee.
1311     __ push(Operand(ebp, kFunctionOffset));
1312
1313     // Loop over the arguments array, pushing each value to the stack
1314     Generate_PushAppliedArguments(
1315         masm, kArgumentsOffset, kIndexOffset, kLimitOffset);
1316
1317     // Use undefined feedback vector
1318     __ LoadRoot(ebx, Heap::kUndefinedValueRootIndex);
1319     __ mov(edi, Operand(ebp, kFunctionOffset));
1320     __ mov(ecx, Operand(ebp, kNewTargetOffset));
1321
1322     // Call the function.
1323     CallConstructStub stub(masm->isolate(), SUPER_CONSTRUCTOR_CALL);
1324     __ call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL);
1325
1326     // Leave internal frame.
1327   }
1328   // remove this, target, arguments, and newTarget
1329   __ ret(kStackSize * kPointerSize);
1330 }
1331
1332
1333 void Builtins::Generate_FunctionApply(MacroAssembler* masm) {
1334   Generate_ApplyHelper(masm, false);
1335 }
1336
1337
1338 void Builtins::Generate_ReflectApply(MacroAssembler* masm) {
1339   Generate_ApplyHelper(masm, true);
1340 }
1341
1342
1343 void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) {
1344   Generate_ConstructHelper(masm);
1345 }
1346
1347
1348 void Builtins::Generate_InternalArrayCode(MacroAssembler* masm) {
1349   // ----------- S t a t e -------------
1350   //  -- eax : argc
1351   //  -- esp[0] : return address
1352   //  -- esp[4] : last argument
1353   // -----------------------------------
1354   Label generic_array_code;
1355
1356   // Get the InternalArray function.
1357   __ LoadGlobalFunction(Context::INTERNAL_ARRAY_FUNCTION_INDEX, edi);
1358
1359   if (FLAG_debug_code) {
1360     // Initial map for the builtin InternalArray function should be a map.
1361     __ mov(ebx, FieldOperand(edi, JSFunction::kPrototypeOrInitialMapOffset));
1362     // Will both indicate a NULL and a Smi.
1363     __ test(ebx, Immediate(kSmiTagMask));
1364     __ Assert(not_zero, kUnexpectedInitialMapForInternalArrayFunction);
1365     __ CmpObjectType(ebx, MAP_TYPE, ecx);
1366     __ Assert(equal, kUnexpectedInitialMapForInternalArrayFunction);
1367   }
1368
1369   // Run the native code for the InternalArray function called as a normal
1370   // function.
1371   // tail call a stub
1372   InternalArrayConstructorStub stub(masm->isolate());
1373   __ TailCallStub(&stub);
1374 }
1375
1376
1377 void Builtins::Generate_ArrayCode(MacroAssembler* masm) {
1378   // ----------- S t a t e -------------
1379   //  -- eax : argc
1380   //  -- esp[0] : return address
1381   //  -- esp[4] : last argument
1382   // -----------------------------------
1383   Label generic_array_code;
1384
1385   // Get the Array function.
1386   __ LoadGlobalFunction(Context::ARRAY_FUNCTION_INDEX, edi);
1387   __ mov(edx, edi);
1388
1389   if (FLAG_debug_code) {
1390     // Initial map for the builtin Array function should be a map.
1391     __ mov(ebx, FieldOperand(edi, JSFunction::kPrototypeOrInitialMapOffset));
1392     // Will both indicate a NULL and a Smi.
1393     __ test(ebx, Immediate(kSmiTagMask));
1394     __ Assert(not_zero, kUnexpectedInitialMapForArrayFunction);
1395     __ CmpObjectType(ebx, MAP_TYPE, ecx);
1396     __ Assert(equal, kUnexpectedInitialMapForArrayFunction);
1397   }
1398
1399   // Run the native code for the Array function called as a normal function.
1400   // tail call a stub
1401   __ mov(ebx, masm->isolate()->factory()->undefined_value());
1402   ArrayConstructorStub stub(masm->isolate());
1403   __ TailCallStub(&stub);
1404 }
1405
1406
1407 void Builtins::Generate_StringConstructCode(MacroAssembler* masm) {
1408   // ----------- S t a t e -------------
1409   //  -- eax                 : number of arguments
1410   //  -- edi                 : constructor function
1411   //  -- esp[0]              : return address
1412   //  -- esp[(argc - n) * 4] : arg[n] (zero-based)
1413   //  -- esp[(argc + 1) * 4] : receiver
1414   // -----------------------------------
1415   Counters* counters = masm->isolate()->counters();
1416   __ IncrementCounter(counters->string_ctor_calls(), 1);
1417
1418   if (FLAG_debug_code) {
1419     __ LoadGlobalFunction(Context::STRING_FUNCTION_INDEX, ecx);
1420     __ cmp(edi, ecx);
1421     __ Assert(equal, kUnexpectedStringFunction);
1422   }
1423
1424   // Load the first argument into eax and get rid of the rest
1425   // (including the receiver).
1426   Label no_arguments;
1427   __ test(eax, eax);
1428   __ j(zero, &no_arguments);
1429   __ mov(ebx, Operand(esp, eax, times_pointer_size, 0));
1430   __ pop(ecx);
1431   __ lea(esp, Operand(esp, eax, times_pointer_size, kPointerSize));
1432   __ push(ecx);
1433   __ mov(eax, ebx);
1434
1435   // Lookup the argument in the number to string cache.
1436   Label not_cached, argument_is_string;
1437   __ LookupNumberStringCache(eax,  // Input.
1438                              ebx,  // Result.
1439                              ecx,  // Scratch 1.
1440                              edx,  // Scratch 2.
1441                              &not_cached);
1442   __ IncrementCounter(counters->string_ctor_cached_number(), 1);
1443   __ bind(&argument_is_string);
1444   // ----------- S t a t e -------------
1445   //  -- ebx    : argument converted to string
1446   //  -- edi    : constructor function
1447   //  -- esp[0] : return address
1448   // -----------------------------------
1449
1450   // Allocate a JSValue and put the tagged pointer into eax.
1451   Label gc_required;
1452   __ Allocate(JSValue::kSize,
1453               eax,  // Result.
1454               ecx,  // New allocation top (we ignore it).
1455               no_reg,
1456               &gc_required,
1457               TAG_OBJECT);
1458
1459   // Set the map.
1460   __ LoadGlobalFunctionInitialMap(edi, ecx);
1461   if (FLAG_debug_code) {
1462     __ cmpb(FieldOperand(ecx, Map::kInstanceSizeOffset),
1463             JSValue::kSize >> kPointerSizeLog2);
1464     __ Assert(equal, kUnexpectedStringWrapperInstanceSize);
1465     __ cmpb(FieldOperand(ecx, Map::kUnusedPropertyFieldsOffset), 0);
1466     __ Assert(equal, kUnexpectedUnusedPropertiesOfStringWrapper);
1467   }
1468   __ mov(FieldOperand(eax, HeapObject::kMapOffset), ecx);
1469
1470   // Set properties and elements.
1471   Factory* factory = masm->isolate()->factory();
1472   __ Move(ecx, Immediate(factory->empty_fixed_array()));
1473   __ mov(FieldOperand(eax, JSObject::kPropertiesOffset), ecx);
1474   __ mov(FieldOperand(eax, JSObject::kElementsOffset), ecx);
1475
1476   // Set the value.
1477   __ mov(FieldOperand(eax, JSValue::kValueOffset), ebx);
1478
1479   // Ensure the object is fully initialized.
1480   STATIC_ASSERT(JSValue::kSize == 4 * kPointerSize);
1481
1482   // We're done. Return.
1483   __ ret(0);
1484
1485   // The argument was not found in the number to string cache. Check
1486   // if it's a string already before calling the conversion builtin.
1487   Label convert_argument;
1488   __ bind(&not_cached);
1489   STATIC_ASSERT(kSmiTag == 0);
1490   __ JumpIfSmi(eax, &convert_argument);
1491   Condition is_string = masm->IsObjectStringType(eax, ebx, ecx);
1492   __ j(NegateCondition(is_string), &convert_argument);
1493   __ mov(ebx, eax);
1494   __ IncrementCounter(counters->string_ctor_string_value(), 1);
1495   __ jmp(&argument_is_string);
1496
1497   // Invoke the conversion builtin and put the result into ebx.
1498   __ bind(&convert_argument);
1499   __ IncrementCounter(counters->string_ctor_conversions(), 1);
1500   {
1501     FrameScope scope(masm, StackFrame::INTERNAL);
1502     __ push(edi);  // Preserve the function.
1503     __ push(eax);
1504     __ InvokeBuiltin(Builtins::TO_STRING, CALL_FUNCTION);
1505     __ pop(edi);
1506   }
1507   __ mov(ebx, eax);
1508   __ jmp(&argument_is_string);
1509
1510   // Load the empty string into ebx, remove the receiver from the
1511   // stack, and jump back to the case where the argument is a string.
1512   __ bind(&no_arguments);
1513   __ Move(ebx, Immediate(factory->empty_string()));
1514   __ pop(ecx);
1515   __ lea(esp, Operand(esp, kPointerSize));
1516   __ push(ecx);
1517   __ jmp(&argument_is_string);
1518
1519   // At this point the argument is already a string. Call runtime to
1520   // create a string wrapper.
1521   __ bind(&gc_required);
1522   __ IncrementCounter(counters->string_ctor_gc_required(), 1);
1523   {
1524     FrameScope scope(masm, StackFrame::INTERNAL);
1525     __ push(ebx);
1526     __ CallRuntime(Runtime::kNewStringWrapper, 1);
1527   }
1528   __ ret(0);
1529 }
1530
1531
1532 static void ArgumentsAdaptorStackCheck(MacroAssembler* masm,
1533                                        Label* stack_overflow) {
1534   // ----------- S t a t e -------------
1535   //  -- eax : actual number of arguments
1536   //  -- ebx : expected number of arguments
1537   //  -- edi : function (passed through to callee)
1538   // -----------------------------------
1539   // Check the stack for overflow. We are not trying to catch
1540   // interruptions (e.g. debug break and preemption) here, so the "real stack
1541   // limit" is checked.
1542   ExternalReference real_stack_limit =
1543       ExternalReference::address_of_real_stack_limit(masm->isolate());
1544   __ mov(edx, Operand::StaticVariable(real_stack_limit));
1545   // Make ecx the space we have left. The stack might already be overflowed
1546   // here which will cause ecx to become negative.
1547   __ mov(ecx, esp);
1548   __ sub(ecx, edx);
1549   // Make edx the space we need for the array when it is unrolled onto the
1550   // stack.
1551   __ mov(edx, ebx);
1552   __ shl(edx, kPointerSizeLog2);
1553   // Check if the arguments will overflow the stack.
1554   __ cmp(ecx, edx);
1555   __ j(less_equal, stack_overflow);  // Signed comparison.
1556 }
1557
1558
1559 static void EnterArgumentsAdaptorFrame(MacroAssembler* masm) {
1560   __ push(ebp);
1561   __ mov(ebp, esp);
1562
1563   // Store the arguments adaptor context sentinel.
1564   __ push(Immediate(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
1565
1566   // Push the function on the stack.
1567   __ push(edi);
1568
1569   // Preserve the number of arguments on the stack. Must preserve eax,
1570   // ebx and ecx because these registers are used when copying the
1571   // arguments and the receiver.
1572   STATIC_ASSERT(kSmiTagSize == 1);
1573   __ lea(edi, Operand(eax, eax, times_1, kSmiTag));
1574   __ push(edi);
1575 }
1576
1577
1578 static void LeaveArgumentsAdaptorFrame(MacroAssembler* masm) {
1579   // Retrieve the number of arguments from the stack.
1580   __ mov(ebx, Operand(ebp, ArgumentsAdaptorFrameConstants::kLengthOffset));
1581
1582   // Leave the frame.
1583   __ leave();
1584
1585   // Remove caller arguments from the stack.
1586   STATIC_ASSERT(kSmiTagSize == 1 && kSmiTag == 0);
1587   __ pop(ecx);
1588   __ lea(esp, Operand(esp, ebx, times_2, 1 * kPointerSize));  // 1 ~ receiver
1589   __ push(ecx);
1590 }
1591
1592
1593 void Builtins::Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm) {
1594   // ----------- S t a t e -------------
1595   //  -- eax : actual number of arguments
1596   //  -- ebx : expected number of arguments
1597   //  -- edi : function (passed through to callee)
1598   // -----------------------------------
1599
1600   Label invoke, dont_adapt_arguments;
1601   __ IncrementCounter(masm->isolate()->counters()->arguments_adaptors(), 1);
1602
1603   Label stack_overflow;
1604   ArgumentsAdaptorStackCheck(masm, &stack_overflow);
1605
1606   Label enough, too_few;
1607   __ mov(edx, FieldOperand(edi, JSFunction::kCodeEntryOffset));
1608   __ cmp(eax, ebx);
1609   __ j(less, &too_few);
1610   __ cmp(ebx, SharedFunctionInfo::kDontAdaptArgumentsSentinel);
1611   __ j(equal, &dont_adapt_arguments);
1612
1613   {  // Enough parameters: Actual >= expected.
1614     __ bind(&enough);
1615     EnterArgumentsAdaptorFrame(masm);
1616
1617     // Copy receiver and all expected arguments.
1618     const int offset = StandardFrameConstants::kCallerSPOffset;
1619     __ lea(eax, Operand(ebp, eax, times_4, offset));
1620     __ mov(edi, -1);  // account for receiver
1621
1622     Label copy;
1623     __ bind(&copy);
1624     __ inc(edi);
1625     __ push(Operand(eax, 0));
1626     __ sub(eax, Immediate(kPointerSize));
1627     __ cmp(edi, ebx);
1628     __ j(less, &copy);
1629     __ jmp(&invoke);
1630   }
1631
1632   {  // Too few parameters: Actual < expected.
1633     __ bind(&too_few);
1634
1635     // If the function is strong we need to throw an error.
1636     Label no_strong_error;
1637     __ mov(ecx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
1638     __ test_b(FieldOperand(ecx, SharedFunctionInfo::kStrongModeByteOffset),
1639               1 << SharedFunctionInfo::kStrongModeBitWithinByte);
1640     __ j(equal, &no_strong_error, Label::kNear);
1641
1642     // What we really care about is the required number of arguments.
1643     __ mov(ecx, FieldOperand(ecx, SharedFunctionInfo::kLengthOffset));
1644     __ SmiUntag(ecx);
1645     __ cmp(eax, ecx);
1646     __ j(greater_equal, &no_strong_error, Label::kNear);
1647
1648     {
1649       FrameScope frame(masm, StackFrame::MANUAL);
1650       EnterArgumentsAdaptorFrame(masm);
1651       __ CallRuntime(Runtime::kThrowStrongModeTooFewArguments, 0);
1652     }
1653
1654     __ bind(&no_strong_error);
1655     EnterArgumentsAdaptorFrame(masm);
1656
1657     // Copy receiver and all actual arguments.
1658     const int offset = StandardFrameConstants::kCallerSPOffset;
1659     __ lea(edi, Operand(ebp, eax, times_4, offset));
1660     // ebx = expected - actual.
1661     __ sub(ebx, eax);
1662     // eax = -actual - 1
1663     __ neg(eax);
1664     __ sub(eax, Immediate(1));
1665
1666     Label copy;
1667     __ bind(&copy);
1668     __ inc(eax);
1669     __ push(Operand(edi, 0));
1670     __ sub(edi, Immediate(kPointerSize));
1671     __ test(eax, eax);
1672     __ j(not_zero, &copy);
1673
1674     // Fill remaining expected arguments with undefined values.
1675     Label fill;
1676     __ bind(&fill);
1677     __ inc(eax);
1678     __ push(Immediate(masm->isolate()->factory()->undefined_value()));
1679     __ cmp(eax, ebx);
1680     __ j(less, &fill);
1681   }
1682
1683   // Call the entry point.
1684   __ bind(&invoke);
1685   // Restore function pointer.
1686   __ mov(edi, Operand(ebp, JavaScriptFrameConstants::kFunctionOffset));
1687   __ call(edx);
1688
1689   // Store offset of return address for deoptimizer.
1690   masm->isolate()->heap()->SetArgumentsAdaptorDeoptPCOffset(masm->pc_offset());
1691
1692   // Leave frame and return.
1693   LeaveArgumentsAdaptorFrame(masm);
1694   __ ret(0);
1695
1696   // -------------------------------------------
1697   // Dont adapt arguments.
1698   // -------------------------------------------
1699   __ bind(&dont_adapt_arguments);
1700   __ jmp(edx);
1701
1702   __ bind(&stack_overflow);
1703   {
1704     FrameScope frame(masm, StackFrame::MANUAL);
1705     EnterArgumentsAdaptorFrame(masm);
1706     __ InvokeBuiltin(Builtins::STACK_OVERFLOW, CALL_FUNCTION);
1707     __ int3();
1708   }
1709 }
1710
1711
1712 void Builtins::Generate_OnStackReplacement(MacroAssembler* masm) {
1713   // Lookup the function in the JavaScript frame.
1714   __ mov(eax, Operand(ebp, JavaScriptFrameConstants::kFunctionOffset));
1715   {
1716     FrameScope scope(masm, StackFrame::INTERNAL);
1717     // Pass function as argument.
1718     __ push(eax);
1719     __ CallRuntime(Runtime::kCompileForOnStackReplacement, 1);
1720   }
1721
1722   Label skip;
1723   // If the code object is null, just return to the unoptimized code.
1724   __ cmp(eax, Immediate(0));
1725   __ j(not_equal, &skip, Label::kNear);
1726   __ ret(0);
1727
1728   __ bind(&skip);
1729
1730   // Load deoptimization data from the code object.
1731   __ mov(ebx, Operand(eax, Code::kDeoptimizationDataOffset - kHeapObjectTag));
1732
1733   // Load the OSR entrypoint offset from the deoptimization data.
1734   __ mov(ebx, Operand(ebx, FixedArray::OffsetOfElementAt(
1735       DeoptimizationInputData::kOsrPcOffsetIndex) - kHeapObjectTag));
1736   __ SmiUntag(ebx);
1737
1738   // Compute the target address = code_obj + header_size + osr_offset
1739   __ lea(eax, Operand(eax, ebx, times_1, Code::kHeaderSize - kHeapObjectTag));
1740
1741   // Overwrite the return address on the stack.
1742   __ mov(Operand(esp, 0), eax);
1743
1744   // And "return" to the OSR entry point of the function.
1745   __ ret(0);
1746 }
1747
1748
1749 void Builtins::Generate_OsrAfterStackCheck(MacroAssembler* masm) {
1750   // We check the stack limit as indicator that recompilation might be done.
1751   Label ok;
1752   ExternalReference stack_limit =
1753       ExternalReference::address_of_stack_limit(masm->isolate());
1754   __ cmp(esp, Operand::StaticVariable(stack_limit));
1755   __ j(above_equal, &ok, Label::kNear);
1756   {
1757     FrameScope scope(masm, StackFrame::INTERNAL);
1758     __ CallRuntime(Runtime::kStackGuard, 0);
1759   }
1760   __ jmp(masm->isolate()->builtins()->OnStackReplacement(),
1761          RelocInfo::CODE_TARGET);
1762
1763   __ bind(&ok);
1764   __ ret(0);
1765 }
1766
1767 #undef __
1768 }  // namespace internal
1769 }  // namespace v8
1770
1771 #endif  // V8_TARGET_ARCH_IA32