5e42f84696f4be7da130600d4e45ee1abc9091e6
[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       __ push(ebx);
998       __ InvokeBuiltin(Builtins::TO_OBJECT, CALL_FUNCTION);
999       __ mov(ebx, eax);
1000       __ Move(edx, Immediate(0));  // restore
1001
1002       __ pop(eax);
1003       __ SmiUntag(eax);
1004     }
1005
1006     // Restore the function to edi.
1007     __ mov(edi, Operand(esp, eax, times_4, 1 * kPointerSize));
1008     __ jmp(&patch_receiver);
1009
1010     __ bind(&use_global_proxy);
1011     __ mov(ebx,
1012            Operand(esi, Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX)));
1013     __ mov(ebx, FieldOperand(ebx, GlobalObject::kGlobalProxyOffset));
1014
1015     __ bind(&patch_receiver);
1016     __ mov(Operand(esp, eax, times_4, 0), ebx);
1017
1018     __ jmp(&shift_arguments);
1019   }
1020
1021   // 3b. Check for function proxy.
1022   __ bind(&slow);
1023   __ Move(edx, Immediate(1));  // indicate function proxy
1024   __ CmpInstanceType(ecx, JS_FUNCTION_PROXY_TYPE);
1025   __ j(equal, &shift_arguments);
1026   __ bind(&non_function);
1027   __ Move(edx, Immediate(2));  // indicate non-function
1028
1029   // 3c. Patch the first argument when calling a non-function.  The
1030   //     CALL_NON_FUNCTION builtin expects the non-function callee as
1031   //     receiver, so overwrite the first argument which will ultimately
1032   //     become the receiver.
1033   __ mov(Operand(esp, eax, times_4, 0), edi);
1034
1035   // 4. Shift arguments and return address one slot down on the stack
1036   //    (overwriting the original receiver).  Adjust argument count to make
1037   //    the original first argument the new receiver.
1038   __ bind(&shift_arguments);
1039   { Label loop;
1040     __ mov(ecx, eax);
1041     __ bind(&loop);
1042     __ mov(ebx, Operand(esp, ecx, times_4, 0));
1043     __ mov(Operand(esp, ecx, times_4, kPointerSize), ebx);
1044     __ dec(ecx);
1045     __ j(not_sign, &loop);  // While non-negative (to copy return address).
1046     __ pop(ebx);  // Discard copy of return address.
1047     __ dec(eax);  // One fewer argument (first argument is new receiver).
1048   }
1049
1050   // 5a. Call non-function via tail call to CALL_NON_FUNCTION builtin,
1051   //     or a function proxy via CALL_FUNCTION_PROXY.
1052   { Label function, non_proxy;
1053     __ test(edx, edx);
1054     __ j(zero, &function);
1055     __ Move(ebx, Immediate(0));
1056     __ cmp(edx, Immediate(1));
1057     __ j(not_equal, &non_proxy);
1058
1059     __ pop(edx);   // return address
1060     __ push(edi);  // re-add proxy object as additional argument
1061     __ push(edx);
1062     __ inc(eax);
1063     __ GetBuiltinEntry(edx, Builtins::CALL_FUNCTION_PROXY);
1064     __ jmp(masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(),
1065            RelocInfo::CODE_TARGET);
1066
1067     __ bind(&non_proxy);
1068     __ GetBuiltinEntry(edx, Builtins::CALL_NON_FUNCTION);
1069     __ jmp(masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(),
1070            RelocInfo::CODE_TARGET);
1071     __ bind(&function);
1072   }
1073
1074   // 5b. Get the code to call from the function and check that the number of
1075   //     expected arguments matches what we're providing.  If so, jump
1076   //     (tail-call) to the code in register edx without checking arguments.
1077   __ mov(edx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
1078   __ mov(ebx,
1079          FieldOperand(edx, SharedFunctionInfo::kFormalParameterCountOffset));
1080   __ mov(edx, FieldOperand(edi, JSFunction::kCodeEntryOffset));
1081   __ SmiUntag(ebx);
1082   __ cmp(eax, ebx);
1083   __ j(not_equal,
1084        masm->isolate()->builtins()->ArgumentsAdaptorTrampoline());
1085
1086   ParameterCount expected(0);
1087   __ InvokeCode(edx, expected, expected, JUMP_FUNCTION, NullCallWrapper());
1088 }
1089
1090
1091 static void Generate_PushAppliedArguments(MacroAssembler* masm,
1092                                           const int argumentsOffset,
1093                                           const int indexOffset,
1094                                           const int limitOffset) {
1095   // Copy all arguments from the array to the stack.
1096   Label entry, loop;
1097   Register receiver = LoadDescriptor::ReceiverRegister();
1098   Register key = LoadDescriptor::NameRegister();
1099   Register slot = LoadDescriptor::SlotRegister();
1100   Register vector = LoadWithVectorDescriptor::VectorRegister();
1101   __ mov(key, Operand(ebp, indexOffset));
1102   __ jmp(&entry);
1103   __ bind(&loop);
1104   __ mov(receiver, Operand(ebp, argumentsOffset));  // load arguments
1105
1106   // Use inline caching to speed up access to arguments.
1107   FeedbackVectorSpec spec(0, Code::KEYED_LOAD_IC);
1108   Handle<TypeFeedbackVector> feedback_vector =
1109       masm->isolate()->factory()->NewTypeFeedbackVector(&spec);
1110   int index = feedback_vector->GetIndex(FeedbackVectorICSlot(0));
1111   __ mov(slot, Immediate(Smi::FromInt(index)));
1112   __ mov(vector, Immediate(feedback_vector));
1113   Handle<Code> ic =
1114       KeyedLoadICStub(masm->isolate(), LoadICState(kNoExtraICState)).GetCode();
1115   __ call(ic, RelocInfo::CODE_TARGET);
1116   // It is important that we do not have a test instruction after the
1117   // call.  A test instruction after the call is used to indicate that
1118   // we have generated an inline version of the keyed load.  In this
1119   // case, we know that we are not generating a test instruction next.
1120
1121   // Push the nth argument.
1122   __ push(eax);
1123
1124   // Update the index on the stack and in register key.
1125   __ mov(key, Operand(ebp, indexOffset));
1126   __ add(key, Immediate(1 << kSmiTagSize));
1127   __ mov(Operand(ebp, indexOffset), key);
1128
1129   __ bind(&entry);
1130   __ cmp(key, Operand(ebp, limitOffset));
1131   __ j(not_equal, &loop);
1132
1133   // On exit, the pushed arguments count is in eax, untagged
1134   __ Move(eax, key);
1135   __ SmiUntag(eax);
1136 }
1137
1138
1139 // Used by FunctionApply and ReflectApply
1140 static void Generate_ApplyHelper(MacroAssembler* masm, bool targetIsArgument) {
1141   const int kFormalParameters = targetIsArgument ? 3 : 2;
1142   const int kStackSize = kFormalParameters + 1;
1143
1144   // Stack at entry:
1145   // esp     : return address
1146   // esp[4]  : arguments
1147   // esp[8]  : receiver ("this")
1148   // esp[12] : function
1149   {
1150     FrameScope frame_scope(masm, StackFrame::INTERNAL);
1151     // Stack frame:
1152     // ebp     : Old base pointer
1153     // ebp[4]  : return address
1154     // ebp[8]  : function arguments
1155     // ebp[12] : receiver
1156     // ebp[16] : function
1157     static const int kArgumentsOffset = kFPOnStackSize + kPCOnStackSize;
1158     static const int kReceiverOffset = kArgumentsOffset + kPointerSize;
1159     static const int kFunctionOffset = kReceiverOffset + kPointerSize;
1160
1161     __ push(Operand(ebp, kFunctionOffset));  // push this
1162     __ push(Operand(ebp, kArgumentsOffset));  // push arguments
1163     if (targetIsArgument) {
1164       __ InvokeBuiltin(Builtins::REFLECT_APPLY_PREPARE, CALL_FUNCTION);
1165     } else {
1166       __ InvokeBuiltin(Builtins::APPLY_PREPARE, CALL_FUNCTION);
1167     }
1168
1169     Generate_CheckStackOverflow(masm, kFunctionOffset, kEaxIsSmiTagged);
1170
1171     // Push current index and limit.
1172     const int kLimitOffset =
1173         StandardFrameConstants::kExpressionsOffset - 1 * kPointerSize;
1174     const int kIndexOffset = kLimitOffset - 1 * kPointerSize;
1175     __ push(eax);  // limit
1176     __ push(Immediate(0));  // index
1177
1178     // Get the receiver.
1179     __ mov(ebx, Operand(ebp, kReceiverOffset));
1180
1181     // Check that the function is a JS function (otherwise it must be a proxy).
1182     Label push_receiver, use_global_proxy;
1183     __ mov(edi, Operand(ebp, kFunctionOffset));
1184     __ CmpObjectType(edi, JS_FUNCTION_TYPE, ecx);
1185     __ j(not_equal, &push_receiver);
1186
1187     // Change context eagerly to get the right global object if necessary.
1188     __ mov(esi, FieldOperand(edi, JSFunction::kContextOffset));
1189
1190     // Compute the receiver.
1191     // Do not transform the receiver for strict mode functions.
1192     Label call_to_object;
1193     __ mov(ecx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
1194     __ test_b(FieldOperand(ecx, SharedFunctionInfo::kStrictModeByteOffset),
1195               1 << SharedFunctionInfo::kStrictModeBitWithinByte);
1196     __ j(not_equal, &push_receiver);
1197
1198     Factory* factory = masm->isolate()->factory();
1199
1200     // Do not transform the receiver for natives (shared already in ecx).
1201     __ test_b(FieldOperand(ecx, SharedFunctionInfo::kNativeByteOffset),
1202               1 << SharedFunctionInfo::kNativeBitWithinByte);
1203     __ j(not_equal, &push_receiver);
1204
1205     // Compute the receiver in sloppy mode.
1206     // Call ToObject on the receiver if it is not an object, or use the
1207     // global object if it is null or undefined.
1208     __ JumpIfSmi(ebx, &call_to_object);
1209     __ cmp(ebx, factory->null_value());
1210     __ j(equal, &use_global_proxy);
1211     __ cmp(ebx, factory->undefined_value());
1212     __ j(equal, &use_global_proxy);
1213     STATIC_ASSERT(LAST_SPEC_OBJECT_TYPE == LAST_TYPE);
1214     __ CmpObjectType(ebx, FIRST_SPEC_OBJECT_TYPE, ecx);
1215     __ j(above_equal, &push_receiver);
1216
1217     __ bind(&call_to_object);
1218     __ push(ebx);
1219     __ InvokeBuiltin(Builtins::TO_OBJECT, CALL_FUNCTION);
1220     __ mov(ebx, eax);
1221     __ jmp(&push_receiver);
1222
1223     __ bind(&use_global_proxy);
1224     __ mov(ebx,
1225            Operand(esi, Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX)));
1226     __ mov(ebx, FieldOperand(ebx, GlobalObject::kGlobalProxyOffset));
1227
1228     // Push the receiver.
1229     __ bind(&push_receiver);
1230     __ push(ebx);
1231
1232     // Loop over the arguments array, pushing each value to the stack
1233     Generate_PushAppliedArguments(
1234         masm, kArgumentsOffset, kIndexOffset, kLimitOffset);
1235
1236     // Call the function.
1237     Label call_proxy;
1238     ParameterCount actual(eax);
1239     __ mov(edi, Operand(ebp, kFunctionOffset));
1240     __ CmpObjectType(edi, JS_FUNCTION_TYPE, ecx);
1241     __ j(not_equal, &call_proxy);
1242     __ InvokeFunction(edi, actual, CALL_FUNCTION, NullCallWrapper());
1243
1244     frame_scope.GenerateLeaveFrame();
1245     __ ret(kStackSize * kPointerSize);  // remove this, receiver, and arguments
1246
1247     // Call the function proxy.
1248     __ bind(&call_proxy);
1249     __ push(edi);  // add function proxy as last argument
1250     __ inc(eax);
1251     __ Move(ebx, Immediate(0));
1252     __ GetBuiltinEntry(edx, Builtins::CALL_FUNCTION_PROXY);
1253     __ call(masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(),
1254             RelocInfo::CODE_TARGET);
1255
1256     // Leave internal frame.
1257   }
1258   __ ret(kStackSize * kPointerSize);  // remove this, receiver, and arguments
1259 }
1260
1261
1262 // Used by ReflectConstruct
1263 static void Generate_ConstructHelper(MacroAssembler* masm) {
1264   const int kFormalParameters = 3;
1265   const int kStackSize = kFormalParameters + 1;
1266
1267   // Stack at entry:
1268   // esp     : return address
1269   // esp[4]  : original constructor (new.target)
1270   // esp[8]  : arguments
1271   // esp[16] : constructor
1272   {
1273     FrameScope frame_scope(masm, StackFrame::INTERNAL);
1274     // Stack frame:
1275     // ebp     : Old base pointer
1276     // ebp[4]  : return address
1277     // ebp[8]  : original constructor (new.target)
1278     // ebp[12] : arguments
1279     // ebp[16] : constructor
1280     static const int kNewTargetOffset = kFPOnStackSize + kPCOnStackSize;
1281     static const int kArgumentsOffset = kNewTargetOffset + kPointerSize;
1282     static const int kFunctionOffset = kArgumentsOffset + kPointerSize;
1283
1284     // If newTarget is not supplied, set it to constructor
1285     Label validate_arguments;
1286     __ mov(eax, Operand(ebp, kNewTargetOffset));
1287     __ CompareRoot(eax, Heap::kUndefinedValueRootIndex);
1288     __ j(not_equal, &validate_arguments, Label::kNear);
1289     __ mov(eax, Operand(ebp, kFunctionOffset));
1290     __ mov(Operand(ebp, kNewTargetOffset), eax);
1291
1292     // Validate arguments
1293     __ bind(&validate_arguments);
1294     __ push(Operand(ebp, kFunctionOffset));
1295     __ push(Operand(ebp, kArgumentsOffset));
1296     __ push(Operand(ebp, kNewTargetOffset));
1297     __ InvokeBuiltin(Builtins::REFLECT_CONSTRUCT_PREPARE, CALL_FUNCTION);
1298
1299     Generate_CheckStackOverflow(masm, kFunctionOffset, kEaxIsSmiTagged);
1300
1301     // Push current index and limit.
1302     const int kLimitOffset =
1303         StandardFrameConstants::kExpressionsOffset - 1 * kPointerSize;
1304     const int kIndexOffset = kLimitOffset - 1 * kPointerSize;
1305     __ Push(eax);  // limit
1306     __ push(Immediate(0));  // index
1307     // Push the constructor function as callee.
1308     __ push(Operand(ebp, kFunctionOffset));
1309
1310     // Loop over the arguments array, pushing each value to the stack
1311     Generate_PushAppliedArguments(
1312         masm, kArgumentsOffset, kIndexOffset, kLimitOffset);
1313
1314     // Use undefined feedback vector
1315     __ LoadRoot(ebx, Heap::kUndefinedValueRootIndex);
1316     __ mov(edi, Operand(ebp, kFunctionOffset));
1317     __ mov(ecx, Operand(ebp, kNewTargetOffset));
1318
1319     // Call the function.
1320     CallConstructStub stub(masm->isolate(), SUPER_CONSTRUCTOR_CALL);
1321     __ call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL);
1322
1323     // Leave internal frame.
1324   }
1325   // remove this, target, arguments, and newTarget
1326   __ ret(kStackSize * kPointerSize);
1327 }
1328
1329
1330 void Builtins::Generate_FunctionApply(MacroAssembler* masm) {
1331   Generate_ApplyHelper(masm, false);
1332 }
1333
1334
1335 void Builtins::Generate_ReflectApply(MacroAssembler* masm) {
1336   Generate_ApplyHelper(masm, true);
1337 }
1338
1339
1340 void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) {
1341   Generate_ConstructHelper(masm);
1342 }
1343
1344
1345 void Builtins::Generate_InternalArrayCode(MacroAssembler* masm) {
1346   // ----------- S t a t e -------------
1347   //  -- eax : argc
1348   //  -- esp[0] : return address
1349   //  -- esp[4] : last argument
1350   // -----------------------------------
1351   Label generic_array_code;
1352
1353   // Get the InternalArray function.
1354   __ LoadGlobalFunction(Context::INTERNAL_ARRAY_FUNCTION_INDEX, edi);
1355
1356   if (FLAG_debug_code) {
1357     // Initial map for the builtin InternalArray function should be a map.
1358     __ mov(ebx, FieldOperand(edi, JSFunction::kPrototypeOrInitialMapOffset));
1359     // Will both indicate a NULL and a Smi.
1360     __ test(ebx, Immediate(kSmiTagMask));
1361     __ Assert(not_zero, kUnexpectedInitialMapForInternalArrayFunction);
1362     __ CmpObjectType(ebx, MAP_TYPE, ecx);
1363     __ Assert(equal, kUnexpectedInitialMapForInternalArrayFunction);
1364   }
1365
1366   // Run the native code for the InternalArray function called as a normal
1367   // function.
1368   // tail call a stub
1369   InternalArrayConstructorStub stub(masm->isolate());
1370   __ TailCallStub(&stub);
1371 }
1372
1373
1374 void Builtins::Generate_ArrayCode(MacroAssembler* masm) {
1375   // ----------- S t a t e -------------
1376   //  -- eax : argc
1377   //  -- esp[0] : return address
1378   //  -- esp[4] : last argument
1379   // -----------------------------------
1380   Label generic_array_code;
1381
1382   // Get the Array function.
1383   __ LoadGlobalFunction(Context::ARRAY_FUNCTION_INDEX, edi);
1384   __ mov(edx, edi);
1385
1386   if (FLAG_debug_code) {
1387     // Initial map for the builtin Array function should be a map.
1388     __ mov(ebx, FieldOperand(edi, JSFunction::kPrototypeOrInitialMapOffset));
1389     // Will both indicate a NULL and a Smi.
1390     __ test(ebx, Immediate(kSmiTagMask));
1391     __ Assert(not_zero, kUnexpectedInitialMapForArrayFunction);
1392     __ CmpObjectType(ebx, MAP_TYPE, ecx);
1393     __ Assert(equal, kUnexpectedInitialMapForArrayFunction);
1394   }
1395
1396   // Run the native code for the Array function called as a normal function.
1397   // tail call a stub
1398   __ mov(ebx, masm->isolate()->factory()->undefined_value());
1399   ArrayConstructorStub stub(masm->isolate());
1400   __ TailCallStub(&stub);
1401 }
1402
1403
1404 void Builtins::Generate_StringConstructCode(MacroAssembler* masm) {
1405   // ----------- S t a t e -------------
1406   //  -- eax                 : number of arguments
1407   //  -- edi                 : constructor function
1408   //  -- esp[0]              : return address
1409   //  -- esp[(argc - n) * 4] : arg[n] (zero-based)
1410   //  -- esp[(argc + 1) * 4] : receiver
1411   // -----------------------------------
1412   Counters* counters = masm->isolate()->counters();
1413   __ IncrementCounter(counters->string_ctor_calls(), 1);
1414
1415   if (FLAG_debug_code) {
1416     __ LoadGlobalFunction(Context::STRING_FUNCTION_INDEX, ecx);
1417     __ cmp(edi, ecx);
1418     __ Assert(equal, kUnexpectedStringFunction);
1419   }
1420
1421   // Load the first argument into eax and get rid of the rest
1422   // (including the receiver).
1423   Label no_arguments;
1424   __ test(eax, eax);
1425   __ j(zero, &no_arguments);
1426   __ mov(ebx, Operand(esp, eax, times_pointer_size, 0));
1427   __ pop(ecx);
1428   __ lea(esp, Operand(esp, eax, times_pointer_size, kPointerSize));
1429   __ push(ecx);
1430   __ mov(eax, ebx);
1431
1432   // Lookup the argument in the number to string cache.
1433   Label not_cached, argument_is_string;
1434   __ LookupNumberStringCache(eax,  // Input.
1435                              ebx,  // Result.
1436                              ecx,  // Scratch 1.
1437                              edx,  // Scratch 2.
1438                              &not_cached);
1439   __ IncrementCounter(counters->string_ctor_cached_number(), 1);
1440   __ bind(&argument_is_string);
1441   // ----------- S t a t e -------------
1442   //  -- ebx    : argument converted to string
1443   //  -- edi    : constructor function
1444   //  -- esp[0] : return address
1445   // -----------------------------------
1446
1447   // Allocate a JSValue and put the tagged pointer into eax.
1448   Label gc_required;
1449   __ Allocate(JSValue::kSize,
1450               eax,  // Result.
1451               ecx,  // New allocation top (we ignore it).
1452               no_reg,
1453               &gc_required,
1454               TAG_OBJECT);
1455
1456   // Set the map.
1457   __ LoadGlobalFunctionInitialMap(edi, ecx);
1458   if (FLAG_debug_code) {
1459     __ cmpb(FieldOperand(ecx, Map::kInstanceSizeOffset),
1460             JSValue::kSize >> kPointerSizeLog2);
1461     __ Assert(equal, kUnexpectedStringWrapperInstanceSize);
1462     __ cmpb(FieldOperand(ecx, Map::kUnusedPropertyFieldsOffset), 0);
1463     __ Assert(equal, kUnexpectedUnusedPropertiesOfStringWrapper);
1464   }
1465   __ mov(FieldOperand(eax, HeapObject::kMapOffset), ecx);
1466
1467   // Set properties and elements.
1468   Factory* factory = masm->isolate()->factory();
1469   __ Move(ecx, Immediate(factory->empty_fixed_array()));
1470   __ mov(FieldOperand(eax, JSObject::kPropertiesOffset), ecx);
1471   __ mov(FieldOperand(eax, JSObject::kElementsOffset), ecx);
1472
1473   // Set the value.
1474   __ mov(FieldOperand(eax, JSValue::kValueOffset), ebx);
1475
1476   // Ensure the object is fully initialized.
1477   STATIC_ASSERT(JSValue::kSize == 4 * kPointerSize);
1478
1479   // We're done. Return.
1480   __ ret(0);
1481
1482   // The argument was not found in the number to string cache. Check
1483   // if it's a string already before calling the conversion builtin.
1484   Label convert_argument;
1485   __ bind(&not_cached);
1486   STATIC_ASSERT(kSmiTag == 0);
1487   __ JumpIfSmi(eax, &convert_argument);
1488   Condition is_string = masm->IsObjectStringType(eax, ebx, ecx);
1489   __ j(NegateCondition(is_string), &convert_argument);
1490   __ mov(ebx, eax);
1491   __ IncrementCounter(counters->string_ctor_string_value(), 1);
1492   __ jmp(&argument_is_string);
1493
1494   // Invoke the conversion builtin and put the result into ebx.
1495   __ bind(&convert_argument);
1496   __ IncrementCounter(counters->string_ctor_conversions(), 1);
1497   {
1498     FrameScope scope(masm, StackFrame::INTERNAL);
1499     __ push(edi);  // Preserve the function.
1500     __ push(eax);
1501     __ InvokeBuiltin(Builtins::TO_STRING, CALL_FUNCTION);
1502     __ pop(edi);
1503   }
1504   __ mov(ebx, eax);
1505   __ jmp(&argument_is_string);
1506
1507   // Load the empty string into ebx, remove the receiver from the
1508   // stack, and jump back to the case where the argument is a string.
1509   __ bind(&no_arguments);
1510   __ Move(ebx, Immediate(factory->empty_string()));
1511   __ pop(ecx);
1512   __ lea(esp, Operand(esp, kPointerSize));
1513   __ push(ecx);
1514   __ jmp(&argument_is_string);
1515
1516   // At this point the argument is already a string. Call runtime to
1517   // create a string wrapper.
1518   __ bind(&gc_required);
1519   __ IncrementCounter(counters->string_ctor_gc_required(), 1);
1520   {
1521     FrameScope scope(masm, StackFrame::INTERNAL);
1522     __ push(ebx);
1523     __ CallRuntime(Runtime::kNewStringWrapper, 1);
1524   }
1525   __ ret(0);
1526 }
1527
1528
1529 static void ArgumentsAdaptorStackCheck(MacroAssembler* masm,
1530                                        Label* stack_overflow) {
1531   // ----------- S t a t e -------------
1532   //  -- eax : actual number of arguments
1533   //  -- ebx : expected number of arguments
1534   //  -- edi : function (passed through to callee)
1535   // -----------------------------------
1536   // Check the stack for overflow. We are not trying to catch
1537   // interruptions (e.g. debug break and preemption) here, so the "real stack
1538   // limit" is checked.
1539   ExternalReference real_stack_limit =
1540       ExternalReference::address_of_real_stack_limit(masm->isolate());
1541   __ mov(edx, Operand::StaticVariable(real_stack_limit));
1542   // Make ecx the space we have left. The stack might already be overflowed
1543   // here which will cause ecx to become negative.
1544   __ mov(ecx, esp);
1545   __ sub(ecx, edx);
1546   // Make edx the space we need for the array when it is unrolled onto the
1547   // stack.
1548   __ mov(edx, ebx);
1549   __ shl(edx, kPointerSizeLog2);
1550   // Check if the arguments will overflow the stack.
1551   __ cmp(ecx, edx);
1552   __ j(less_equal, stack_overflow);  // Signed comparison.
1553 }
1554
1555
1556 static void EnterArgumentsAdaptorFrame(MacroAssembler* masm) {
1557   __ push(ebp);
1558   __ mov(ebp, esp);
1559
1560   // Store the arguments adaptor context sentinel.
1561   __ push(Immediate(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
1562
1563   // Push the function on the stack.
1564   __ push(edi);
1565
1566   // Preserve the number of arguments on the stack. Must preserve eax,
1567   // ebx and ecx because these registers are used when copying the
1568   // arguments and the receiver.
1569   STATIC_ASSERT(kSmiTagSize == 1);
1570   __ lea(edi, Operand(eax, eax, times_1, kSmiTag));
1571   __ push(edi);
1572 }
1573
1574
1575 static void LeaveArgumentsAdaptorFrame(MacroAssembler* masm) {
1576   // Retrieve the number of arguments from the stack.
1577   __ mov(ebx, Operand(ebp, ArgumentsAdaptorFrameConstants::kLengthOffset));
1578
1579   // Leave the frame.
1580   __ leave();
1581
1582   // Remove caller arguments from the stack.
1583   STATIC_ASSERT(kSmiTagSize == 1 && kSmiTag == 0);
1584   __ pop(ecx);
1585   __ lea(esp, Operand(esp, ebx, times_2, 1 * kPointerSize));  // 1 ~ receiver
1586   __ push(ecx);
1587 }
1588
1589
1590 void Builtins::Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm) {
1591   // ----------- S t a t e -------------
1592   //  -- eax : actual number of arguments
1593   //  -- ebx : expected number of arguments
1594   //  -- edi : function (passed through to callee)
1595   // -----------------------------------
1596
1597   Label invoke, dont_adapt_arguments;
1598   __ IncrementCounter(masm->isolate()->counters()->arguments_adaptors(), 1);
1599
1600   Label stack_overflow;
1601   ArgumentsAdaptorStackCheck(masm, &stack_overflow);
1602
1603   Label enough, too_few;
1604   __ mov(edx, FieldOperand(edi, JSFunction::kCodeEntryOffset));
1605   __ cmp(eax, ebx);
1606   __ j(less, &too_few);
1607   __ cmp(ebx, SharedFunctionInfo::kDontAdaptArgumentsSentinel);
1608   __ j(equal, &dont_adapt_arguments);
1609
1610   {  // Enough parameters: Actual >= expected.
1611     __ bind(&enough);
1612     EnterArgumentsAdaptorFrame(masm);
1613
1614     // Copy receiver and all expected arguments.
1615     const int offset = StandardFrameConstants::kCallerSPOffset;
1616     __ lea(eax, Operand(ebp, eax, times_4, offset));
1617     __ mov(edi, -1);  // account for receiver
1618
1619     Label copy;
1620     __ bind(&copy);
1621     __ inc(edi);
1622     __ push(Operand(eax, 0));
1623     __ sub(eax, Immediate(kPointerSize));
1624     __ cmp(edi, ebx);
1625     __ j(less, &copy);
1626     __ jmp(&invoke);
1627   }
1628
1629   {  // Too few parameters: Actual < expected.
1630     __ bind(&too_few);
1631
1632     // If the function is strong we need to throw an error.
1633     Label no_strong_error;
1634     __ mov(ecx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
1635     __ test_b(FieldOperand(ecx, SharedFunctionInfo::kStrongModeByteOffset),
1636               1 << SharedFunctionInfo::kStrongModeBitWithinByte);
1637     __ j(equal, &no_strong_error, Label::kNear);
1638
1639     // What we really care about is the required number of arguments.
1640     __ mov(ecx, FieldOperand(ecx, SharedFunctionInfo::kLengthOffset));
1641     __ SmiUntag(ecx);
1642     __ cmp(eax, ecx);
1643     __ j(greater_equal, &no_strong_error, Label::kNear);
1644
1645     {
1646       FrameScope frame(masm, StackFrame::MANUAL);
1647       EnterArgumentsAdaptorFrame(masm);
1648       __ CallRuntime(Runtime::kThrowStrongModeTooFewArguments, 0);
1649     }
1650
1651     __ bind(&no_strong_error);
1652     EnterArgumentsAdaptorFrame(masm);
1653
1654     // Copy receiver and all actual arguments.
1655     const int offset = StandardFrameConstants::kCallerSPOffset;
1656     __ lea(edi, Operand(ebp, eax, times_4, offset));
1657     // ebx = expected - actual.
1658     __ sub(ebx, eax);
1659     // eax = -actual - 1
1660     __ neg(eax);
1661     __ sub(eax, Immediate(1));
1662
1663     Label copy;
1664     __ bind(&copy);
1665     __ inc(eax);
1666     __ push(Operand(edi, 0));
1667     __ sub(edi, Immediate(kPointerSize));
1668     __ test(eax, eax);
1669     __ j(not_zero, &copy);
1670
1671     // Fill remaining expected arguments with undefined values.
1672     Label fill;
1673     __ bind(&fill);
1674     __ inc(eax);
1675     __ push(Immediate(masm->isolate()->factory()->undefined_value()));
1676     __ cmp(eax, ebx);
1677     __ j(less, &fill);
1678   }
1679
1680   // Call the entry point.
1681   __ bind(&invoke);
1682   // Restore function pointer.
1683   __ mov(edi, Operand(ebp, JavaScriptFrameConstants::kFunctionOffset));
1684   __ call(edx);
1685
1686   // Store offset of return address for deoptimizer.
1687   masm->isolate()->heap()->SetArgumentsAdaptorDeoptPCOffset(masm->pc_offset());
1688
1689   // Leave frame and return.
1690   LeaveArgumentsAdaptorFrame(masm);
1691   __ ret(0);
1692
1693   // -------------------------------------------
1694   // Dont adapt arguments.
1695   // -------------------------------------------
1696   __ bind(&dont_adapt_arguments);
1697   __ jmp(edx);
1698
1699   __ bind(&stack_overflow);
1700   {
1701     FrameScope frame(masm, StackFrame::MANUAL);
1702     EnterArgumentsAdaptorFrame(masm);
1703     __ InvokeBuiltin(Builtins::STACK_OVERFLOW, CALL_FUNCTION);
1704     __ int3();
1705   }
1706 }
1707
1708
1709 void Builtins::Generate_OnStackReplacement(MacroAssembler* masm) {
1710   // Lookup the function in the JavaScript frame.
1711   __ mov(eax, Operand(ebp, JavaScriptFrameConstants::kFunctionOffset));
1712   {
1713     FrameScope scope(masm, StackFrame::INTERNAL);
1714     // Pass function as argument.
1715     __ push(eax);
1716     __ CallRuntime(Runtime::kCompileForOnStackReplacement, 1);
1717   }
1718
1719   Label skip;
1720   // If the code object is null, just return to the unoptimized code.
1721   __ cmp(eax, Immediate(0));
1722   __ j(not_equal, &skip, Label::kNear);
1723   __ ret(0);
1724
1725   __ bind(&skip);
1726
1727   // Load deoptimization data from the code object.
1728   __ mov(ebx, Operand(eax, Code::kDeoptimizationDataOffset - kHeapObjectTag));
1729
1730   // Load the OSR entrypoint offset from the deoptimization data.
1731   __ mov(ebx, Operand(ebx, FixedArray::OffsetOfElementAt(
1732       DeoptimizationInputData::kOsrPcOffsetIndex) - kHeapObjectTag));
1733   __ SmiUntag(ebx);
1734
1735   // Compute the target address = code_obj + header_size + osr_offset
1736   __ lea(eax, Operand(eax, ebx, times_1, Code::kHeaderSize - kHeapObjectTag));
1737
1738   // Overwrite the return address on the stack.
1739   __ mov(Operand(esp, 0), eax);
1740
1741   // And "return" to the OSR entry point of the function.
1742   __ ret(0);
1743 }
1744
1745
1746 void Builtins::Generate_OsrAfterStackCheck(MacroAssembler* masm) {
1747   // We check the stack limit as indicator that recompilation might be done.
1748   Label ok;
1749   ExternalReference stack_limit =
1750       ExternalReference::address_of_stack_limit(masm->isolate());
1751   __ cmp(esp, Operand::StaticVariable(stack_limit));
1752   __ j(above_equal, &ok, Label::kNear);
1753   {
1754     FrameScope scope(masm, StackFrame::INTERNAL);
1755     __ CallRuntime(Runtime::kStackGuard, 0);
1756   }
1757   __ jmp(masm->isolate()->builtins()->OnStackReplacement(),
1758          RelocInfo::CODE_TARGET);
1759
1760   __ bind(&ok);
1761   __ ret(0);
1762 }
1763
1764 #undef __
1765 }  // namespace internal
1766 }  // namespace v8
1767
1768 #endif  // V8_TARGET_ARCH_IA32