b9c801e6e7edc44d7400bd7bf9696e862c6314fc
[platform/upstream/v8.git] / src / mips / full-codegen-mips.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_MIPS
8
9 // Note on Mips implementation:
10 //
11 // The result_register() for mips is the 'v0' register, which is defined
12 // by the ABI to contain function return values. However, the first
13 // parameter to a function is defined to be 'a0'. So there are many
14 // places where we have to move a previous result in v0 to a0 for the
15 // next call: mov(a0, v0). This is not needed on the other architectures.
16
17 #include "src/code-factory.h"
18 #include "src/code-stubs.h"
19 #include "src/codegen.h"
20 #include "src/compiler.h"
21 #include "src/debug.h"
22 #include "src/full-codegen.h"
23 #include "src/ic/ic.h"
24 #include "src/parser.h"
25 #include "src/scopes.h"
26
27 #include "src/mips/code-stubs-mips.h"
28 #include "src/mips/macro-assembler-mips.h"
29
30 namespace v8 {
31 namespace internal {
32
33 #define __ ACCESS_MASM(masm_)
34
35
36 // A patch site is a location in the code which it is possible to patch. This
37 // class has a number of methods to emit the code which is patchable and the
38 // method EmitPatchInfo to record a marker back to the patchable code. This
39 // marker is a andi zero_reg, rx, #yyyy instruction, and rx * 0x0000ffff + yyyy
40 // (raw 16 bit immediate value is used) is the delta from the pc to the first
41 // instruction of the patchable code.
42 // The marker instruction is effectively a NOP (dest is zero_reg) and will
43 // never be emitted by normal code.
44 class JumpPatchSite BASE_EMBEDDED {
45  public:
46   explicit JumpPatchSite(MacroAssembler* masm) : masm_(masm) {
47 #ifdef DEBUG
48     info_emitted_ = false;
49 #endif
50   }
51
52   ~JumpPatchSite() {
53     DCHECK(patch_site_.is_bound() == info_emitted_);
54   }
55
56   // When initially emitting this ensure that a jump is always generated to skip
57   // the inlined smi code.
58   void EmitJumpIfNotSmi(Register reg, Label* target) {
59     DCHECK(!patch_site_.is_bound() && !info_emitted_);
60     Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm_);
61     __ bind(&patch_site_);
62     __ andi(at, reg, 0);
63     // Always taken before patched.
64     __ BranchShort(target, eq, at, Operand(zero_reg));
65   }
66
67   // When initially emitting this ensure that a jump is never generated to skip
68   // the inlined smi code.
69   void EmitJumpIfSmi(Register reg, Label* target) {
70     Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm_);
71     DCHECK(!patch_site_.is_bound() && !info_emitted_);
72     __ bind(&patch_site_);
73     __ andi(at, reg, 0);
74     // Never taken before patched.
75     __ BranchShort(target, ne, at, Operand(zero_reg));
76   }
77
78   void EmitPatchInfo() {
79     if (patch_site_.is_bound()) {
80       int delta_to_patch_site = masm_->InstructionsGeneratedSince(&patch_site_);
81       Register reg = Register::from_code(delta_to_patch_site / kImm16Mask);
82       __ andi(zero_reg, reg, delta_to_patch_site % kImm16Mask);
83 #ifdef DEBUG
84       info_emitted_ = true;
85 #endif
86     } else {
87       __ nop();  // Signals no inlined code.
88     }
89   }
90
91  private:
92   MacroAssembler* masm_;
93   Label patch_site_;
94 #ifdef DEBUG
95   bool info_emitted_;
96 #endif
97 };
98
99
100 // Generate code for a JS function.  On entry to the function the receiver
101 // and arguments have been pushed on the stack left to right.  The actual
102 // argument count matches the formal parameter count expected by the
103 // function.
104 //
105 // The live registers are:
106 //   o a1: the JS function object being called (i.e. ourselves)
107 //   o cp: our context
108 //   o fp: our caller's frame pointer
109 //   o sp: stack pointer
110 //   o ra: return address
111 //
112 // The function builds a JS frame.  Please see JavaScriptFrameConstants in
113 // frames-mips.h for its layout.
114 void FullCodeGenerator::Generate() {
115   CompilationInfo* info = info_;
116   profiling_counter_ = isolate()->factory()->NewCell(
117       Handle<Smi>(Smi::FromInt(FLAG_interrupt_budget), isolate()));
118   SetFunctionPosition(function());
119   Comment cmnt(masm_, "[ function compiled by full code generator");
120
121   ProfileEntryHookStub::MaybeCallEntryHook(masm_);
122
123 #ifdef DEBUG
124   if (strlen(FLAG_stop_at) > 0 &&
125       info->function()->name()->IsUtf8EqualTo(CStrVector(FLAG_stop_at))) {
126     __ stop("stop-at");
127   }
128 #endif
129
130   // Sloppy mode functions and builtins need to replace the receiver with the
131   // global proxy when called as functions (without an explicit receiver
132   // object).
133   if (is_sloppy(info->language_mode()) && !info->is_native() &&
134       info->MayUseThis() && info->scope()->has_this_declaration()) {
135     Label ok;
136     int receiver_offset = info->scope()->num_parameters() * kPointerSize;
137     __ lw(at, MemOperand(sp, receiver_offset));
138     __ LoadRoot(a2, Heap::kUndefinedValueRootIndex);
139     __ Branch(&ok, ne, a2, Operand(at));
140
141     __ lw(a2, GlobalObjectOperand());
142     __ lw(a2, FieldMemOperand(a2, GlobalObject::kGlobalProxyOffset));
143
144     __ sw(a2, MemOperand(sp, receiver_offset));
145
146     __ bind(&ok);
147   }
148
149   // Open a frame scope to indicate that there is a frame on the stack.  The
150   // MANUAL indicates that the scope shouldn't actually generate code to set up
151   // the frame (that is done below).
152   FrameScope frame_scope(masm_, StackFrame::MANUAL);
153
154   info->set_prologue_offset(masm_->pc_offset());
155   __ Prologue(info->IsCodePreAgingActive());
156   info->AddNoFrameRange(0, masm_->pc_offset());
157
158   { Comment cmnt(masm_, "[ Allocate locals");
159     int locals_count = info->scope()->num_stack_slots();
160     // Generators allocate locals, if any, in context slots.
161     DCHECK(!IsGeneratorFunction(info->function()->kind()) || locals_count == 0);
162     if (locals_count > 0) {
163       if (locals_count >= 128) {
164         Label ok;
165         __ Subu(t5, sp, Operand(locals_count * kPointerSize));
166         __ LoadRoot(a2, Heap::kRealStackLimitRootIndex);
167         __ Branch(&ok, hs, t5, Operand(a2));
168         __ InvokeBuiltin(Builtins::STACK_OVERFLOW, CALL_FUNCTION);
169         __ bind(&ok);
170       }
171       __ LoadRoot(t5, Heap::kUndefinedValueRootIndex);
172       int kMaxPushes = FLAG_optimize_for_size ? 4 : 32;
173       if (locals_count >= kMaxPushes) {
174         int loop_iterations = locals_count / kMaxPushes;
175         __ li(a2, Operand(loop_iterations));
176         Label loop_header;
177         __ bind(&loop_header);
178         // Do pushes.
179         __ Subu(sp, sp, Operand(kMaxPushes * kPointerSize));
180         for (int i = 0; i < kMaxPushes; i++) {
181           __ sw(t5, MemOperand(sp, i * kPointerSize));
182         }
183         // Continue loop if not done.
184         __ Subu(a2, a2, Operand(1));
185         __ Branch(&loop_header, ne, a2, Operand(zero_reg));
186       }
187       int remaining = locals_count % kMaxPushes;
188       // Emit the remaining pushes.
189       __ Subu(sp, sp, Operand(remaining * kPointerSize));
190       for (int i  = 0; i < remaining; i++) {
191         __ sw(t5, MemOperand(sp, i * kPointerSize));
192       }
193     }
194   }
195
196   bool function_in_register = true;
197
198   // Possibly allocate a local context.
199   if (info->scope()->num_heap_slots() > 0) {
200     Comment cmnt(masm_, "[ Allocate context");
201     // Argument to NewContext is the function, which is still in a1.
202     bool need_write_barrier = true;
203     int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
204     if (info->scope()->is_script_scope()) {
205       __ push(a1);
206       __ Push(info->scope()->GetScopeInfo(info->isolate()));
207       __ CallRuntime(Runtime::kNewScriptContext, 2);
208     } else if (slots <= FastNewContextStub::kMaximumSlots) {
209       FastNewContextStub stub(isolate(), slots);
210       __ CallStub(&stub);
211       // Result of FastNewContextStub is always in new space.
212       need_write_barrier = false;
213     } else {
214       __ push(a1);
215       __ CallRuntime(Runtime::kNewFunctionContext, 1);
216     }
217     function_in_register = false;
218     // Context is returned in v0. It replaces the context passed to us.
219     // It's saved in the stack and kept live in cp.
220     __ mov(cp, v0);
221     __ sw(v0, MemOperand(fp, StandardFrameConstants::kContextOffset));
222     // Copy any necessary parameters into the context.
223     int num_parameters = info->scope()->num_parameters();
224     int first_parameter = info->scope()->has_this_declaration() ? -1 : 0;
225     for (int i = first_parameter; i < num_parameters; i++) {
226       Variable* var = (i == -1) ? scope()->receiver() : scope()->parameter(i);
227       if (var->IsContextSlot()) {
228         int parameter_offset = StandardFrameConstants::kCallerSPOffset +
229                                  (num_parameters - 1 - i) * kPointerSize;
230         // Load parameter from stack.
231         __ lw(a0, MemOperand(fp, parameter_offset));
232         // Store it in the context.
233         MemOperand target = ContextOperand(cp, var->index());
234         __ sw(a0, target);
235
236         // Update the write barrier.
237         if (need_write_barrier) {
238           __ RecordWriteContextSlot(
239               cp, target.offset(), a0, a3, kRAHasBeenSaved, kDontSaveFPRegs);
240         } else if (FLAG_debug_code) {
241           Label done;
242           __ JumpIfInNewSpace(cp, a0, &done);
243           __ Abort(kExpectedNewSpaceObject);
244           __ bind(&done);
245         }
246       }
247     }
248   }
249
250   // Possibly set up a local binding to the this function which is used in
251   // derived constructors with super calls.
252   Variable* this_function_var = scope()->this_function_var();
253   if (this_function_var != nullptr) {
254     Comment cmnt(masm_, "[ This function");
255     if (!function_in_register) {
256       __ lw(a1, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
257       // The write barrier clobbers register again, keep is marked as such.
258     }
259     SetVar(this_function_var, a1, a2, a3);
260   }
261
262   Variable* new_target_var = scope()->new_target_var();
263   if (new_target_var != nullptr) {
264     Comment cmnt(masm_, "[ new.target");
265
266     // Get the frame pointer for the calling frame.
267     __ lw(a2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
268
269     // Skip the arguments adaptor frame if it exists.
270     Label check_frame_marker;
271     __ lw(a1, MemOperand(a2, StandardFrameConstants::kContextOffset));
272     __ Branch(&check_frame_marker, ne, a1,
273               Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
274     __ lw(a2, MemOperand(a2, StandardFrameConstants::kCallerFPOffset));
275
276     // Check the marker in the calling frame.
277     __ bind(&check_frame_marker);
278     __ lw(a1, MemOperand(a2, StandardFrameConstants::kMarkerOffset));
279
280     Label non_construct_frame, done;
281     __ Branch(&non_construct_frame, ne, a1,
282               Operand(Smi::FromInt(StackFrame::CONSTRUCT)));
283
284     __ lw(v0,
285           MemOperand(a2, ConstructFrameConstants::kOriginalConstructorOffset));
286     __ Branch(&done);
287
288     __ bind(&non_construct_frame);
289     __ LoadRoot(v0, Heap::kUndefinedValueRootIndex);
290     __ bind(&done);
291
292     SetVar(new_target_var, v0, a2, a3);
293   }
294
295   // Possibly allocate RestParameters
296   int rest_index;
297   Variable* rest_param = scope()->rest_parameter(&rest_index);
298   if (rest_param) {
299     Comment cmnt(masm_, "[ Allocate rest parameter array");
300
301     int num_parameters = info->scope()->num_parameters();
302     int offset = num_parameters * kPointerSize;
303
304     __ Addu(a3, fp,
305             Operand(StandardFrameConstants::kCallerSPOffset + offset));
306     __ li(a2, Operand(Smi::FromInt(num_parameters)));
307     __ li(a1, Operand(Smi::FromInt(rest_index)));
308     __ li(a0, Operand(Smi::FromInt(language_mode())));
309     __ Push(a3, a2, a1, a0);
310
311     RestParamAccessStub stub(isolate());
312     __ CallStub(&stub);
313
314     SetVar(rest_param, v0, a1, a2);
315   }
316
317   Variable* arguments = scope()->arguments();
318   if (arguments != NULL) {
319     // Function uses arguments object.
320     Comment cmnt(masm_, "[ Allocate arguments object");
321     if (!function_in_register) {
322       // Load this again, if it's used by the local context below.
323       __ lw(a3, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
324     } else {
325       __ mov(a3, a1);
326     }
327     // Receiver is just before the parameters on the caller's stack.
328     int num_parameters = info->scope()->num_parameters();
329     int offset = num_parameters * kPointerSize;
330     __ Addu(a2, fp,
331            Operand(StandardFrameConstants::kCallerSPOffset + offset));
332     __ li(a1, Operand(Smi::FromInt(num_parameters)));
333     __ Push(a3, a2, a1);
334
335     // Arguments to ArgumentsAccessStub:
336     //   function, receiver address, parameter count.
337     // The stub will rewrite receiever and parameter count if the previous
338     // stack frame was an arguments adapter frame.
339     ArgumentsAccessStub::Type type;
340     if (is_strict(language_mode()) || !is_simple_parameter_list()) {
341       type = ArgumentsAccessStub::NEW_STRICT;
342     } else if (function()->has_duplicate_parameters()) {
343       type = ArgumentsAccessStub::NEW_SLOPPY_SLOW;
344     } else {
345       type = ArgumentsAccessStub::NEW_SLOPPY_FAST;
346     }
347     ArgumentsAccessStub stub(isolate(), type);
348     __ CallStub(&stub);
349
350     SetVar(arguments, v0, a1, a2);
351   }
352
353   if (FLAG_trace) {
354     __ CallRuntime(Runtime::kTraceEnter, 0);
355   }
356
357   // Visit the declarations and body unless there is an illegal
358   // redeclaration.
359   if (scope()->HasIllegalRedeclaration()) {
360     Comment cmnt(masm_, "[ Declarations");
361     scope()->VisitIllegalRedeclaration(this);
362
363   } else {
364     PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS);
365     { Comment cmnt(masm_, "[ Declarations");
366       // For named function expressions, declare the function name as a
367       // constant.
368       if (scope()->is_function_scope() && scope()->function() != NULL) {
369         VariableDeclaration* function = scope()->function();
370         DCHECK(function->proxy()->var()->mode() == CONST ||
371                function->proxy()->var()->mode() == CONST_LEGACY);
372         DCHECK(!function->proxy()->var()->IsUnallocatedOrGlobalSlot());
373         VisitVariableDeclaration(function);
374       }
375       VisitDeclarations(scope()->declarations());
376     }
377
378     { Comment cmnt(masm_, "[ Stack check");
379       PrepareForBailoutForId(BailoutId::Declarations(), NO_REGISTERS);
380       Label ok;
381       __ LoadRoot(at, Heap::kStackLimitRootIndex);
382       __ Branch(&ok, hs, sp, Operand(at));
383       Handle<Code> stack_check = isolate()->builtins()->StackCheck();
384       PredictableCodeSizeScope predictable(masm_,
385           masm_->CallSize(stack_check, RelocInfo::CODE_TARGET));
386       __ Call(stack_check, RelocInfo::CODE_TARGET);
387       __ bind(&ok);
388     }
389
390     { Comment cmnt(masm_, "[ Body");
391       DCHECK(loop_depth() == 0);
392       VisitStatements(function()->body());
393       DCHECK(loop_depth() == 0);
394     }
395   }
396
397   // Always emit a 'return undefined' in case control fell off the end of
398   // the body.
399   { Comment cmnt(masm_, "[ return <undefined>;");
400     __ LoadRoot(v0, Heap::kUndefinedValueRootIndex);
401   }
402   EmitReturnSequence();
403 }
404
405
406 void FullCodeGenerator::ClearAccumulator() {
407   DCHECK(Smi::FromInt(0) == 0);
408   __ mov(v0, zero_reg);
409 }
410
411
412 void FullCodeGenerator::EmitProfilingCounterDecrement(int delta) {
413   __ li(a2, Operand(profiling_counter_));
414   __ lw(a3, FieldMemOperand(a2, Cell::kValueOffset));
415   __ Subu(a3, a3, Operand(Smi::FromInt(delta)));
416   __ sw(a3, FieldMemOperand(a2, Cell::kValueOffset));
417 }
418
419
420 void FullCodeGenerator::EmitProfilingCounterReset() {
421   int reset_value = FLAG_interrupt_budget;
422   if (info_->is_debug()) {
423     // Detect debug break requests as soon as possible.
424     reset_value = FLAG_interrupt_budget >> 4;
425   }
426   __ li(a2, Operand(profiling_counter_));
427   __ li(a3, Operand(Smi::FromInt(reset_value)));
428   __ sw(a3, FieldMemOperand(a2, Cell::kValueOffset));
429 }
430
431
432 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
433                                                 Label* back_edge_target) {
434   // The generated code is used in Deoptimizer::PatchStackCheckCodeAt so we need
435   // to make sure it is constant. Branch may emit a skip-or-jump sequence
436   // instead of the normal Branch. It seems that the "skip" part of that
437   // sequence is about as long as this Branch would be so it is safe to ignore
438   // that.
439   Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm_);
440   Comment cmnt(masm_, "[ Back edge bookkeeping");
441   Label ok;
442   DCHECK(back_edge_target->is_bound());
443   int distance = masm_->SizeOfCodeGeneratedSince(back_edge_target);
444   int weight = Min(kMaxBackEdgeWeight,
445                    Max(1, distance / kCodeSizeMultiplier));
446   EmitProfilingCounterDecrement(weight);
447   __ slt(at, a3, zero_reg);
448   __ beq(at, zero_reg, &ok);
449   // Call will emit a li t9 first, so it is safe to use the delay slot.
450   __ Call(isolate()->builtins()->InterruptCheck(), RelocInfo::CODE_TARGET);
451   // Record a mapping of this PC offset to the OSR id.  This is used to find
452   // the AST id from the unoptimized code in order to use it as a key into
453   // the deoptimization input data found in the optimized code.
454   RecordBackEdge(stmt->OsrEntryId());
455   EmitProfilingCounterReset();
456
457   __ bind(&ok);
458   PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
459   // Record a mapping of the OSR id to this PC.  This is used if the OSR
460   // entry becomes the target of a bailout.  We don't expect it to be, but
461   // we want it to work if it is.
462   PrepareForBailoutForId(stmt->OsrEntryId(), NO_REGISTERS);
463 }
464
465
466 void FullCodeGenerator::EmitReturnSequence() {
467   Comment cmnt(masm_, "[ Return sequence");
468   if (return_label_.is_bound()) {
469     __ Branch(&return_label_);
470   } else {
471     __ bind(&return_label_);
472     if (FLAG_trace) {
473       // Push the return value on the stack as the parameter.
474       // Runtime::TraceExit returns its parameter in v0.
475       __ push(v0);
476       __ CallRuntime(Runtime::kTraceExit, 1);
477     }
478     // Pretend that the exit is a backwards jump to the entry.
479     int weight = 1;
480     if (info_->ShouldSelfOptimize()) {
481       weight = FLAG_interrupt_budget / FLAG_self_opt_count;
482     } else {
483       int distance = masm_->pc_offset();
484       weight = Min(kMaxBackEdgeWeight,
485                    Max(1, distance / kCodeSizeMultiplier));
486     }
487     EmitProfilingCounterDecrement(weight);
488     Label ok;
489     __ Branch(&ok, ge, a3, Operand(zero_reg));
490     __ push(v0);
491     __ Call(isolate()->builtins()->InterruptCheck(),
492             RelocInfo::CODE_TARGET);
493     __ pop(v0);
494     EmitProfilingCounterReset();
495     __ bind(&ok);
496
497     // Make sure that the constant pool is not emitted inside of the return
498     // sequence.
499     { Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm_);
500       // Here we use masm_-> instead of the __ macro to avoid the code coverage
501       // tool from instrumenting as we rely on the code size here.
502       int32_t arg_count = info_->scope()->num_parameters() + 1;
503       int32_t sp_delta = arg_count * kPointerSize;
504       SetReturnPosition(function());
505       masm_->mov(sp, fp);
506       int no_frame_start = masm_->pc_offset();
507       masm_->MultiPop(static_cast<RegList>(fp.bit() | ra.bit()));
508       masm_->Addu(sp, sp, Operand(sp_delta));
509       masm_->Jump(ra);
510       info_->AddNoFrameRange(no_frame_start, masm_->pc_offset());
511     }
512   }
513 }
514
515
516 void FullCodeGenerator::EffectContext::Plug(Variable* var) const {
517   DCHECK(var->IsStackAllocated() || var->IsContextSlot());
518 }
519
520
521 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const {
522   DCHECK(var->IsStackAllocated() || var->IsContextSlot());
523   codegen()->GetVar(result_register(), var);
524 }
525
526
527 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const {
528   DCHECK(var->IsStackAllocated() || var->IsContextSlot());
529   codegen()->GetVar(result_register(), var);
530   __ push(result_register());
531 }
532
533
534 void FullCodeGenerator::TestContext::Plug(Variable* var) const {
535   // For simplicity we always test the accumulator register.
536   codegen()->GetVar(result_register(), var);
537   codegen()->PrepareForBailoutBeforeSplit(condition(), false, NULL, NULL);
538   codegen()->DoTest(this);
539 }
540
541
542 void FullCodeGenerator::EffectContext::Plug(Heap::RootListIndex index) const {
543 }
544
545
546 void FullCodeGenerator::AccumulatorValueContext::Plug(
547     Heap::RootListIndex index) const {
548   __ LoadRoot(result_register(), index);
549 }
550
551
552 void FullCodeGenerator::StackValueContext::Plug(
553     Heap::RootListIndex index) const {
554   __ LoadRoot(result_register(), index);
555   __ push(result_register());
556 }
557
558
559 void FullCodeGenerator::TestContext::Plug(Heap::RootListIndex index) const {
560   codegen()->PrepareForBailoutBeforeSplit(condition(),
561                                           true,
562                                           true_label_,
563                                           false_label_);
564   if (index == Heap::kUndefinedValueRootIndex ||
565       index == Heap::kNullValueRootIndex ||
566       index == Heap::kFalseValueRootIndex) {
567     if (false_label_ != fall_through_) __ Branch(false_label_);
568   } else if (index == Heap::kTrueValueRootIndex) {
569     if (true_label_ != fall_through_) __ Branch(true_label_);
570   } else {
571     __ LoadRoot(result_register(), index);
572     codegen()->DoTest(this);
573   }
574 }
575
576
577 void FullCodeGenerator::EffectContext::Plug(Handle<Object> lit) const {
578 }
579
580
581 void FullCodeGenerator::AccumulatorValueContext::Plug(
582     Handle<Object> lit) const {
583   __ li(result_register(), Operand(lit));
584 }
585
586
587 void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const {
588   // Immediates cannot be pushed directly.
589   __ li(result_register(), Operand(lit));
590   __ push(result_register());
591 }
592
593
594 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const {
595   codegen()->PrepareForBailoutBeforeSplit(condition(),
596                                           true,
597                                           true_label_,
598                                           false_label_);
599   DCHECK(!lit->IsUndetectableObject());  // There are no undetectable literals.
600   if (lit->IsUndefined() || lit->IsNull() || lit->IsFalse()) {
601     if (false_label_ != fall_through_) __ Branch(false_label_);
602   } else if (lit->IsTrue() || lit->IsJSObject()) {
603     if (true_label_ != fall_through_) __ Branch(true_label_);
604   } else if (lit->IsString()) {
605     if (String::cast(*lit)->length() == 0) {
606       if (false_label_ != fall_through_) __ Branch(false_label_);
607     } else {
608       if (true_label_ != fall_through_) __ Branch(true_label_);
609     }
610   } else if (lit->IsSmi()) {
611     if (Smi::cast(*lit)->value() == 0) {
612       if (false_label_ != fall_through_) __ Branch(false_label_);
613     } else {
614       if (true_label_ != fall_through_) __ Branch(true_label_);
615     }
616   } else {
617     // For simplicity we always test the accumulator register.
618     __ li(result_register(), Operand(lit));
619     codegen()->DoTest(this);
620   }
621 }
622
623
624 void FullCodeGenerator::EffectContext::DropAndPlug(int count,
625                                                    Register reg) const {
626   DCHECK(count > 0);
627   __ Drop(count);
628 }
629
630
631 void FullCodeGenerator::AccumulatorValueContext::DropAndPlug(
632     int count,
633     Register reg) const {
634   DCHECK(count > 0);
635   __ Drop(count);
636   __ Move(result_register(), reg);
637 }
638
639
640 void FullCodeGenerator::StackValueContext::DropAndPlug(int count,
641                                                        Register reg) const {
642   DCHECK(count > 0);
643   if (count > 1) __ Drop(count - 1);
644   __ sw(reg, MemOperand(sp, 0));
645 }
646
647
648 void FullCodeGenerator::TestContext::DropAndPlug(int count,
649                                                  Register reg) const {
650   DCHECK(count > 0);
651   // For simplicity we always test the accumulator register.
652   __ Drop(count);
653   __ Move(result_register(), reg);
654   codegen()->PrepareForBailoutBeforeSplit(condition(), false, NULL, NULL);
655   codegen()->DoTest(this);
656 }
657
658
659 void FullCodeGenerator::EffectContext::Plug(Label* materialize_true,
660                                             Label* materialize_false) const {
661   DCHECK(materialize_true == materialize_false);
662   __ bind(materialize_true);
663 }
664
665
666 void FullCodeGenerator::AccumulatorValueContext::Plug(
667     Label* materialize_true,
668     Label* materialize_false) const {
669   Label done;
670   __ bind(materialize_true);
671   __ LoadRoot(result_register(), Heap::kTrueValueRootIndex);
672   __ Branch(&done);
673   __ bind(materialize_false);
674   __ LoadRoot(result_register(), Heap::kFalseValueRootIndex);
675   __ bind(&done);
676 }
677
678
679 void FullCodeGenerator::StackValueContext::Plug(
680     Label* materialize_true,
681     Label* materialize_false) const {
682   Label done;
683   __ bind(materialize_true);
684   __ LoadRoot(at, Heap::kTrueValueRootIndex);
685   // Push the value as the following branch can clobber at in long branch mode.
686   __ push(at);
687   __ Branch(&done);
688   __ bind(materialize_false);
689   __ LoadRoot(at, Heap::kFalseValueRootIndex);
690   __ push(at);
691   __ bind(&done);
692 }
693
694
695 void FullCodeGenerator::TestContext::Plug(Label* materialize_true,
696                                           Label* materialize_false) const {
697   DCHECK(materialize_true == true_label_);
698   DCHECK(materialize_false == false_label_);
699 }
700
701
702 void FullCodeGenerator::EffectContext::Plug(bool flag) const {
703 }
704
705
706 void FullCodeGenerator::AccumulatorValueContext::Plug(bool flag) const {
707   Heap::RootListIndex value_root_index =
708       flag ? Heap::kTrueValueRootIndex : Heap::kFalseValueRootIndex;
709   __ LoadRoot(result_register(), value_root_index);
710 }
711
712
713 void FullCodeGenerator::StackValueContext::Plug(bool flag) const {
714   Heap::RootListIndex value_root_index =
715       flag ? Heap::kTrueValueRootIndex : Heap::kFalseValueRootIndex;
716   __ LoadRoot(at, value_root_index);
717   __ push(at);
718 }
719
720
721 void FullCodeGenerator::TestContext::Plug(bool flag) const {
722   codegen()->PrepareForBailoutBeforeSplit(condition(),
723                                           true,
724                                           true_label_,
725                                           false_label_);
726   if (flag) {
727     if (true_label_ != fall_through_) __ Branch(true_label_);
728   } else {
729     if (false_label_ != fall_through_) __ Branch(false_label_);
730   }
731 }
732
733
734 void FullCodeGenerator::DoTest(Expression* condition,
735                                Label* if_true,
736                                Label* if_false,
737                                Label* fall_through) {
738   __ mov(a0, result_register());
739   Handle<Code> ic = ToBooleanStub::GetUninitialized(isolate());
740   CallIC(ic, condition->test_id());
741   __ mov(at, zero_reg);
742   Split(ne, v0, Operand(at), if_true, if_false, fall_through);
743 }
744
745
746 void FullCodeGenerator::Split(Condition cc,
747                               Register lhs,
748                               const Operand&  rhs,
749                               Label* if_true,
750                               Label* if_false,
751                               Label* fall_through) {
752   if (if_false == fall_through) {
753     __ Branch(if_true, cc, lhs, rhs);
754   } else if (if_true == fall_through) {
755     __ Branch(if_false, NegateCondition(cc), lhs, rhs);
756   } else {
757     __ Branch(if_true, cc, lhs, rhs);
758     __ Branch(if_false);
759   }
760 }
761
762
763 MemOperand FullCodeGenerator::StackOperand(Variable* var) {
764   DCHECK(var->IsStackAllocated());
765   // Offset is negative because higher indexes are at lower addresses.
766   int offset = -var->index() * kPointerSize;
767   // Adjust by a (parameter or local) base offset.
768   if (var->IsParameter()) {
769     offset += (info_->scope()->num_parameters() + 1) * kPointerSize;
770   } else {
771     offset += JavaScriptFrameConstants::kLocal0Offset;
772   }
773   return MemOperand(fp, offset);
774 }
775
776
777 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) {
778   DCHECK(var->IsContextSlot() || var->IsStackAllocated());
779   if (var->IsContextSlot()) {
780     int context_chain_length = scope()->ContextChainLength(var->scope());
781     __ LoadContext(scratch, context_chain_length);
782     return ContextOperand(scratch, var->index());
783   } else {
784     return StackOperand(var);
785   }
786 }
787
788
789 void FullCodeGenerator::GetVar(Register dest, Variable* var) {
790   // Use destination as scratch.
791   MemOperand location = VarOperand(var, dest);
792   __ lw(dest, location);
793 }
794
795
796 void FullCodeGenerator::SetVar(Variable* var,
797                                Register src,
798                                Register scratch0,
799                                Register scratch1) {
800   DCHECK(var->IsContextSlot() || var->IsStackAllocated());
801   DCHECK(!scratch0.is(src));
802   DCHECK(!scratch0.is(scratch1));
803   DCHECK(!scratch1.is(src));
804   MemOperand location = VarOperand(var, scratch0);
805   __ sw(src, location);
806   // Emit the write barrier code if the location is in the heap.
807   if (var->IsContextSlot()) {
808     __ RecordWriteContextSlot(scratch0,
809                               location.offset(),
810                               src,
811                               scratch1,
812                               kRAHasBeenSaved,
813                               kDontSaveFPRegs);
814   }
815 }
816
817
818 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
819                                                      bool should_normalize,
820                                                      Label* if_true,
821                                                      Label* if_false) {
822   // Only prepare for bailouts before splits if we're in a test
823   // context. Otherwise, we let the Visit function deal with the
824   // preparation to avoid preparing with the same AST id twice.
825   if (!context()->IsTest() || !info_->IsOptimizable()) return;
826
827   Label skip;
828   if (should_normalize) __ Branch(&skip);
829   PrepareForBailout(expr, TOS_REG);
830   if (should_normalize) {
831     __ LoadRoot(t0, Heap::kTrueValueRootIndex);
832     Split(eq, a0, Operand(t0), if_true, if_false, NULL);
833     __ bind(&skip);
834   }
835 }
836
837
838 void FullCodeGenerator::EmitDebugCheckDeclarationContext(Variable* variable) {
839   // The variable in the declaration always resides in the current function
840   // context.
841   DCHECK_EQ(0, scope()->ContextChainLength(variable->scope()));
842   if (generate_debug_code_) {
843     // Check that we're not inside a with or catch context.
844     __ lw(a1, FieldMemOperand(cp, HeapObject::kMapOffset));
845     __ LoadRoot(t0, Heap::kWithContextMapRootIndex);
846     __ Check(ne, kDeclarationInWithContext,
847         a1, Operand(t0));
848     __ LoadRoot(t0, Heap::kCatchContextMapRootIndex);
849     __ Check(ne, kDeclarationInCatchContext,
850         a1, Operand(t0));
851   }
852 }
853
854
855 void FullCodeGenerator::VisitVariableDeclaration(
856     VariableDeclaration* declaration) {
857   // If it was not possible to allocate the variable at compile time, we
858   // need to "declare" it at runtime to make sure it actually exists in the
859   // local context.
860   VariableProxy* proxy = declaration->proxy();
861   VariableMode mode = declaration->mode();
862   Variable* variable = proxy->var();
863   bool hole_init = mode == LET || mode == CONST || mode == CONST_LEGACY;
864   switch (variable->location()) {
865     case VariableLocation::GLOBAL:
866     case VariableLocation::UNALLOCATED:
867       globals_->Add(variable->name(), zone());
868       globals_->Add(variable->binding_needs_init()
869                         ? isolate()->factory()->the_hole_value()
870                         : isolate()->factory()->undefined_value(),
871                     zone());
872       break;
873
874     case VariableLocation::PARAMETER:
875     case VariableLocation::LOCAL:
876       if (hole_init) {
877         Comment cmnt(masm_, "[ VariableDeclaration");
878         __ LoadRoot(t0, Heap::kTheHoleValueRootIndex);
879         __ sw(t0, StackOperand(variable));
880       }
881       break;
882
883     case VariableLocation::CONTEXT:
884       if (hole_init) {
885         Comment cmnt(masm_, "[ VariableDeclaration");
886         EmitDebugCheckDeclarationContext(variable);
887           __ LoadRoot(at, Heap::kTheHoleValueRootIndex);
888           __ sw(at, ContextOperand(cp, variable->index()));
889           // No write barrier since the_hole_value is in old space.
890           PrepareForBailoutForId(proxy->id(), NO_REGISTERS);
891       }
892       break;
893
894     case VariableLocation::LOOKUP: {
895       Comment cmnt(masm_, "[ VariableDeclaration");
896       __ li(a2, Operand(variable->name()));
897       // Declaration nodes are always introduced in one of four modes.
898       DCHECK(IsDeclaredVariableMode(mode));
899       PropertyAttributes attr =
900           IsImmutableVariableMode(mode) ? READ_ONLY : NONE;
901       __ li(a1, Operand(Smi::FromInt(attr)));
902       // Push initial value, if any.
903       // Note: For variables we must not push an initial value (such as
904       // 'undefined') because we may have a (legal) redeclaration and we
905       // must not destroy the current value.
906       if (hole_init) {
907         __ LoadRoot(a0, Heap::kTheHoleValueRootIndex);
908         __ Push(cp, a2, a1, a0);
909       } else {
910         DCHECK(Smi::FromInt(0) == 0);
911         __ mov(a0, zero_reg);  // Smi::FromInt(0) indicates no initial value.
912         __ Push(cp, a2, a1, a0);
913       }
914       __ CallRuntime(Runtime::kDeclareLookupSlot, 4);
915       break;
916     }
917   }
918 }
919
920
921 void FullCodeGenerator::VisitFunctionDeclaration(
922     FunctionDeclaration* declaration) {
923   VariableProxy* proxy = declaration->proxy();
924   Variable* variable = proxy->var();
925   switch (variable->location()) {
926     case VariableLocation::GLOBAL:
927     case VariableLocation::UNALLOCATED: {
928       globals_->Add(variable->name(), zone());
929       Handle<SharedFunctionInfo> function =
930           Compiler::GetSharedFunctionInfo(declaration->fun(), script(), info_);
931       // Check for stack-overflow exception.
932       if (function.is_null()) return SetStackOverflow();
933       globals_->Add(function, zone());
934       break;
935     }
936
937     case VariableLocation::PARAMETER:
938     case VariableLocation::LOCAL: {
939       Comment cmnt(masm_, "[ FunctionDeclaration");
940       VisitForAccumulatorValue(declaration->fun());
941       __ sw(result_register(), StackOperand(variable));
942       break;
943     }
944
945     case VariableLocation::CONTEXT: {
946       Comment cmnt(masm_, "[ FunctionDeclaration");
947       EmitDebugCheckDeclarationContext(variable);
948       VisitForAccumulatorValue(declaration->fun());
949       __ sw(result_register(), ContextOperand(cp, variable->index()));
950       int offset = Context::SlotOffset(variable->index());
951       // We know that we have written a function, which is not a smi.
952       __ RecordWriteContextSlot(cp,
953                                 offset,
954                                 result_register(),
955                                 a2,
956                                 kRAHasBeenSaved,
957                                 kDontSaveFPRegs,
958                                 EMIT_REMEMBERED_SET,
959                                 OMIT_SMI_CHECK);
960       PrepareForBailoutForId(proxy->id(), NO_REGISTERS);
961       break;
962     }
963
964     case VariableLocation::LOOKUP: {
965       Comment cmnt(masm_, "[ FunctionDeclaration");
966       __ li(a2, Operand(variable->name()));
967       __ li(a1, Operand(Smi::FromInt(NONE)));
968       __ Push(cp, a2, a1);
969       // Push initial value for function declaration.
970       VisitForStackValue(declaration->fun());
971       __ CallRuntime(Runtime::kDeclareLookupSlot, 4);
972       break;
973     }
974   }
975 }
976
977
978 void FullCodeGenerator::VisitImportDeclaration(ImportDeclaration* declaration) {
979   VariableProxy* proxy = declaration->proxy();
980   Variable* variable = proxy->var();
981   switch (variable->location()) {
982     case VariableLocation::GLOBAL:
983     case VariableLocation::UNALLOCATED:
984       // TODO(rossberg)
985       break;
986
987     case VariableLocation::CONTEXT: {
988       Comment cmnt(masm_, "[ ImportDeclaration");
989       EmitDebugCheckDeclarationContext(variable);
990       // TODO(rossberg)
991       break;
992     }
993
994     case VariableLocation::PARAMETER:
995     case VariableLocation::LOCAL:
996     case VariableLocation::LOOKUP:
997       UNREACHABLE();
998   }
999 }
1000
1001
1002 void FullCodeGenerator::VisitExportDeclaration(ExportDeclaration* declaration) {
1003   // TODO(rossberg)
1004 }
1005
1006
1007 void FullCodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) {
1008   // Call the runtime to declare the globals.
1009   // The context is the first argument.
1010   __ li(a1, Operand(pairs));
1011   __ li(a0, Operand(Smi::FromInt(DeclareGlobalsFlags())));
1012   __ Push(cp, a1, a0);
1013   __ CallRuntime(Runtime::kDeclareGlobals, 3);
1014   // Return value is ignored.
1015 }
1016
1017
1018 void FullCodeGenerator::DeclareModules(Handle<FixedArray> descriptions) {
1019   // Call the runtime to declare the modules.
1020   __ Push(descriptions);
1021   __ CallRuntime(Runtime::kDeclareModules, 1);
1022   // Return value is ignored.
1023 }
1024
1025
1026 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
1027   Comment cmnt(masm_, "[ SwitchStatement");
1028   Breakable nested_statement(this, stmt);
1029   SetStatementPosition(stmt);
1030
1031   // Keep the switch value on the stack until a case matches.
1032   VisitForStackValue(stmt->tag());
1033   PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
1034
1035   ZoneList<CaseClause*>* clauses = stmt->cases();
1036   CaseClause* default_clause = NULL;  // Can occur anywhere in the list.
1037
1038   Label next_test;  // Recycled for each test.
1039   // Compile all the tests with branches to their bodies.
1040   for (int i = 0; i < clauses->length(); i++) {
1041     CaseClause* clause = clauses->at(i);
1042     clause->body_target()->Unuse();
1043
1044     // The default is not a test, but remember it as final fall through.
1045     if (clause->is_default()) {
1046       default_clause = clause;
1047       continue;
1048     }
1049
1050     Comment cmnt(masm_, "[ Case comparison");
1051     __ bind(&next_test);
1052     next_test.Unuse();
1053
1054     // Compile the label expression.
1055     VisitForAccumulatorValue(clause->label());
1056     __ mov(a0, result_register());  // CompareStub requires args in a0, a1.
1057
1058     // Perform the comparison as if via '==='.
1059     __ lw(a1, MemOperand(sp, 0));  // Switch value.
1060     bool inline_smi_code = ShouldInlineSmiCase(Token::EQ_STRICT);
1061     JumpPatchSite patch_site(masm_);
1062     if (inline_smi_code) {
1063       Label slow_case;
1064       __ or_(a2, a1, a0);
1065       patch_site.EmitJumpIfNotSmi(a2, &slow_case);
1066
1067       __ Branch(&next_test, ne, a1, Operand(a0));
1068       __ Drop(1);  // Switch value is no longer needed.
1069       __ Branch(clause->body_target());
1070
1071       __ bind(&slow_case);
1072     }
1073
1074     // Record position before stub call for type feedback.
1075     SetExpressionPosition(clause);
1076     Handle<Code> ic = CodeFactory::CompareIC(isolate(), Token::EQ_STRICT,
1077                                              strength(language_mode())).code();
1078     CallIC(ic, clause->CompareId());
1079     patch_site.EmitPatchInfo();
1080
1081     Label skip;
1082     __ Branch(&skip);
1083     PrepareForBailout(clause, TOS_REG);
1084     __ LoadRoot(at, Heap::kTrueValueRootIndex);
1085     __ Branch(&next_test, ne, v0, Operand(at));
1086     __ Drop(1);
1087     __ Branch(clause->body_target());
1088     __ bind(&skip);
1089
1090     __ Branch(&next_test, ne, v0, Operand(zero_reg));
1091     __ Drop(1);  // Switch value is no longer needed.
1092     __ Branch(clause->body_target());
1093   }
1094
1095   // Discard the test value and jump to the default if present, otherwise to
1096   // the end of the statement.
1097   __ bind(&next_test);
1098   __ Drop(1);  // Switch value is no longer needed.
1099   if (default_clause == NULL) {
1100     __ Branch(nested_statement.break_label());
1101   } else {
1102     __ Branch(default_clause->body_target());
1103   }
1104
1105   // Compile all the case bodies.
1106   for (int i = 0; i < clauses->length(); i++) {
1107     Comment cmnt(masm_, "[ Case body");
1108     CaseClause* clause = clauses->at(i);
1109     __ bind(clause->body_target());
1110     PrepareForBailoutForId(clause->EntryId(), NO_REGISTERS);
1111     VisitStatements(clause->statements());
1112   }
1113
1114   __ bind(nested_statement.break_label());
1115   PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
1116 }
1117
1118
1119 void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
1120   Comment cmnt(masm_, "[ ForInStatement");
1121   SetStatementPosition(stmt, SKIP_BREAK);
1122
1123   FeedbackVectorSlot slot = stmt->ForInFeedbackSlot();
1124
1125   Label loop, exit;
1126   ForIn loop_statement(this, stmt);
1127   increment_loop_depth();
1128
1129   // Get the object to enumerate over. If the object is null or undefined, skip
1130   // over the loop.  See ECMA-262 version 5, section 12.6.4.
1131   SetExpressionAsStatementPosition(stmt->enumerable());
1132   VisitForAccumulatorValue(stmt->enumerable());
1133   __ mov(a0, result_register());  // Result as param to InvokeBuiltin below.
1134   __ LoadRoot(at, Heap::kUndefinedValueRootIndex);
1135   __ Branch(&exit, eq, a0, Operand(at));
1136   Register null_value = t1;
1137   __ LoadRoot(null_value, Heap::kNullValueRootIndex);
1138   __ Branch(&exit, eq, a0, Operand(null_value));
1139   PrepareForBailoutForId(stmt->PrepareId(), TOS_REG);
1140   __ mov(a0, v0);
1141   // Convert the object to a JS object.
1142   Label convert, done_convert;
1143   __ JumpIfSmi(a0, &convert);
1144   __ GetObjectType(a0, a1, a1);
1145   __ Branch(&done_convert, ge, a1, Operand(FIRST_SPEC_OBJECT_TYPE));
1146   __ bind(&convert);
1147   __ push(a0);
1148   __ InvokeBuiltin(Builtins::TO_OBJECT, CALL_FUNCTION);
1149   __ mov(a0, v0);
1150   __ bind(&done_convert);
1151   PrepareForBailoutForId(stmt->ToObjectId(), TOS_REG);
1152   __ push(a0);
1153
1154   // Check for proxies.
1155   Label call_runtime;
1156   STATIC_ASSERT(FIRST_JS_PROXY_TYPE == FIRST_SPEC_OBJECT_TYPE);
1157   __ GetObjectType(a0, a1, a1);
1158   __ Branch(&call_runtime, le, a1, Operand(LAST_JS_PROXY_TYPE));
1159
1160   // Check cache validity in generated code. This is a fast case for
1161   // the JSObject::IsSimpleEnum cache validity checks. If we cannot
1162   // guarantee cache validity, call the runtime system to check cache
1163   // validity or get the property names in a fixed array.
1164   __ CheckEnumCache(null_value, &call_runtime);
1165
1166   // The enum cache is valid.  Load the map of the object being
1167   // iterated over and use the cache for the iteration.
1168   Label use_cache;
1169   __ lw(v0, FieldMemOperand(a0, HeapObject::kMapOffset));
1170   __ Branch(&use_cache);
1171
1172   // Get the set of properties to enumerate.
1173   __ bind(&call_runtime);
1174   __ push(a0);  // Duplicate the enumerable object on the stack.
1175   __ CallRuntime(Runtime::kGetPropertyNamesFast, 1);
1176   PrepareForBailoutForId(stmt->EnumId(), TOS_REG);
1177
1178   // If we got a map from the runtime call, we can do a fast
1179   // modification check. Otherwise, we got a fixed array, and we have
1180   // to do a slow check.
1181   Label fixed_array;
1182   __ lw(a2, FieldMemOperand(v0, HeapObject::kMapOffset));
1183   __ LoadRoot(at, Heap::kMetaMapRootIndex);
1184   __ Branch(&fixed_array, ne, a2, Operand(at));
1185
1186   // We got a map in register v0. Get the enumeration cache from it.
1187   Label no_descriptors;
1188   __ bind(&use_cache);
1189
1190   __ EnumLength(a1, v0);
1191   __ Branch(&no_descriptors, eq, a1, Operand(Smi::FromInt(0)));
1192
1193   __ LoadInstanceDescriptors(v0, a2);
1194   __ lw(a2, FieldMemOperand(a2, DescriptorArray::kEnumCacheOffset));
1195   __ lw(a2, FieldMemOperand(a2, DescriptorArray::kEnumCacheBridgeCacheOffset));
1196
1197   // Set up the four remaining stack slots.
1198   __ li(a0, Operand(Smi::FromInt(0)));
1199   // Push map, enumeration cache, enumeration cache length (as smi) and zero.
1200   __ Push(v0, a2, a1, a0);
1201   __ jmp(&loop);
1202
1203   __ bind(&no_descriptors);
1204   __ Drop(1);
1205   __ jmp(&exit);
1206
1207   // We got a fixed array in register v0. Iterate through that.
1208   Label non_proxy;
1209   __ bind(&fixed_array);
1210
1211   __ li(a1, FeedbackVector());
1212   __ li(a2, Operand(TypeFeedbackVector::MegamorphicSentinel(isolate())));
1213   int vector_index = FeedbackVector()->GetIndex(slot);
1214   __ sw(a2, FieldMemOperand(a1, FixedArray::OffsetOfElementAt(vector_index)));
1215
1216   __ li(a1, Operand(Smi::FromInt(1)));  // Smi indicates slow check
1217   __ lw(a2, MemOperand(sp, 0 * kPointerSize));  // Get enumerated object
1218   STATIC_ASSERT(FIRST_JS_PROXY_TYPE == FIRST_SPEC_OBJECT_TYPE);
1219   __ GetObjectType(a2, a3, a3);
1220   __ Branch(&non_proxy, gt, a3, Operand(LAST_JS_PROXY_TYPE));
1221   __ li(a1, Operand(Smi::FromInt(0)));  // Zero indicates proxy
1222   __ bind(&non_proxy);
1223   __ Push(a1, v0);  // Smi and array
1224   __ lw(a1, FieldMemOperand(v0, FixedArray::kLengthOffset));
1225   __ li(a0, Operand(Smi::FromInt(0)));
1226   __ Push(a1, a0);  // Fixed array length (as smi) and initial index.
1227
1228   // Generate code for doing the condition check.
1229   PrepareForBailoutForId(stmt->BodyId(), NO_REGISTERS);
1230   __ bind(&loop);
1231   SetExpressionAsStatementPosition(stmt->each());
1232
1233   // Load the current count to a0, load the length to a1.
1234   __ lw(a0, MemOperand(sp, 0 * kPointerSize));
1235   __ lw(a1, MemOperand(sp, 1 * kPointerSize));
1236   __ Branch(loop_statement.break_label(), hs, a0, Operand(a1));
1237
1238   // Get the current entry of the array into register a3.
1239   __ lw(a2, MemOperand(sp, 2 * kPointerSize));
1240   __ Addu(a2, a2, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
1241   __ sll(t0, a0, kPointerSizeLog2 - kSmiTagSize);
1242   __ addu(t0, a2, t0);  // Array base + scaled (smi) index.
1243   __ lw(a3, MemOperand(t0));  // Current entry.
1244
1245   // Get the expected map from the stack or a smi in the
1246   // permanent slow case into register a2.
1247   __ lw(a2, MemOperand(sp, 3 * kPointerSize));
1248
1249   // Check if the expected map still matches that of the enumerable.
1250   // If not, we may have to filter the key.
1251   Label update_each;
1252   __ lw(a1, MemOperand(sp, 4 * kPointerSize));
1253   __ lw(t0, FieldMemOperand(a1, HeapObject::kMapOffset));
1254   __ Branch(&update_each, eq, t0, Operand(a2));
1255
1256   // For proxies, no filtering is done.
1257   // TODO(rossberg): What if only a prototype is a proxy? Not specified yet.
1258   DCHECK_EQ(static_cast<Smi*>(0), Smi::FromInt(0));
1259   __ Branch(&update_each, eq, a2, Operand(zero_reg));
1260
1261   // Convert the entry to a string or (smi) 0 if it isn't a property
1262   // any more. If the property has been removed while iterating, we
1263   // just skip it.
1264   __ Push(a1, a3);  // Enumerable and current entry.
1265   __ CallRuntime(Runtime::kForInFilter, 2);
1266   PrepareForBailoutForId(stmt->FilterId(), TOS_REG);
1267   __ mov(a3, result_register());
1268   __ LoadRoot(at, Heap::kUndefinedValueRootIndex);
1269   __ Branch(loop_statement.continue_label(), eq, a3, Operand(at));
1270
1271   // Update the 'each' property or variable from the possibly filtered
1272   // entry in register a3.
1273   __ bind(&update_each);
1274   __ mov(result_register(), a3);
1275   // Perform the assignment as if via '='.
1276   { EffectContext context(this);
1277     EmitAssignment(stmt->each(), stmt->EachFeedbackSlot());
1278     PrepareForBailoutForId(stmt->AssignmentId(), NO_REGISTERS);
1279   }
1280
1281   // Generate code for the body of the loop.
1282   Visit(stmt->body());
1283
1284   // Generate code for the going to the next element by incrementing
1285   // the index (smi) stored on top of the stack.
1286   __ bind(loop_statement.continue_label());
1287   __ pop(a0);
1288   __ Addu(a0, a0, Operand(Smi::FromInt(1)));
1289   __ push(a0);
1290
1291   EmitBackEdgeBookkeeping(stmt, &loop);
1292   __ Branch(&loop);
1293
1294   // Remove the pointers stored on the stack.
1295   __ bind(loop_statement.break_label());
1296   __ Drop(5);
1297
1298   // Exit and decrement the loop depth.
1299   PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
1300   __ bind(&exit);
1301   decrement_loop_depth();
1302 }
1303
1304
1305 void FullCodeGenerator::EmitNewClosure(Handle<SharedFunctionInfo> info,
1306                                        bool pretenure) {
1307   // Use the fast case closure allocation code that allocates in new
1308   // space for nested functions that don't need literals cloning. If
1309   // we're running with the --always-opt or the --prepare-always-opt
1310   // flag, we need to use the runtime function so that the new function
1311   // we are creating here gets a chance to have its code optimized and
1312   // doesn't just get a copy of the existing unoptimized code.
1313   if (!FLAG_always_opt &&
1314       !FLAG_prepare_always_opt &&
1315       !pretenure &&
1316       scope()->is_function_scope() &&
1317       info->num_literals() == 0) {
1318     FastNewClosureStub stub(isolate(), info->language_mode(), info->kind());
1319     __ li(a2, Operand(info));
1320     __ CallStub(&stub);
1321   } else {
1322     __ li(a0, Operand(info));
1323     __ LoadRoot(a1, pretenure ? Heap::kTrueValueRootIndex
1324                               : Heap::kFalseValueRootIndex);
1325     __ Push(cp, a0, a1);
1326     __ CallRuntime(Runtime::kNewClosure, 3);
1327   }
1328   context()->Plug(v0);
1329 }
1330
1331
1332 void FullCodeGenerator::VisitVariableProxy(VariableProxy* expr) {
1333   Comment cmnt(masm_, "[ VariableProxy");
1334   EmitVariableLoad(expr);
1335 }
1336
1337
1338 void FullCodeGenerator::EmitSetHomeObjectIfNeeded(Expression* initializer,
1339                                                   int offset,
1340                                                   FeedbackVectorICSlot slot) {
1341   if (NeedsHomeObject(initializer)) {
1342     __ lw(StoreDescriptor::ReceiverRegister(), MemOperand(sp));
1343     __ li(StoreDescriptor::NameRegister(),
1344           Operand(isolate()->factory()->home_object_symbol()));
1345     __ lw(StoreDescriptor::ValueRegister(),
1346           MemOperand(sp, offset * kPointerSize));
1347     if (FLAG_vector_stores) EmitLoadStoreICSlot(slot);
1348     CallStoreIC();
1349   }
1350 }
1351
1352
1353 void FullCodeGenerator::EmitLoadGlobalCheckExtensions(VariableProxy* proxy,
1354                                                       TypeofMode typeof_mode,
1355                                                       Label* slow) {
1356   Register current = cp;
1357   Register next = a1;
1358   Register temp = a2;
1359
1360   Scope* s = scope();
1361   while (s != NULL) {
1362     if (s->num_heap_slots() > 0) {
1363       if (s->calls_sloppy_eval()) {
1364         // Check that extension is NULL.
1365         __ lw(temp, ContextOperand(current, Context::EXTENSION_INDEX));
1366         __ Branch(slow, ne, temp, Operand(zero_reg));
1367       }
1368       // Load next context in chain.
1369       __ lw(next, ContextOperand(current, Context::PREVIOUS_INDEX));
1370       // Walk the rest of the chain without clobbering cp.
1371       current = next;
1372     }
1373     // If no outer scope calls eval, we do not need to check more
1374     // context extensions.
1375     if (!s->outer_scope_calls_sloppy_eval() || s->is_eval_scope()) break;
1376     s = s->outer_scope();
1377   }
1378
1379   if (s->is_eval_scope()) {
1380     Label loop, fast;
1381     if (!current.is(next)) {
1382       __ Move(next, current);
1383     }
1384     __ bind(&loop);
1385     // Terminate at native context.
1386     __ lw(temp, FieldMemOperand(next, HeapObject::kMapOffset));
1387     __ LoadRoot(t0, Heap::kNativeContextMapRootIndex);
1388     __ Branch(&fast, eq, temp, Operand(t0));
1389     // Check that extension is NULL.
1390     __ lw(temp, ContextOperand(next, Context::EXTENSION_INDEX));
1391     __ Branch(slow, ne, temp, Operand(zero_reg));
1392     // Load next context in chain.
1393     __ lw(next, ContextOperand(next, Context::PREVIOUS_INDEX));
1394     __ Branch(&loop);
1395     __ bind(&fast);
1396   }
1397
1398   // All extension objects were empty and it is safe to use a normal global
1399   // load machinery.
1400   EmitGlobalVariableLoad(proxy, typeof_mode);
1401 }
1402
1403
1404 MemOperand FullCodeGenerator::ContextSlotOperandCheckExtensions(Variable* var,
1405                                                                 Label* slow) {
1406   DCHECK(var->IsContextSlot());
1407   Register context = cp;
1408   Register next = a3;
1409   Register temp = t0;
1410
1411   for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
1412     if (s->num_heap_slots() > 0) {
1413       if (s->calls_sloppy_eval()) {
1414         // Check that extension is NULL.
1415         __ lw(temp, ContextOperand(context, Context::EXTENSION_INDEX));
1416         __ Branch(slow, ne, temp, Operand(zero_reg));
1417       }
1418       __ lw(next, ContextOperand(context, Context::PREVIOUS_INDEX));
1419       // Walk the rest of the chain without clobbering cp.
1420       context = next;
1421     }
1422   }
1423   // Check that last extension is NULL.
1424   __ lw(temp, ContextOperand(context, Context::EXTENSION_INDEX));
1425   __ Branch(slow, ne, temp, Operand(zero_reg));
1426
1427   // This function is used only for loads, not stores, so it's safe to
1428   // return an cp-based operand (the write barrier cannot be allowed to
1429   // destroy the cp register).
1430   return ContextOperand(context, var->index());
1431 }
1432
1433
1434 void FullCodeGenerator::EmitDynamicLookupFastCase(VariableProxy* proxy,
1435                                                   TypeofMode typeof_mode,
1436                                                   Label* slow, Label* done) {
1437   // Generate fast-case code for variables that might be shadowed by
1438   // eval-introduced variables.  Eval is used a lot without
1439   // introducing variables.  In those cases, we do not want to
1440   // perform a runtime call for all variables in the scope
1441   // containing the eval.
1442   Variable* var = proxy->var();
1443   if (var->mode() == DYNAMIC_GLOBAL) {
1444     EmitLoadGlobalCheckExtensions(proxy, typeof_mode, slow);
1445     __ Branch(done);
1446   } else if (var->mode() == DYNAMIC_LOCAL) {
1447     Variable* local = var->local_if_not_shadowed();
1448     __ lw(v0, ContextSlotOperandCheckExtensions(local, slow));
1449     if (local->mode() == LET || local->mode() == CONST ||
1450         local->mode() == CONST_LEGACY) {
1451       __ LoadRoot(at, Heap::kTheHoleValueRootIndex);
1452       __ subu(at, v0, at);  // Sub as compare: at == 0 on eq.
1453       if (local->mode() == CONST_LEGACY) {
1454         __ LoadRoot(a0, Heap::kUndefinedValueRootIndex);
1455         __ Movz(v0, a0, at);  // Conditional move: return Undefined if TheHole.
1456       } else {  // LET || CONST
1457         __ Branch(done, ne, at, Operand(zero_reg));
1458         __ li(a0, Operand(var->name()));
1459         __ push(a0);
1460         __ CallRuntime(Runtime::kThrowReferenceError, 1);
1461       }
1462     }
1463     __ Branch(done);
1464   }
1465 }
1466
1467
1468 void FullCodeGenerator::EmitGlobalVariableLoad(VariableProxy* proxy,
1469                                                TypeofMode typeof_mode) {
1470   Variable* var = proxy->var();
1471   DCHECK(var->IsUnallocatedOrGlobalSlot() ||
1472          (var->IsLookupSlot() && var->mode() == DYNAMIC_GLOBAL));
1473   if (var->IsGlobalSlot()) {
1474     DCHECK(var->index() > 0);
1475     DCHECK(var->IsStaticGlobalObjectProperty());
1476     // Each var occupies two slots in the context: for reads and writes.
1477     int slot_index = var->index();
1478     int depth = scope()->ContextChainLength(var->scope());
1479     __ li(LoadGlobalViaContextDescriptor::DepthRegister(),
1480           Operand(Smi::FromInt(depth)));
1481     __ li(LoadGlobalViaContextDescriptor::SlotRegister(),
1482           Operand(Smi::FromInt(slot_index)));
1483     __ li(LoadGlobalViaContextDescriptor::NameRegister(), Operand(var->name()));
1484     LoadGlobalViaContextStub stub(isolate(), depth);
1485     __ CallStub(&stub);
1486
1487   } else {
1488     __ lw(LoadDescriptor::ReceiverRegister(), GlobalObjectOperand());
1489     __ li(LoadDescriptor::NameRegister(), Operand(var->name()));
1490     __ li(LoadDescriptor::SlotRegister(),
1491           Operand(SmiFromSlot(proxy->VariableFeedbackSlot())));
1492     CallLoadIC(typeof_mode);
1493   }
1494 }
1495
1496
1497 void FullCodeGenerator::EmitVariableLoad(VariableProxy* proxy,
1498                                          TypeofMode typeof_mode) {
1499   // Record position before possible IC call.
1500   SetExpressionPosition(proxy);
1501   PrepareForBailoutForId(proxy->BeforeId(), NO_REGISTERS);
1502   Variable* var = proxy->var();
1503
1504   // Three cases: global variables, lookup variables, and all other types of
1505   // variables.
1506   switch (var->location()) {
1507     case VariableLocation::GLOBAL:
1508     case VariableLocation::UNALLOCATED: {
1509       Comment cmnt(masm_, "[ Global variable");
1510       EmitGlobalVariableLoad(proxy, typeof_mode);
1511       context()->Plug(v0);
1512       break;
1513     }
1514
1515     case VariableLocation::PARAMETER:
1516     case VariableLocation::LOCAL:
1517     case VariableLocation::CONTEXT: {
1518       DCHECK_EQ(NOT_INSIDE_TYPEOF, typeof_mode);
1519       Comment cmnt(masm_, var->IsContextSlot() ? "[ Context variable"
1520                                                : "[ Stack variable");
1521       if (var->binding_needs_init()) {
1522         // var->scope() may be NULL when the proxy is located in eval code and
1523         // refers to a potential outside binding. Currently those bindings are
1524         // always looked up dynamically, i.e. in that case
1525         //     var->location() == LOOKUP.
1526         // always holds.
1527         DCHECK(var->scope() != NULL);
1528
1529         // Check if the binding really needs an initialization check. The check
1530         // can be skipped in the following situation: we have a LET or CONST
1531         // binding in harmony mode, both the Variable and the VariableProxy have
1532         // the same declaration scope (i.e. they are both in global code, in the
1533         // same function or in the same eval code) and the VariableProxy is in
1534         // the source physically located after the initializer of the variable.
1535         //
1536         // We cannot skip any initialization checks for CONST in non-harmony
1537         // mode because const variables may be declared but never initialized:
1538         //   if (false) { const x; }; var y = x;
1539         //
1540         // The condition on the declaration scopes is a conservative check for
1541         // nested functions that access a binding and are called before the
1542         // binding is initialized:
1543         //   function() { f(); let x = 1; function f() { x = 2; } }
1544         //
1545         bool skip_init_check;
1546         if (var->scope()->DeclarationScope() != scope()->DeclarationScope()) {
1547           skip_init_check = false;
1548         } else if (var->is_this()) {
1549           CHECK(info_->function() != nullptr &&
1550                 (info_->function()->kind() & kSubclassConstructor) != 0);
1551           // TODO(dslomov): implement 'this' hole check elimination.
1552           skip_init_check = false;
1553         } else {
1554           // Check that we always have valid source position.
1555           DCHECK(var->initializer_position() != RelocInfo::kNoPosition);
1556           DCHECK(proxy->position() != RelocInfo::kNoPosition);
1557           skip_init_check = var->mode() != CONST_LEGACY &&
1558               var->initializer_position() < proxy->position();
1559         }
1560
1561         if (!skip_init_check) {
1562           // Let and const need a read barrier.
1563           GetVar(v0, var);
1564           __ LoadRoot(at, Heap::kTheHoleValueRootIndex);
1565           __ subu(at, v0, at);  // Sub as compare: at == 0 on eq.
1566           if (var->mode() == LET || var->mode() == CONST) {
1567             // Throw a reference error when using an uninitialized let/const
1568             // binding in harmony mode.
1569             Label done;
1570             __ Branch(&done, ne, at, Operand(zero_reg));
1571             __ li(a0, Operand(var->name()));
1572             __ push(a0);
1573             __ CallRuntime(Runtime::kThrowReferenceError, 1);
1574             __ bind(&done);
1575           } else {
1576             // Uninitalized const bindings outside of harmony mode are unholed.
1577             DCHECK(var->mode() == CONST_LEGACY);
1578             __ LoadRoot(a0, Heap::kUndefinedValueRootIndex);
1579             __ Movz(v0, a0, at);  // Conditional move: Undefined if TheHole.
1580           }
1581           context()->Plug(v0);
1582           break;
1583         }
1584       }
1585       context()->Plug(var);
1586       break;
1587     }
1588
1589     case VariableLocation::LOOKUP: {
1590       Comment cmnt(masm_, "[ Lookup variable");
1591       Label done, slow;
1592       // Generate code for loading from variables potentially shadowed
1593       // by eval-introduced variables.
1594       EmitDynamicLookupFastCase(proxy, typeof_mode, &slow, &done);
1595       __ bind(&slow);
1596       __ li(a1, Operand(var->name()));
1597       __ Push(cp, a1);  // Context and name.
1598       Runtime::FunctionId function_id =
1599           typeof_mode == NOT_INSIDE_TYPEOF
1600               ? Runtime::kLoadLookupSlot
1601               : Runtime::kLoadLookupSlotNoReferenceError;
1602       __ CallRuntime(function_id, 2);
1603       __ bind(&done);
1604       context()->Plug(v0);
1605     }
1606   }
1607 }
1608
1609
1610 void FullCodeGenerator::VisitRegExpLiteral(RegExpLiteral* expr) {
1611   Comment cmnt(masm_, "[ RegExpLiteral");
1612   Label materialized;
1613   // Registers will be used as follows:
1614   // t1 = materialized value (RegExp literal)
1615   // t0 = JS function, literals array
1616   // a3 = literal index
1617   // a2 = RegExp pattern
1618   // a1 = RegExp flags
1619   // a0 = RegExp literal clone
1620   __ lw(a0, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
1621   __ lw(t0, FieldMemOperand(a0, JSFunction::kLiteralsOffset));
1622   int literal_offset =
1623       FixedArray::kHeaderSize + expr->literal_index() * kPointerSize;
1624   __ lw(t1, FieldMemOperand(t0, literal_offset));
1625   __ LoadRoot(at, Heap::kUndefinedValueRootIndex);
1626   __ Branch(&materialized, ne, t1, Operand(at));
1627
1628   // Create regexp literal using runtime function.
1629   // Result will be in v0.
1630   __ li(a3, Operand(Smi::FromInt(expr->literal_index())));
1631   __ li(a2, Operand(expr->pattern()));
1632   __ li(a1, Operand(expr->flags()));
1633   __ Push(t0, a3, a2, a1);
1634   __ CallRuntime(Runtime::kMaterializeRegExpLiteral, 4);
1635   __ mov(t1, v0);
1636
1637   __ bind(&materialized);
1638   int size = JSRegExp::kSize + JSRegExp::kInObjectFieldCount * kPointerSize;
1639   Label allocated, runtime_allocate;
1640   __ Allocate(size, v0, a2, a3, &runtime_allocate, TAG_OBJECT);
1641   __ jmp(&allocated);
1642
1643   __ bind(&runtime_allocate);
1644   __ li(a0, Operand(Smi::FromInt(size)));
1645   __ Push(t1, a0);
1646   __ CallRuntime(Runtime::kAllocateInNewSpace, 1);
1647   __ pop(t1);
1648
1649   __ bind(&allocated);
1650
1651   // After this, registers are used as follows:
1652   // v0: Newly allocated regexp.
1653   // t1: Materialized regexp.
1654   // a2: temp.
1655   __ CopyFields(v0, t1, a2.bit(), size / kPointerSize);
1656   context()->Plug(v0);
1657 }
1658
1659
1660 void FullCodeGenerator::EmitAccessor(Expression* expression) {
1661   if (expression == NULL) {
1662     __ LoadRoot(a1, Heap::kNullValueRootIndex);
1663     __ push(a1);
1664   } else {
1665     VisitForStackValue(expression);
1666   }
1667 }
1668
1669
1670 void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
1671   Comment cmnt(masm_, "[ ObjectLiteral");
1672
1673   Handle<FixedArray> constant_properties = expr->constant_properties();
1674   __ lw(a3, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
1675   __ lw(a3, FieldMemOperand(a3, JSFunction::kLiteralsOffset));
1676   __ li(a2, Operand(Smi::FromInt(expr->literal_index())));
1677   __ li(a1, Operand(constant_properties));
1678   __ li(a0, Operand(Smi::FromInt(expr->ComputeFlags())));
1679   if (MustCreateObjectLiteralWithRuntime(expr)) {
1680     __ Push(a3, a2, a1, a0);
1681     __ CallRuntime(Runtime::kCreateObjectLiteral, 4);
1682   } else {
1683     FastCloneShallowObjectStub stub(isolate(), expr->properties_count());
1684     __ CallStub(&stub);
1685   }
1686   PrepareForBailoutForId(expr->CreateLiteralId(), TOS_REG);
1687
1688   // If result_saved is true the result is on top of the stack.  If
1689   // result_saved is false the result is in v0.
1690   bool result_saved = false;
1691
1692   AccessorTable accessor_table(zone());
1693   int property_index = 0;
1694   // store_slot_index points to the vector IC slot for the next store IC used.
1695   // ObjectLiteral::ComputeFeedbackRequirements controls the allocation of slots
1696   // and must be updated if the number of store ICs emitted here changes.
1697   int store_slot_index = 0;
1698   for (; property_index < expr->properties()->length(); property_index++) {
1699     ObjectLiteral::Property* property = expr->properties()->at(property_index);
1700     if (property->is_computed_name()) break;
1701     if (property->IsCompileTimeValue()) continue;
1702
1703     Literal* key = property->key()->AsLiteral();
1704     Expression* value = property->value();
1705     if (!result_saved) {
1706       __ push(v0);  // Save result on stack.
1707       result_saved = true;
1708     }
1709     switch (property->kind()) {
1710       case ObjectLiteral::Property::CONSTANT:
1711         UNREACHABLE();
1712       case ObjectLiteral::Property::MATERIALIZED_LITERAL:
1713         DCHECK(!CompileTimeValue::IsCompileTimeValue(property->value()));
1714         // Fall through.
1715       case ObjectLiteral::Property::COMPUTED:
1716         // It is safe to use [[Put]] here because the boilerplate already
1717         // contains computed properties with an uninitialized value.
1718         if (key->value()->IsInternalizedString()) {
1719           if (property->emit_store()) {
1720             VisitForAccumulatorValue(value);
1721             __ mov(StoreDescriptor::ValueRegister(), result_register());
1722             DCHECK(StoreDescriptor::ValueRegister().is(a0));
1723             __ li(StoreDescriptor::NameRegister(), Operand(key->value()));
1724             __ lw(StoreDescriptor::ReceiverRegister(), MemOperand(sp));
1725             if (FLAG_vector_stores) {
1726               EmitLoadStoreICSlot(expr->GetNthSlot(store_slot_index++));
1727               CallStoreIC();
1728             } else {
1729               CallStoreIC(key->LiteralFeedbackId());
1730             }
1731             PrepareForBailoutForId(key->id(), NO_REGISTERS);
1732
1733             if (NeedsHomeObject(value)) {
1734               __ Move(StoreDescriptor::ReceiverRegister(), v0);
1735               __ li(StoreDescriptor::NameRegister(),
1736                     Operand(isolate()->factory()->home_object_symbol()));
1737               __ lw(StoreDescriptor::ValueRegister(), MemOperand(sp));
1738               if (FLAG_vector_stores) {
1739                 EmitLoadStoreICSlot(expr->GetNthSlot(store_slot_index++));
1740               }
1741               CallStoreIC();
1742             }
1743           } else {
1744             VisitForEffect(value);
1745           }
1746           break;
1747         }
1748         // Duplicate receiver on stack.
1749         __ lw(a0, MemOperand(sp));
1750         __ push(a0);
1751         VisitForStackValue(key);
1752         VisitForStackValue(value);
1753         if (property->emit_store()) {
1754           EmitSetHomeObjectIfNeeded(
1755               value, 2, expr->SlotForHomeObject(value, &store_slot_index));
1756           __ li(a0, Operand(Smi::FromInt(SLOPPY)));  // PropertyAttributes.
1757           __ push(a0);
1758           __ CallRuntime(Runtime::kSetProperty, 4);
1759         } else {
1760           __ Drop(3);
1761         }
1762         break;
1763       case ObjectLiteral::Property::PROTOTYPE:
1764         // Duplicate receiver on stack.
1765         __ lw(a0, MemOperand(sp));
1766         __ push(a0);
1767         VisitForStackValue(value);
1768         DCHECK(property->emit_store());
1769         __ CallRuntime(Runtime::kInternalSetPrototype, 2);
1770         break;
1771       case ObjectLiteral::Property::GETTER:
1772         if (property->emit_store()) {
1773           accessor_table.lookup(key)->second->getter = value;
1774         }
1775         break;
1776       case ObjectLiteral::Property::SETTER:
1777         if (property->emit_store()) {
1778           accessor_table.lookup(key)->second->setter = value;
1779         }
1780         break;
1781     }
1782   }
1783
1784   // Emit code to define accessors, using only a single call to the runtime for
1785   // each pair of corresponding getters and setters.
1786   for (AccessorTable::Iterator it = accessor_table.begin();
1787        it != accessor_table.end();
1788        ++it) {
1789     __ lw(a0, MemOperand(sp));  // Duplicate receiver.
1790     __ push(a0);
1791     VisitForStackValue(it->first);
1792     EmitAccessor(it->second->getter);
1793     EmitSetHomeObjectIfNeeded(
1794         it->second->getter, 2,
1795         expr->SlotForHomeObject(it->second->getter, &store_slot_index));
1796     EmitAccessor(it->second->setter);
1797     EmitSetHomeObjectIfNeeded(
1798         it->second->setter, 3,
1799         expr->SlotForHomeObject(it->second->setter, &store_slot_index));
1800     __ li(a0, Operand(Smi::FromInt(NONE)));
1801     __ push(a0);
1802     __ CallRuntime(Runtime::kDefineAccessorPropertyUnchecked, 5);
1803   }
1804
1805   // Object literals have two parts. The "static" part on the left contains no
1806   // computed property names, and so we can compute its map ahead of time; see
1807   // runtime.cc::CreateObjectLiteralBoilerplate. The second "dynamic" part
1808   // starts with the first computed property name, and continues with all
1809   // properties to its right.  All the code from above initializes the static
1810   // component of the object literal, and arranges for the map of the result to
1811   // reflect the static order in which the keys appear. For the dynamic
1812   // properties, we compile them into a series of "SetOwnProperty" runtime
1813   // calls. This will preserve insertion order.
1814   for (; property_index < expr->properties()->length(); property_index++) {
1815     ObjectLiteral::Property* property = expr->properties()->at(property_index);
1816
1817     Expression* value = property->value();
1818     if (!result_saved) {
1819       __ push(v0);  // Save result on the stack
1820       result_saved = true;
1821     }
1822
1823     __ lw(a0, MemOperand(sp));  // Duplicate receiver.
1824     __ push(a0);
1825
1826     if (property->kind() == ObjectLiteral::Property::PROTOTYPE) {
1827       DCHECK(!property->is_computed_name());
1828       VisitForStackValue(value);
1829       DCHECK(property->emit_store());
1830       __ CallRuntime(Runtime::kInternalSetPrototype, 2);
1831     } else {
1832       EmitPropertyKey(property, expr->GetIdForProperty(property_index));
1833       VisitForStackValue(value);
1834       EmitSetHomeObjectIfNeeded(
1835           value, 2, expr->SlotForHomeObject(value, &store_slot_index));
1836
1837       switch (property->kind()) {
1838         case ObjectLiteral::Property::CONSTANT:
1839         case ObjectLiteral::Property::MATERIALIZED_LITERAL:
1840         case ObjectLiteral::Property::COMPUTED:
1841           if (property->emit_store()) {
1842             __ li(a0, Operand(Smi::FromInt(NONE)));
1843             __ push(a0);
1844             __ CallRuntime(Runtime::kDefineDataPropertyUnchecked, 4);
1845           } else {
1846             __ Drop(3);
1847           }
1848           break;
1849
1850         case ObjectLiteral::Property::PROTOTYPE:
1851           UNREACHABLE();
1852           break;
1853
1854         case ObjectLiteral::Property::GETTER:
1855           __ li(a0, Operand(Smi::FromInt(NONE)));
1856           __ push(a0);
1857           __ CallRuntime(Runtime::kDefineGetterPropertyUnchecked, 4);
1858           break;
1859
1860         case ObjectLiteral::Property::SETTER:
1861           __ li(a0, Operand(Smi::FromInt(NONE)));
1862           __ push(a0);
1863           __ CallRuntime(Runtime::kDefineSetterPropertyUnchecked, 4);
1864           break;
1865       }
1866     }
1867   }
1868
1869   if (expr->has_function()) {
1870     DCHECK(result_saved);
1871     __ lw(a0, MemOperand(sp));
1872     __ push(a0);
1873     __ CallRuntime(Runtime::kToFastProperties, 1);
1874   }
1875
1876   if (result_saved) {
1877     context()->PlugTOS();
1878   } else {
1879     context()->Plug(v0);
1880   }
1881
1882   // Verify that compilation exactly consumed the number of store ic slots that
1883   // the ObjectLiteral node had to offer.
1884   DCHECK(!FLAG_vector_stores || store_slot_index == expr->slot_count());
1885 }
1886
1887
1888 void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
1889   Comment cmnt(masm_, "[ ArrayLiteral");
1890
1891   expr->BuildConstantElements(isolate());
1892
1893   Handle<FixedArray> constant_elements = expr->constant_elements();
1894   bool has_fast_elements =
1895       IsFastObjectElementsKind(expr->constant_elements_kind());
1896
1897   AllocationSiteMode allocation_site_mode = TRACK_ALLOCATION_SITE;
1898   if (has_fast_elements && !FLAG_allocation_site_pretenuring) {
1899     // If the only customer of allocation sites is transitioning, then
1900     // we can turn it off if we don't have anywhere else to transition to.
1901     allocation_site_mode = DONT_TRACK_ALLOCATION_SITE;
1902   }
1903
1904   __ mov(a0, result_register());
1905   __ lw(a3, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
1906   __ lw(a3, FieldMemOperand(a3, JSFunction::kLiteralsOffset));
1907   __ li(a2, Operand(Smi::FromInt(expr->literal_index())));
1908   __ li(a1, Operand(constant_elements));
1909   if (MustCreateArrayLiteralWithRuntime(expr)) {
1910     __ li(a0, Operand(Smi::FromInt(expr->ComputeFlags())));
1911     __ Push(a3, a2, a1, a0);
1912     __ CallRuntime(Runtime::kCreateArrayLiteral, 4);
1913   } else {
1914     FastCloneShallowArrayStub stub(isolate(), allocation_site_mode);
1915     __ CallStub(&stub);
1916   }
1917   PrepareForBailoutForId(expr->CreateLiteralId(), TOS_REG);
1918
1919   bool result_saved = false;  // Is the result saved to the stack?
1920   ZoneList<Expression*>* subexprs = expr->values();
1921   int length = subexprs->length();
1922
1923   // Emit code to evaluate all the non-constant subexpressions and to store
1924   // them into the newly cloned array.
1925   int array_index = 0;
1926   for (; array_index < length; array_index++) {
1927     Expression* subexpr = subexprs->at(array_index);
1928     if (subexpr->IsSpread()) break;
1929
1930     // If the subexpression is a literal or a simple materialized literal it
1931     // is already set in the cloned array.
1932     if (CompileTimeValue::IsCompileTimeValue(subexpr)) continue;
1933
1934     if (!result_saved) {
1935       __ push(v0);  // array literal
1936       __ Push(Smi::FromInt(expr->literal_index()));
1937       result_saved = true;
1938     }
1939
1940     VisitForAccumulatorValue(subexpr);
1941
1942     if (has_fast_elements) {
1943       int offset = FixedArray::kHeaderSize + (array_index * kPointerSize);
1944       __ lw(t2, MemOperand(sp, kPointerSize));  // Copy of array literal.
1945       __ lw(a1, FieldMemOperand(t2, JSObject::kElementsOffset));
1946       __ sw(result_register(), FieldMemOperand(a1, offset));
1947       // Update the write barrier for the array store.
1948       __ RecordWriteField(a1, offset, result_register(), a2,
1949                           kRAHasBeenSaved, kDontSaveFPRegs,
1950                           EMIT_REMEMBERED_SET, INLINE_SMI_CHECK);
1951     } else {
1952       __ li(a3, Operand(Smi::FromInt(array_index)));
1953       __ mov(a0, result_register());
1954       StoreArrayLiteralElementStub stub(isolate());
1955       __ CallStub(&stub);
1956     }
1957
1958     PrepareForBailoutForId(expr->GetIdForElement(array_index), NO_REGISTERS);
1959   }
1960
1961   // In case the array literal contains spread expressions it has two parts. The
1962   // first part is  the "static" array which has a literal index is  handled
1963   // above. The second part is the part after the first spread expression
1964   // (inclusive) and these elements gets appended to the array. Note that the
1965   // number elements an iterable produces is unknown ahead of time.
1966   if (array_index < length && result_saved) {
1967     __ Pop();  // literal index
1968     __ Pop(v0);
1969     result_saved = false;
1970   }
1971   for (; array_index < length; array_index++) {
1972     Expression* subexpr = subexprs->at(array_index);
1973
1974     __ Push(v0);
1975     if (subexpr->IsSpread()) {
1976       VisitForStackValue(subexpr->AsSpread()->expression());
1977       __ InvokeBuiltin(Builtins::CONCAT_ITERABLE_TO_ARRAY, CALL_FUNCTION);
1978     } else {
1979       VisitForStackValue(subexpr);
1980       __ CallRuntime(Runtime::kAppendElement, 2);
1981     }
1982
1983     PrepareForBailoutForId(expr->GetIdForElement(array_index), NO_REGISTERS);
1984   }
1985
1986   if (result_saved) {
1987     __ Pop();  // literal index
1988     context()->PlugTOS();
1989   } else {
1990     context()->Plug(v0);
1991   }
1992 }
1993
1994
1995 void FullCodeGenerator::VisitAssignment(Assignment* expr) {
1996   DCHECK(expr->target()->IsValidReferenceExpression());
1997
1998   Comment cmnt(masm_, "[ Assignment");
1999   SetExpressionPosition(expr, INSERT_BREAK);
2000
2001   Property* property = expr->target()->AsProperty();
2002   LhsKind assign_type = Property::GetAssignType(property);
2003
2004   // Evaluate LHS expression.
2005   switch (assign_type) {
2006     case VARIABLE:
2007       // Nothing to do here.
2008       break;
2009     case NAMED_PROPERTY:
2010       if (expr->is_compound()) {
2011         // We need the receiver both on the stack and in the register.
2012         VisitForStackValue(property->obj());
2013         __ lw(LoadDescriptor::ReceiverRegister(), MemOperand(sp, 0));
2014       } else {
2015         VisitForStackValue(property->obj());
2016       }
2017       break;
2018     case NAMED_SUPER_PROPERTY:
2019       VisitForStackValue(
2020           property->obj()->AsSuperPropertyReference()->this_var());
2021       VisitForAccumulatorValue(
2022           property->obj()->AsSuperPropertyReference()->home_object());
2023       __ Push(result_register());
2024       if (expr->is_compound()) {
2025         const Register scratch = a1;
2026         __ lw(scratch, MemOperand(sp, kPointerSize));
2027         __ Push(scratch, result_register());
2028       }
2029       break;
2030     case KEYED_SUPER_PROPERTY: {
2031       const Register scratch = a1;
2032       VisitForStackValue(
2033           property->obj()->AsSuperPropertyReference()->this_var());
2034       VisitForAccumulatorValue(
2035           property->obj()->AsSuperPropertyReference()->home_object());
2036       __ Move(scratch, result_register());
2037       VisitForAccumulatorValue(property->key());
2038       __ Push(scratch, result_register());
2039       if (expr->is_compound()) {
2040         const Register scratch1 = t0;
2041         __ lw(scratch1, MemOperand(sp, 2 * kPointerSize));
2042         __ Push(scratch1, scratch, result_register());
2043       }
2044       break;
2045     }
2046     case KEYED_PROPERTY:
2047       // We need the key and receiver on both the stack and in v0 and a1.
2048       if (expr->is_compound()) {
2049         VisitForStackValue(property->obj());
2050         VisitForStackValue(property->key());
2051         __ lw(LoadDescriptor::ReceiverRegister(),
2052               MemOperand(sp, 1 * kPointerSize));
2053         __ lw(LoadDescriptor::NameRegister(), MemOperand(sp, 0));
2054       } else {
2055         VisitForStackValue(property->obj());
2056         VisitForStackValue(property->key());
2057       }
2058       break;
2059   }
2060
2061   // For compound assignments we need another deoptimization point after the
2062   // variable/property load.
2063   if (expr->is_compound()) {
2064     { AccumulatorValueContext context(this);
2065       switch (assign_type) {
2066         case VARIABLE:
2067           EmitVariableLoad(expr->target()->AsVariableProxy());
2068           PrepareForBailout(expr->target(), TOS_REG);
2069           break;
2070         case NAMED_PROPERTY:
2071           EmitNamedPropertyLoad(property);
2072           PrepareForBailoutForId(property->LoadId(), TOS_REG);
2073           break;
2074         case NAMED_SUPER_PROPERTY:
2075           EmitNamedSuperPropertyLoad(property);
2076           PrepareForBailoutForId(property->LoadId(), TOS_REG);
2077           break;
2078         case KEYED_SUPER_PROPERTY:
2079           EmitKeyedSuperPropertyLoad(property);
2080           PrepareForBailoutForId(property->LoadId(), TOS_REG);
2081           break;
2082         case KEYED_PROPERTY:
2083           EmitKeyedPropertyLoad(property);
2084           PrepareForBailoutForId(property->LoadId(), TOS_REG);
2085           break;
2086       }
2087     }
2088
2089     Token::Value op = expr->binary_op();
2090     __ push(v0);  // Left operand goes on the stack.
2091     VisitForAccumulatorValue(expr->value());
2092
2093     AccumulatorValueContext context(this);
2094     if (ShouldInlineSmiCase(op)) {
2095       EmitInlineSmiBinaryOp(expr->binary_operation(),
2096                             op,
2097                             expr->target(),
2098                             expr->value());
2099     } else {
2100       EmitBinaryOp(expr->binary_operation(), op);
2101     }
2102
2103     // Deoptimization point in case the binary operation may have side effects.
2104     PrepareForBailout(expr->binary_operation(), TOS_REG);
2105   } else {
2106     VisitForAccumulatorValue(expr->value());
2107   }
2108
2109   SetExpressionPosition(expr);
2110
2111   // Store the value.
2112   switch (assign_type) {
2113     case VARIABLE:
2114       EmitVariableAssignment(expr->target()->AsVariableProxy()->var(),
2115                              expr->op(), expr->AssignmentSlot());
2116       PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
2117       context()->Plug(v0);
2118       break;
2119     case NAMED_PROPERTY:
2120       EmitNamedPropertyAssignment(expr);
2121       break;
2122     case NAMED_SUPER_PROPERTY:
2123       EmitNamedSuperPropertyStore(property);
2124       context()->Plug(v0);
2125       break;
2126     case KEYED_SUPER_PROPERTY:
2127       EmitKeyedSuperPropertyStore(property);
2128       context()->Plug(v0);
2129       break;
2130     case KEYED_PROPERTY:
2131       EmitKeyedPropertyAssignment(expr);
2132       break;
2133   }
2134 }
2135
2136
2137 void FullCodeGenerator::VisitYield(Yield* expr) {
2138   Comment cmnt(masm_, "[ Yield");
2139   SetExpressionPosition(expr);
2140
2141   // Evaluate yielded value first; the initial iterator definition depends on
2142   // this.  It stays on the stack while we update the iterator.
2143   VisitForStackValue(expr->expression());
2144
2145   switch (expr->yield_kind()) {
2146     case Yield::kSuspend:
2147       // Pop value from top-of-stack slot; box result into result register.
2148       EmitCreateIteratorResult(false);
2149       __ push(result_register());
2150       // Fall through.
2151     case Yield::kInitial: {
2152       Label suspend, continuation, post_runtime, resume;
2153
2154       __ jmp(&suspend);
2155       __ bind(&continuation);
2156       __ RecordGeneratorContinuation();
2157       __ jmp(&resume);
2158
2159       __ bind(&suspend);
2160       VisitForAccumulatorValue(expr->generator_object());
2161       DCHECK(continuation.pos() > 0 && Smi::IsValid(continuation.pos()));
2162       __ li(a1, Operand(Smi::FromInt(continuation.pos())));
2163       __ sw(a1, FieldMemOperand(v0, JSGeneratorObject::kContinuationOffset));
2164       __ sw(cp, FieldMemOperand(v0, JSGeneratorObject::kContextOffset));
2165       __ mov(a1, cp);
2166       __ RecordWriteField(v0, JSGeneratorObject::kContextOffset, a1, a2,
2167                           kRAHasBeenSaved, kDontSaveFPRegs);
2168       __ Addu(a1, fp, Operand(StandardFrameConstants::kExpressionsOffset));
2169       __ Branch(&post_runtime, eq, sp, Operand(a1));
2170       __ push(v0);  // generator object
2171       __ CallRuntime(Runtime::kSuspendJSGeneratorObject, 1);
2172       __ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
2173       __ bind(&post_runtime);
2174       __ pop(result_register());
2175       EmitReturnSequence();
2176
2177       __ bind(&resume);
2178       context()->Plug(result_register());
2179       break;
2180     }
2181
2182     case Yield::kFinal: {
2183       VisitForAccumulatorValue(expr->generator_object());
2184       __ li(a1, Operand(Smi::FromInt(JSGeneratorObject::kGeneratorClosed)));
2185       __ sw(a1, FieldMemOperand(result_register(),
2186                                 JSGeneratorObject::kContinuationOffset));
2187       // Pop value from top-of-stack slot, box result into result register.
2188       EmitCreateIteratorResult(true);
2189       EmitUnwindBeforeReturn();
2190       EmitReturnSequence();
2191       break;
2192     }
2193
2194     case Yield::kDelegating: {
2195       VisitForStackValue(expr->generator_object());
2196
2197       // Initial stack layout is as follows:
2198       // [sp + 1 * kPointerSize] iter
2199       // [sp + 0 * kPointerSize] g
2200
2201       Label l_catch, l_try, l_suspend, l_continuation, l_resume;
2202       Label l_next, l_call;
2203       Register load_receiver = LoadDescriptor::ReceiverRegister();
2204       Register load_name = LoadDescriptor::NameRegister();
2205
2206       // Initial send value is undefined.
2207       __ LoadRoot(a0, Heap::kUndefinedValueRootIndex);
2208       __ Branch(&l_next);
2209
2210       // catch (e) { receiver = iter; f = 'throw'; arg = e; goto l_call; }
2211       __ bind(&l_catch);
2212       __ mov(a0, v0);
2213       __ LoadRoot(load_name, Heap::kthrow_stringRootIndex);  // "throw"
2214       __ lw(a3, MemOperand(sp, 1 * kPointerSize));           // iter
2215       __ Push(load_name, a3, a0);                     // "throw", iter, except
2216       __ jmp(&l_call);
2217
2218       // try { received = %yield result }
2219       // Shuffle the received result above a try handler and yield it without
2220       // re-boxing.
2221       __ bind(&l_try);
2222       __ pop(a0);                                        // result
2223       int handler_index = NewHandlerTableEntry();
2224       EnterTryBlock(handler_index, &l_catch);
2225       const int try_block_size = TryCatch::kElementCount * kPointerSize;
2226       __ push(a0);                                       // result
2227
2228       __ jmp(&l_suspend);
2229       __ bind(&l_continuation);
2230       __ RecordGeneratorContinuation();
2231       __ mov(a0, v0);
2232       __ jmp(&l_resume);
2233
2234       __ bind(&l_suspend);
2235       const int generator_object_depth = kPointerSize + try_block_size;
2236       __ lw(a0, MemOperand(sp, generator_object_depth));
2237       __ push(a0);                                       // g
2238       __ Push(Smi::FromInt(handler_index));              // handler-index
2239       DCHECK(l_continuation.pos() > 0 && Smi::IsValid(l_continuation.pos()));
2240       __ li(a1, Operand(Smi::FromInt(l_continuation.pos())));
2241       __ sw(a1, FieldMemOperand(a0, JSGeneratorObject::kContinuationOffset));
2242       __ sw(cp, FieldMemOperand(a0, JSGeneratorObject::kContextOffset));
2243       __ mov(a1, cp);
2244       __ RecordWriteField(a0, JSGeneratorObject::kContextOffset, a1, a2,
2245                           kRAHasBeenSaved, kDontSaveFPRegs);
2246       __ CallRuntime(Runtime::kSuspendJSGeneratorObject, 2);
2247       __ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
2248       __ pop(v0);                                      // result
2249       EmitReturnSequence();
2250       __ mov(a0, v0);
2251       __ bind(&l_resume);                              // received in a0
2252       ExitTryBlock(handler_index);
2253
2254       // receiver = iter; f = 'next'; arg = received;
2255       __ bind(&l_next);
2256
2257       __ LoadRoot(load_name, Heap::knext_stringRootIndex);  // "next"
2258       __ lw(a3, MemOperand(sp, 1 * kPointerSize));          // iter
2259       __ Push(load_name, a3, a0);                      // "next", iter, received
2260
2261       // result = receiver[f](arg);
2262       __ bind(&l_call);
2263       __ lw(load_receiver, MemOperand(sp, kPointerSize));
2264       __ lw(load_name, MemOperand(sp, 2 * kPointerSize));
2265       __ li(LoadDescriptor::SlotRegister(),
2266             Operand(SmiFromSlot(expr->KeyedLoadFeedbackSlot())));
2267       Handle<Code> ic = CodeFactory::KeyedLoadIC(isolate(), SLOPPY).code();
2268       CallIC(ic, TypeFeedbackId::None());
2269       __ mov(a0, v0);
2270       __ mov(a1, a0);
2271       __ sw(a1, MemOperand(sp, 2 * kPointerSize));
2272       SetCallPosition(expr, 1);
2273       CallFunctionStub stub(isolate(), 1, CALL_AS_METHOD);
2274       __ CallStub(&stub);
2275
2276       __ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
2277       __ Drop(1);  // The function is still on the stack; drop it.
2278
2279       // if (!result.done) goto l_try;
2280       __ Move(load_receiver, v0);
2281
2282       __ push(load_receiver);                               // save result
2283       __ LoadRoot(load_name, Heap::kdone_stringRootIndex);  // "done"
2284       __ li(LoadDescriptor::SlotRegister(),
2285             Operand(SmiFromSlot(expr->DoneFeedbackSlot())));
2286       CallLoadIC(NOT_INSIDE_TYPEOF);  // v0=result.done
2287       __ mov(a0, v0);
2288       Handle<Code> bool_ic = ToBooleanStub::GetUninitialized(isolate());
2289       CallIC(bool_ic);
2290       __ Branch(&l_try, eq, v0, Operand(zero_reg));
2291
2292       // result.value
2293       __ pop(load_receiver);                                 // result
2294       __ LoadRoot(load_name, Heap::kvalue_stringRootIndex);  // "value"
2295       __ li(LoadDescriptor::SlotRegister(),
2296             Operand(SmiFromSlot(expr->ValueFeedbackSlot())));
2297       CallLoadIC(NOT_INSIDE_TYPEOF);                         // v0=result.value
2298       context()->DropAndPlug(2, v0);                         // drop iter and g
2299       break;
2300     }
2301   }
2302 }
2303
2304
2305 void FullCodeGenerator::EmitGeneratorResume(Expression *generator,
2306     Expression *value,
2307     JSGeneratorObject::ResumeMode resume_mode) {
2308   // The value stays in a0, and is ultimately read by the resumed generator, as
2309   // if CallRuntime(Runtime::kSuspendJSGeneratorObject) returned it. Or it
2310   // is read to throw the value when the resumed generator is already closed.
2311   // a1 will hold the generator object until the activation has been resumed.
2312   VisitForStackValue(generator);
2313   VisitForAccumulatorValue(value);
2314   __ pop(a1);
2315
2316   // Load suspended function and context.
2317   __ lw(cp, FieldMemOperand(a1, JSGeneratorObject::kContextOffset));
2318   __ lw(t0, FieldMemOperand(a1, JSGeneratorObject::kFunctionOffset));
2319
2320   // Load receiver and store as the first argument.
2321   __ lw(a2, FieldMemOperand(a1, JSGeneratorObject::kReceiverOffset));
2322   __ push(a2);
2323
2324   // Push holes for the rest of the arguments to the generator function.
2325   __ lw(a3, FieldMemOperand(t0, JSFunction::kSharedFunctionInfoOffset));
2326   __ lw(a3,
2327         FieldMemOperand(a3, SharedFunctionInfo::kFormalParameterCountOffset));
2328   __ LoadRoot(a2, Heap::kTheHoleValueRootIndex);
2329   Label push_argument_holes, push_frame;
2330   __ bind(&push_argument_holes);
2331   __ Subu(a3, a3, Operand(Smi::FromInt(1)));
2332   __ Branch(&push_frame, lt, a3, Operand(zero_reg));
2333   __ push(a2);
2334   __ jmp(&push_argument_holes);
2335
2336   // Enter a new JavaScript frame, and initialize its slots as they were when
2337   // the generator was suspended.
2338   Label resume_frame, done;
2339   __ bind(&push_frame);
2340   __ Call(&resume_frame);
2341   __ jmp(&done);
2342   __ bind(&resume_frame);
2343   // ra = return address.
2344   // fp = caller's frame pointer.
2345   // cp = callee's context,
2346   // t0 = callee's JS function.
2347   __ Push(ra, fp, cp, t0);
2348   // Adjust FP to point to saved FP.
2349   __ Addu(fp, sp, 2 * kPointerSize);
2350
2351   // Load the operand stack size.
2352   __ lw(a3, FieldMemOperand(a1, JSGeneratorObject::kOperandStackOffset));
2353   __ lw(a3, FieldMemOperand(a3, FixedArray::kLengthOffset));
2354   __ SmiUntag(a3);
2355
2356   // If we are sending a value and there is no operand stack, we can jump back
2357   // in directly.
2358   if (resume_mode == JSGeneratorObject::NEXT) {
2359     Label slow_resume;
2360     __ Branch(&slow_resume, ne, a3, Operand(zero_reg));
2361     __ lw(a3, FieldMemOperand(t0, JSFunction::kCodeEntryOffset));
2362     __ lw(a2, FieldMemOperand(a1, JSGeneratorObject::kContinuationOffset));
2363     __ SmiUntag(a2);
2364     __ Addu(a3, a3, Operand(a2));
2365     __ li(a2, Operand(Smi::FromInt(JSGeneratorObject::kGeneratorExecuting)));
2366     __ sw(a2, FieldMemOperand(a1, JSGeneratorObject::kContinuationOffset));
2367     __ Jump(a3);
2368     __ bind(&slow_resume);
2369   }
2370
2371   // Otherwise, we push holes for the operand stack and call the runtime to fix
2372   // up the stack and the handlers.
2373   Label push_operand_holes, call_resume;
2374   __ bind(&push_operand_holes);
2375   __ Subu(a3, a3, Operand(1));
2376   __ Branch(&call_resume, lt, a3, Operand(zero_reg));
2377   __ push(a2);
2378   __ Branch(&push_operand_holes);
2379   __ bind(&call_resume);
2380   DCHECK(!result_register().is(a1));
2381   __ Push(a1, result_register());
2382   __ Push(Smi::FromInt(resume_mode));
2383   __ CallRuntime(Runtime::kResumeJSGeneratorObject, 3);
2384   // Not reached: the runtime call returns elsewhere.
2385   __ stop("not-reached");
2386
2387   __ bind(&done);
2388   context()->Plug(result_register());
2389 }
2390
2391
2392 void FullCodeGenerator::EmitCreateIteratorResult(bool done) {
2393   Label gc_required;
2394   Label allocated;
2395
2396   const int instance_size = 5 * kPointerSize;
2397   DCHECK_EQ(isolate()->native_context()->iterator_result_map()->instance_size(),
2398             instance_size);
2399
2400   __ Allocate(instance_size, v0, a2, a3, &gc_required, TAG_OBJECT);
2401   __ jmp(&allocated);
2402
2403   __ bind(&gc_required);
2404   __ Push(Smi::FromInt(instance_size));
2405   __ CallRuntime(Runtime::kAllocateInNewSpace, 1);
2406   __ lw(context_register(),
2407         MemOperand(fp, StandardFrameConstants::kContextOffset));
2408
2409   __ bind(&allocated);
2410   __ lw(a1, ContextOperand(cp, Context::GLOBAL_OBJECT_INDEX));
2411   __ lw(a1, FieldMemOperand(a1, GlobalObject::kNativeContextOffset));
2412   __ lw(a1, ContextOperand(a1, Context::ITERATOR_RESULT_MAP_INDEX));
2413   __ pop(a2);
2414   __ li(a3, Operand(isolate()->factory()->ToBoolean(done)));
2415   __ li(t0, Operand(isolate()->factory()->empty_fixed_array()));
2416   __ sw(a1, FieldMemOperand(v0, HeapObject::kMapOffset));
2417   __ sw(t0, FieldMemOperand(v0, JSObject::kPropertiesOffset));
2418   __ sw(t0, FieldMemOperand(v0, JSObject::kElementsOffset));
2419   __ sw(a2,
2420         FieldMemOperand(v0, JSGeneratorObject::kResultValuePropertyOffset));
2421   __ sw(a3,
2422         FieldMemOperand(v0, JSGeneratorObject::kResultDonePropertyOffset));
2423
2424   // Only the value field needs a write barrier, as the other values are in the
2425   // root set.
2426   __ RecordWriteField(v0, JSGeneratorObject::kResultValuePropertyOffset,
2427                       a2, a3, kRAHasBeenSaved, kDontSaveFPRegs);
2428 }
2429
2430
2431 void FullCodeGenerator::EmitNamedPropertyLoad(Property* prop) {
2432   SetExpressionPosition(prop);
2433   Literal* key = prop->key()->AsLiteral();
2434   DCHECK(!prop->IsSuperAccess());
2435
2436   __ li(LoadDescriptor::NameRegister(), Operand(key->value()));
2437   __ li(LoadDescriptor::SlotRegister(),
2438         Operand(SmiFromSlot(prop->PropertyFeedbackSlot())));
2439   CallLoadIC(NOT_INSIDE_TYPEOF, language_mode());
2440 }
2441
2442
2443 void FullCodeGenerator::EmitNamedSuperPropertyLoad(Property* prop) {
2444   // Stack: receiver, home_object.
2445   SetExpressionPosition(prop);
2446
2447   Literal* key = prop->key()->AsLiteral();
2448   DCHECK(!key->value()->IsSmi());
2449   DCHECK(prop->IsSuperAccess());
2450
2451   __ Push(key->value());
2452   __ Push(Smi::FromInt(language_mode()));
2453   __ CallRuntime(Runtime::kLoadFromSuper, 4);
2454 }
2455
2456
2457 void FullCodeGenerator::EmitKeyedPropertyLoad(Property* prop) {
2458   SetExpressionPosition(prop);
2459   Handle<Code> ic = CodeFactory::KeyedLoadIC(isolate(), language_mode()).code();
2460   __ li(LoadDescriptor::SlotRegister(),
2461         Operand(SmiFromSlot(prop->PropertyFeedbackSlot())));
2462   CallIC(ic);
2463 }
2464
2465
2466 void FullCodeGenerator::EmitKeyedSuperPropertyLoad(Property* prop) {
2467   // Stack: receiver, home_object, key.
2468   SetExpressionPosition(prop);
2469   __ Push(Smi::FromInt(language_mode()));
2470   __ CallRuntime(Runtime::kLoadKeyedFromSuper, 4);
2471 }
2472
2473
2474 void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr,
2475                                               Token::Value op,
2476                                               Expression* left_expr,
2477                                               Expression* right_expr) {
2478   Label done, smi_case, stub_call;
2479
2480   Register scratch1 = a2;
2481   Register scratch2 = a3;
2482
2483   // Get the arguments.
2484   Register left = a1;
2485   Register right = a0;
2486   __ pop(left);
2487   __ mov(a0, result_register());
2488
2489   // Perform combined smi check on both operands.
2490   __ Or(scratch1, left, Operand(right));
2491   STATIC_ASSERT(kSmiTag == 0);
2492   JumpPatchSite patch_site(masm_);
2493   patch_site.EmitJumpIfSmi(scratch1, &smi_case);
2494
2495   __ bind(&stub_call);
2496   Handle<Code> code =
2497       CodeFactory::BinaryOpIC(isolate(), op, strength(language_mode())).code();
2498   CallIC(code, expr->BinaryOperationFeedbackId());
2499   patch_site.EmitPatchInfo();
2500   __ jmp(&done);
2501
2502   __ bind(&smi_case);
2503   // Smi case. This code works the same way as the smi-smi case in the type
2504   // recording binary operation stub, see
2505   switch (op) {
2506     case Token::SAR:
2507       __ GetLeastBitsFromSmi(scratch1, right, 5);
2508       __ srav(right, left, scratch1);
2509       __ And(v0, right, Operand(~kSmiTagMask));
2510       break;
2511     case Token::SHL: {
2512       __ SmiUntag(scratch1, left);
2513       __ GetLeastBitsFromSmi(scratch2, right, 5);
2514       __ sllv(scratch1, scratch1, scratch2);
2515       __ Addu(scratch2, scratch1, Operand(0x40000000));
2516       __ Branch(&stub_call, lt, scratch2, Operand(zero_reg));
2517       __ SmiTag(v0, scratch1);
2518       break;
2519     }
2520     case Token::SHR: {
2521       __ SmiUntag(scratch1, left);
2522       __ GetLeastBitsFromSmi(scratch2, right, 5);
2523       __ srlv(scratch1, scratch1, scratch2);
2524       __ And(scratch2, scratch1, 0xc0000000);
2525       __ Branch(&stub_call, ne, scratch2, Operand(zero_reg));
2526       __ SmiTag(v0, scratch1);
2527       break;
2528     }
2529     case Token::ADD:
2530       __ AdduAndCheckForOverflow(v0, left, right, scratch1);
2531       __ BranchOnOverflow(&stub_call, scratch1);
2532       break;
2533     case Token::SUB:
2534       __ SubuAndCheckForOverflow(v0, left, right, scratch1);
2535       __ BranchOnOverflow(&stub_call, scratch1);
2536       break;
2537     case Token::MUL: {
2538       __ SmiUntag(scratch1, right);
2539       __ Mul(scratch2, v0, left, scratch1);
2540       __ sra(scratch1, v0, 31);
2541       __ Branch(&stub_call, ne, scratch1, Operand(scratch2));
2542       __ Branch(&done, ne, v0, Operand(zero_reg));
2543       __ Addu(scratch2, right, left);
2544       __ Branch(&stub_call, lt, scratch2, Operand(zero_reg));
2545       DCHECK(Smi::FromInt(0) == 0);
2546       __ mov(v0, zero_reg);
2547       break;
2548     }
2549     case Token::BIT_OR:
2550       __ Or(v0, left, Operand(right));
2551       break;
2552     case Token::BIT_AND:
2553       __ And(v0, left, Operand(right));
2554       break;
2555     case Token::BIT_XOR:
2556       __ Xor(v0, left, Operand(right));
2557       break;
2558     default:
2559       UNREACHABLE();
2560   }
2561
2562   __ bind(&done);
2563   context()->Plug(v0);
2564 }
2565
2566
2567 void FullCodeGenerator::EmitClassDefineProperties(ClassLiteral* lit,
2568                                                   int* used_store_slots) {
2569   // Constructor is in v0.
2570   DCHECK(lit != NULL);
2571   __ push(v0);
2572
2573   // No access check is needed here since the constructor is created by the
2574   // class literal.
2575   Register scratch = a1;
2576   __ lw(scratch,
2577         FieldMemOperand(v0, JSFunction::kPrototypeOrInitialMapOffset));
2578   __ push(scratch);
2579
2580   for (int i = 0; i < lit->properties()->length(); i++) {
2581     ObjectLiteral::Property* property = lit->properties()->at(i);
2582     Expression* value = property->value();
2583
2584     if (property->is_static()) {
2585       __ lw(scratch, MemOperand(sp, kPointerSize));  // constructor
2586     } else {
2587       __ lw(scratch, MemOperand(sp, 0));  // prototype
2588     }
2589     __ push(scratch);
2590     EmitPropertyKey(property, lit->GetIdForProperty(i));
2591
2592     // The static prototype property is read only. We handle the non computed
2593     // property name case in the parser. Since this is the only case where we
2594     // need to check for an own read only property we special case this so we do
2595     // not need to do this for every property.
2596     if (property->is_static() && property->is_computed_name()) {
2597       __ CallRuntime(Runtime::kThrowIfStaticPrototype, 1);
2598       __ push(v0);
2599     }
2600
2601     VisitForStackValue(value);
2602     EmitSetHomeObjectIfNeeded(value, 2,
2603                               lit->SlotForHomeObject(value, used_store_slots));
2604
2605     switch (property->kind()) {
2606       case ObjectLiteral::Property::CONSTANT:
2607       case ObjectLiteral::Property::MATERIALIZED_LITERAL:
2608       case ObjectLiteral::Property::PROTOTYPE:
2609         UNREACHABLE();
2610       case ObjectLiteral::Property::COMPUTED:
2611         __ CallRuntime(Runtime::kDefineClassMethod, 3);
2612         break;
2613
2614       case ObjectLiteral::Property::GETTER:
2615         __ li(a0, Operand(Smi::FromInt(DONT_ENUM)));
2616         __ push(a0);
2617         __ CallRuntime(Runtime::kDefineGetterPropertyUnchecked, 4);
2618         break;
2619
2620       case ObjectLiteral::Property::SETTER:
2621         __ li(a0, Operand(Smi::FromInt(DONT_ENUM)));
2622         __ push(a0);
2623         __ CallRuntime(Runtime::kDefineSetterPropertyUnchecked, 4);
2624         break;
2625
2626       default:
2627         UNREACHABLE();
2628     }
2629   }
2630
2631   // prototype
2632   __ CallRuntime(Runtime::kToFastProperties, 1);
2633
2634   // constructor
2635   __ CallRuntime(Runtime::kToFastProperties, 1);
2636
2637   if (is_strong(language_mode())) {
2638     __ lw(scratch,
2639           FieldMemOperand(v0, JSFunction::kPrototypeOrInitialMapOffset));
2640     __ Push(v0, scratch);
2641     // TODO(conradw): It would be more efficient to define the properties with
2642     // the right attributes the first time round.
2643     // Freeze the prototype.
2644     __ CallRuntime(Runtime::kObjectFreeze, 1);
2645     // Freeze the constructor.
2646     __ CallRuntime(Runtime::kObjectFreeze, 1);
2647   }
2648 }
2649
2650
2651 void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr, Token::Value op) {
2652   __ mov(a0, result_register());
2653   __ pop(a1);
2654   Handle<Code> code =
2655       CodeFactory::BinaryOpIC(isolate(), op, strength(language_mode())).code();
2656   JumpPatchSite patch_site(masm_);    // unbound, signals no inlined smi code.
2657   CallIC(code, expr->BinaryOperationFeedbackId());
2658   patch_site.EmitPatchInfo();
2659   context()->Plug(v0);
2660 }
2661
2662
2663 void FullCodeGenerator::EmitAssignment(Expression* expr,
2664                                        FeedbackVectorICSlot slot) {
2665   DCHECK(expr->IsValidReferenceExpression());
2666
2667   Property* prop = expr->AsProperty();
2668   LhsKind assign_type = Property::GetAssignType(prop);
2669
2670   switch (assign_type) {
2671     case VARIABLE: {
2672       Variable* var = expr->AsVariableProxy()->var();
2673       EffectContext context(this);
2674       EmitVariableAssignment(var, Token::ASSIGN, slot);
2675       break;
2676     }
2677     case NAMED_PROPERTY: {
2678       __ push(result_register());  // Preserve value.
2679       VisitForAccumulatorValue(prop->obj());
2680       __ mov(StoreDescriptor::ReceiverRegister(), result_register());
2681       __ pop(StoreDescriptor::ValueRegister());  // Restore value.
2682       __ li(StoreDescriptor::NameRegister(),
2683             Operand(prop->key()->AsLiteral()->value()));
2684       if (FLAG_vector_stores) EmitLoadStoreICSlot(slot);
2685       CallStoreIC();
2686       break;
2687     }
2688     case NAMED_SUPER_PROPERTY: {
2689       __ Push(v0);
2690       VisitForStackValue(prop->obj()->AsSuperPropertyReference()->this_var());
2691       VisitForAccumulatorValue(
2692           prop->obj()->AsSuperPropertyReference()->home_object());
2693       // stack: value, this; v0: home_object
2694       Register scratch = a2;
2695       Register scratch2 = a3;
2696       __ mov(scratch, result_register());             // home_object
2697       __ lw(v0, MemOperand(sp, kPointerSize));        // value
2698       __ lw(scratch2, MemOperand(sp, 0));             // this
2699       __ sw(scratch2, MemOperand(sp, kPointerSize));  // this
2700       __ sw(scratch, MemOperand(sp, 0));              // home_object
2701       // stack: this, home_object; v0: value
2702       EmitNamedSuperPropertyStore(prop);
2703       break;
2704     }
2705     case KEYED_SUPER_PROPERTY: {
2706       __ Push(v0);
2707       VisitForStackValue(prop->obj()->AsSuperPropertyReference()->this_var());
2708       VisitForStackValue(
2709           prop->obj()->AsSuperPropertyReference()->home_object());
2710       VisitForAccumulatorValue(prop->key());
2711       Register scratch = a2;
2712       Register scratch2 = a3;
2713       __ lw(scratch2, MemOperand(sp, 2 * kPointerSize));  // value
2714       // stack: value, this, home_object; v0: key, a3: value
2715       __ lw(scratch, MemOperand(sp, kPointerSize));  // this
2716       __ sw(scratch, MemOperand(sp, 2 * kPointerSize));
2717       __ lw(scratch, MemOperand(sp, 0));  // home_object
2718       __ sw(scratch, MemOperand(sp, kPointerSize));
2719       __ sw(v0, MemOperand(sp, 0));
2720       __ Move(v0, scratch2);
2721       // stack: this, home_object, key; v0: value.
2722       EmitKeyedSuperPropertyStore(prop);
2723       break;
2724     }
2725     case KEYED_PROPERTY: {
2726       __ push(result_register());  // Preserve value.
2727       VisitForStackValue(prop->obj());
2728       VisitForAccumulatorValue(prop->key());
2729       __ mov(StoreDescriptor::NameRegister(), result_register());
2730       __ Pop(StoreDescriptor::ValueRegister(),
2731              StoreDescriptor::ReceiverRegister());
2732       if (FLAG_vector_stores) EmitLoadStoreICSlot(slot);
2733       Handle<Code> ic =
2734           CodeFactory::KeyedStoreIC(isolate(), language_mode()).code();
2735       CallIC(ic);
2736       break;
2737     }
2738   }
2739   context()->Plug(v0);
2740 }
2741
2742
2743 void FullCodeGenerator::EmitStoreToStackLocalOrContextSlot(
2744     Variable* var, MemOperand location) {
2745   __ sw(result_register(), location);
2746   if (var->IsContextSlot()) {
2747     // RecordWrite may destroy all its register arguments.
2748     __ Move(a3, result_register());
2749     int offset = Context::SlotOffset(var->index());
2750     __ RecordWriteContextSlot(
2751         a1, offset, a3, a2, kRAHasBeenSaved, kDontSaveFPRegs);
2752   }
2753 }
2754
2755
2756 void FullCodeGenerator::EmitVariableAssignment(Variable* var, Token::Value op,
2757                                                FeedbackVectorICSlot slot) {
2758   if (var->IsUnallocated()) {
2759     // Global var, const, or let.
2760     __ mov(StoreDescriptor::ValueRegister(), result_register());
2761     __ li(StoreDescriptor::NameRegister(), Operand(var->name()));
2762     __ lw(StoreDescriptor::ReceiverRegister(), GlobalObjectOperand());
2763     if (FLAG_vector_stores) EmitLoadStoreICSlot(slot);
2764     CallStoreIC();
2765
2766   } else if (var->IsGlobalSlot()) {
2767     // Global var, const, or let.
2768     DCHECK(var->index() > 0);
2769     DCHECK(var->IsStaticGlobalObjectProperty());
2770     // Each var occupies two slots in the context: for reads and writes.
2771     int slot_index = var->index() + 1;
2772     int depth = scope()->ContextChainLength(var->scope());
2773     __ li(StoreGlobalViaContextDescriptor::DepthRegister(),
2774           Operand(Smi::FromInt(depth)));
2775     __ li(StoreGlobalViaContextDescriptor::SlotRegister(),
2776           Operand(Smi::FromInt(slot_index)));
2777     __ li(StoreGlobalViaContextDescriptor::NameRegister(),
2778           Operand(var->name()));
2779     __ mov(StoreGlobalViaContextDescriptor::ValueRegister(), result_register());
2780     StoreGlobalViaContextStub stub(isolate(), depth, language_mode());
2781     __ CallStub(&stub);
2782
2783   } else if (var->mode() == LET && op != Token::INIT_LET) {
2784     // Non-initializing assignment to let variable needs a write barrier.
2785     DCHECK(!var->IsLookupSlot());
2786     DCHECK(var->IsStackAllocated() || var->IsContextSlot());
2787     Label assign;
2788     MemOperand location = VarOperand(var, a1);
2789     __ lw(a3, location);
2790     __ LoadRoot(t0, Heap::kTheHoleValueRootIndex);
2791     __ Branch(&assign, ne, a3, Operand(t0));
2792     __ li(a3, Operand(var->name()));
2793     __ push(a3);
2794     __ CallRuntime(Runtime::kThrowReferenceError, 1);
2795     // Perform the assignment.
2796     __ bind(&assign);
2797     EmitStoreToStackLocalOrContextSlot(var, location);
2798
2799   } else if (var->mode() == CONST && op != Token::INIT_CONST) {
2800     // Assignment to const variable needs a write barrier.
2801     DCHECK(!var->IsLookupSlot());
2802     DCHECK(var->IsStackAllocated() || var->IsContextSlot());
2803     Label const_error;
2804     MemOperand location = VarOperand(var, a1);
2805     __ lw(a3, location);
2806     __ LoadRoot(at, Heap::kTheHoleValueRootIndex);
2807     __ Branch(&const_error, ne, a3, Operand(at));
2808     __ li(a3, Operand(var->name()));
2809     __ push(a3);
2810     __ CallRuntime(Runtime::kThrowReferenceError, 1);
2811     __ bind(&const_error);
2812     __ CallRuntime(Runtime::kThrowConstAssignError, 0);
2813
2814   } else if (!var->is_const_mode() || op == Token::INIT_CONST) {
2815     if (var->IsLookupSlot()) {
2816       // Assignment to var.
2817       __ li(a1, Operand(var->name()));
2818       __ li(a0, Operand(Smi::FromInt(language_mode())));
2819       __ Push(v0, cp, a1, a0);  // Value, context, name, language mode.
2820       __ CallRuntime(Runtime::kStoreLookupSlot, 4);
2821     } else {
2822       // Assignment to var or initializing assignment to let/const in harmony
2823       // mode.
2824       DCHECK((var->IsStackAllocated() || var->IsContextSlot()));
2825       MemOperand location = VarOperand(var, a1);
2826       if (generate_debug_code_ && op == Token::INIT_LET) {
2827         // Check for an uninitialized let binding.
2828         __ lw(a2, location);
2829         __ LoadRoot(t0, Heap::kTheHoleValueRootIndex);
2830         __ Check(eq, kLetBindingReInitialization, a2, Operand(t0));
2831       }
2832       EmitStoreToStackLocalOrContextSlot(var, location);
2833     }
2834
2835   } else if (op == Token::INIT_CONST_LEGACY) {
2836     // Const initializers need a write barrier.
2837     DCHECK(!var->IsParameter());  // No const parameters.
2838     if (var->IsLookupSlot()) {
2839       __ li(a0, Operand(var->name()));
2840       __ Push(v0, cp, a0);  // Context and name.
2841       __ CallRuntime(Runtime::kInitializeLegacyConstLookupSlot, 3);
2842     } else {
2843       DCHECK(var->IsStackAllocated() || var->IsContextSlot());
2844       Label skip;
2845       MemOperand location = VarOperand(var, a1);
2846       __ lw(a2, location);
2847       __ LoadRoot(at, Heap::kTheHoleValueRootIndex);
2848       __ Branch(&skip, ne, a2, Operand(at));
2849       EmitStoreToStackLocalOrContextSlot(var, location);
2850       __ bind(&skip);
2851     }
2852
2853   } else {
2854     DCHECK(var->mode() == CONST_LEGACY && op != Token::INIT_CONST_LEGACY);
2855     if (is_strict(language_mode())) {
2856       __ CallRuntime(Runtime::kThrowConstAssignError, 0);
2857     }
2858     // Silently ignore store in sloppy mode.
2859   }
2860 }
2861
2862
2863 void FullCodeGenerator::EmitNamedPropertyAssignment(Assignment* expr) {
2864   // Assignment to a property, using a named store IC.
2865   Property* prop = expr->target()->AsProperty();
2866   DCHECK(prop != NULL);
2867   DCHECK(prop->key()->IsLiteral());
2868
2869   __ mov(StoreDescriptor::ValueRegister(), result_register());
2870   __ li(StoreDescriptor::NameRegister(),
2871         Operand(prop->key()->AsLiteral()->value()));
2872   __ pop(StoreDescriptor::ReceiverRegister());
2873   if (FLAG_vector_stores) {
2874     EmitLoadStoreICSlot(expr->AssignmentSlot());
2875     CallStoreIC();
2876   } else {
2877     CallStoreIC(expr->AssignmentFeedbackId());
2878   }
2879
2880   PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
2881   context()->Plug(v0);
2882 }
2883
2884
2885 void FullCodeGenerator::EmitNamedSuperPropertyStore(Property* prop) {
2886   // Assignment to named property of super.
2887   // v0 : value
2888   // stack : receiver ('this'), home_object
2889   DCHECK(prop != NULL);
2890   Literal* key = prop->key()->AsLiteral();
2891   DCHECK(key != NULL);
2892
2893   __ Push(key->value());
2894   __ Push(v0);
2895   __ CallRuntime((is_strict(language_mode()) ? Runtime::kStoreToSuper_Strict
2896                                              : Runtime::kStoreToSuper_Sloppy),
2897                  4);
2898 }
2899
2900
2901 void FullCodeGenerator::EmitKeyedSuperPropertyStore(Property* prop) {
2902   // Assignment to named property of super.
2903   // v0 : value
2904   // stack : receiver ('this'), home_object, key
2905   DCHECK(prop != NULL);
2906
2907   __ Push(v0);
2908   __ CallRuntime(
2909       (is_strict(language_mode()) ? Runtime::kStoreKeyedToSuper_Strict
2910                                   : Runtime::kStoreKeyedToSuper_Sloppy),
2911       4);
2912 }
2913
2914
2915 void FullCodeGenerator::EmitKeyedPropertyAssignment(Assignment* expr) {
2916   // Assignment to a property, using a keyed store IC.
2917   // Call keyed store IC.
2918   // The arguments are:
2919   // - a0 is the value,
2920   // - a1 is the key,
2921   // - a2 is the receiver.
2922   __ mov(StoreDescriptor::ValueRegister(), result_register());
2923   __ Pop(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister());
2924   DCHECK(StoreDescriptor::ValueRegister().is(a0));
2925
2926   Handle<Code> ic =
2927       CodeFactory::KeyedStoreIC(isolate(), language_mode()).code();
2928   if (FLAG_vector_stores) {
2929     EmitLoadStoreICSlot(expr->AssignmentSlot());
2930     CallIC(ic);
2931   } else {
2932     CallIC(ic, expr->AssignmentFeedbackId());
2933   }
2934
2935   PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
2936   context()->Plug(v0);
2937 }
2938
2939
2940 void FullCodeGenerator::VisitProperty(Property* expr) {
2941   Comment cmnt(masm_, "[ Property");
2942   SetExpressionPosition(expr);
2943
2944   Expression* key = expr->key();
2945
2946   if (key->IsPropertyName()) {
2947     if (!expr->IsSuperAccess()) {
2948       VisitForAccumulatorValue(expr->obj());
2949       __ Move(LoadDescriptor::ReceiverRegister(), v0);
2950       EmitNamedPropertyLoad(expr);
2951     } else {
2952       VisitForStackValue(expr->obj()->AsSuperPropertyReference()->this_var());
2953       VisitForStackValue(
2954           expr->obj()->AsSuperPropertyReference()->home_object());
2955       EmitNamedSuperPropertyLoad(expr);
2956     }
2957   } else {
2958     if (!expr->IsSuperAccess()) {
2959       VisitForStackValue(expr->obj());
2960       VisitForAccumulatorValue(expr->key());
2961       __ Move(LoadDescriptor::NameRegister(), v0);
2962       __ pop(LoadDescriptor::ReceiverRegister());
2963       EmitKeyedPropertyLoad(expr);
2964     } else {
2965       VisitForStackValue(expr->obj()->AsSuperPropertyReference()->this_var());
2966       VisitForStackValue(
2967           expr->obj()->AsSuperPropertyReference()->home_object());
2968       VisitForStackValue(expr->key());
2969       EmitKeyedSuperPropertyLoad(expr);
2970     }
2971   }
2972   PrepareForBailoutForId(expr->LoadId(), TOS_REG);
2973   context()->Plug(v0);
2974 }
2975
2976
2977 void FullCodeGenerator::CallIC(Handle<Code> code,
2978                                TypeFeedbackId id) {
2979   ic_total_count_++;
2980   __ Call(code, RelocInfo::CODE_TARGET, id);
2981 }
2982
2983
2984 // Code common for calls using the IC.
2985 void FullCodeGenerator::EmitCallWithLoadIC(Call* expr) {
2986   Expression* callee = expr->expression();
2987
2988   CallICState::CallType call_type =
2989       callee->IsVariableProxy() ? CallICState::FUNCTION : CallICState::METHOD;
2990
2991   // Get the target function.
2992   if (call_type == CallICState::FUNCTION) {
2993     { StackValueContext context(this);
2994       EmitVariableLoad(callee->AsVariableProxy());
2995       PrepareForBailout(callee, NO_REGISTERS);
2996     }
2997     // Push undefined as receiver. This is patched in the method prologue if it
2998     // is a sloppy mode method.
2999     __ LoadRoot(at, Heap::kUndefinedValueRootIndex);
3000     __ push(at);
3001   } else {
3002     // Load the function from the receiver.
3003     DCHECK(callee->IsProperty());
3004     DCHECK(!callee->AsProperty()->IsSuperAccess());
3005     __ lw(LoadDescriptor::ReceiverRegister(), MemOperand(sp, 0));
3006     EmitNamedPropertyLoad(callee->AsProperty());
3007     PrepareForBailoutForId(callee->AsProperty()->LoadId(), TOS_REG);
3008     // Push the target function under the receiver.
3009     __ lw(at, MemOperand(sp, 0));
3010     __ push(at);
3011     __ sw(v0, MemOperand(sp, kPointerSize));
3012   }
3013
3014   EmitCall(expr, call_type);
3015 }
3016
3017
3018 void FullCodeGenerator::EmitSuperCallWithLoadIC(Call* expr) {
3019   SetExpressionPosition(expr);
3020   Expression* callee = expr->expression();
3021   DCHECK(callee->IsProperty());
3022   Property* prop = callee->AsProperty();
3023   DCHECK(prop->IsSuperAccess());
3024
3025   Literal* key = prop->key()->AsLiteral();
3026   DCHECK(!key->value()->IsSmi());
3027   // Load the function from the receiver.
3028   const Register scratch = a1;
3029   SuperPropertyReference* super_ref = prop->obj()->AsSuperPropertyReference();
3030   VisitForAccumulatorValue(super_ref->home_object());
3031   __ mov(scratch, v0);
3032   VisitForAccumulatorValue(super_ref->this_var());
3033   __ Push(scratch, v0, v0, scratch);
3034   __ Push(key->value());
3035   __ Push(Smi::FromInt(language_mode()));
3036
3037   // Stack here:
3038   //  - home_object
3039   //  - this (receiver)
3040   //  - this (receiver) <-- LoadFromSuper will pop here and below.
3041   //  - home_object
3042   //  - key
3043   //  - language_mode
3044   __ CallRuntime(Runtime::kLoadFromSuper, 4);
3045
3046   // Replace home_object with target function.
3047   __ sw(v0, MemOperand(sp, kPointerSize));
3048
3049   // Stack here:
3050   // - target function
3051   // - this (receiver)
3052   EmitCall(expr, CallICState::METHOD);
3053 }
3054
3055
3056 // Code common for calls using the IC.
3057 void FullCodeGenerator::EmitKeyedCallWithLoadIC(Call* expr,
3058                                                 Expression* key) {
3059   // Load the key.
3060   VisitForAccumulatorValue(key);
3061
3062   Expression* callee = expr->expression();
3063
3064   // Load the function from the receiver.
3065   DCHECK(callee->IsProperty());
3066   __ lw(LoadDescriptor::ReceiverRegister(), MemOperand(sp, 0));
3067   __ Move(LoadDescriptor::NameRegister(), v0);
3068   EmitKeyedPropertyLoad(callee->AsProperty());
3069   PrepareForBailoutForId(callee->AsProperty()->LoadId(), TOS_REG);
3070
3071   // Push the target function under the receiver.
3072   __ lw(at, MemOperand(sp, 0));
3073   __ push(at);
3074   __ sw(v0, MemOperand(sp, kPointerSize));
3075
3076   EmitCall(expr, CallICState::METHOD);
3077 }
3078
3079
3080 void FullCodeGenerator::EmitKeyedSuperCallWithLoadIC(Call* expr) {
3081   Expression* callee = expr->expression();
3082   DCHECK(callee->IsProperty());
3083   Property* prop = callee->AsProperty();
3084   DCHECK(prop->IsSuperAccess());
3085
3086   SetExpressionPosition(prop);
3087   // Load the function from the receiver.
3088   const Register scratch = a1;
3089   SuperPropertyReference* super_ref = prop->obj()->AsSuperPropertyReference();
3090   VisitForAccumulatorValue(super_ref->home_object());
3091   __ Move(scratch, v0);
3092   VisitForAccumulatorValue(super_ref->this_var());
3093   __ Push(scratch, v0, v0, scratch);
3094   VisitForStackValue(prop->key());
3095   __ Push(Smi::FromInt(language_mode()));
3096
3097   // Stack here:
3098   //  - home_object
3099   //  - this (receiver)
3100   //  - this (receiver) <-- LoadKeyedFromSuper will pop here and below.
3101   //  - home_object
3102   //  - key
3103   //  - language_mode
3104   __ CallRuntime(Runtime::kLoadKeyedFromSuper, 4);
3105
3106   // Replace home_object with target function.
3107   __ sw(v0, MemOperand(sp, kPointerSize));
3108
3109   // Stack here:
3110   // - target function
3111   // - this (receiver)
3112   EmitCall(expr, CallICState::METHOD);
3113 }
3114
3115
3116 void FullCodeGenerator::EmitCall(Call* expr, CallICState::CallType call_type) {
3117   // Load the arguments.
3118   ZoneList<Expression*>* args = expr->arguments();
3119   int arg_count = args->length();
3120   for (int i = 0; i < arg_count; i++) {
3121     VisitForStackValue(args->at(i));
3122   }
3123
3124   // Record source position of the IC call.
3125   SetCallPosition(expr, arg_count);
3126   Handle<Code> ic = CodeFactory::CallIC(isolate(), arg_count, call_type).code();
3127   __ li(a3, Operand(SmiFromSlot(expr->CallFeedbackICSlot())));
3128   __ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize));
3129   // Don't assign a type feedback id to the IC, since type feedback is provided
3130   // by the vector above.
3131   CallIC(ic);
3132
3133   RecordJSReturnSite(expr);
3134   // Restore context register.
3135   __ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
3136   context()->DropAndPlug(1, v0);
3137 }
3138
3139
3140 void FullCodeGenerator::EmitResolvePossiblyDirectEval(int arg_count) {
3141   // t3: copy of the first argument or undefined if it doesn't exist.
3142   if (arg_count > 0) {
3143     __ lw(t3, MemOperand(sp, arg_count * kPointerSize));
3144   } else {
3145     __ LoadRoot(t3, Heap::kUndefinedValueRootIndex);
3146   }
3147
3148   // t2: the receiver of the enclosing function.
3149   __ lw(t2, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
3150
3151   // t1: the language mode.
3152   __ li(t1, Operand(Smi::FromInt(language_mode())));
3153
3154   // t0: the start position of the scope the calls resides in.
3155   __ li(t0, Operand(Smi::FromInt(scope()->start_position())));
3156
3157   // Do the runtime call.
3158   __ Push(t3, t2, t1, t0);
3159   __ CallRuntime(Runtime::kResolvePossiblyDirectEval, 5);
3160 }
3161
3162
3163 void FullCodeGenerator::EmitInitializeThisAfterSuper(
3164     SuperCallReference* super_ref, FeedbackVectorICSlot slot) {
3165   Variable* this_var = super_ref->this_var()->var();
3166   GetVar(a1, this_var);
3167   __ LoadRoot(at, Heap::kTheHoleValueRootIndex);
3168   Label uninitialized_this;
3169   __ Branch(&uninitialized_this, eq, a1, Operand(at));
3170   __ li(a0, Operand(this_var->name()));
3171   __ Push(a0);
3172   __ CallRuntime(Runtime::kThrowReferenceError, 1);
3173   __ bind(&uninitialized_this);
3174
3175   EmitVariableAssignment(this_var, Token::INIT_CONST, slot);
3176 }
3177
3178
3179 // See http://www.ecma-international.org/ecma-262/6.0/#sec-function-calls.
3180 void FullCodeGenerator::PushCalleeAndWithBaseObject(Call* expr) {
3181   VariableProxy* callee = expr->expression()->AsVariableProxy();
3182   if (callee->var()->IsLookupSlot()) {
3183     Label slow, done;
3184
3185     SetExpressionPosition(callee);
3186     // Generate code for loading from variables potentially shadowed by
3187     // eval-introduced variables.
3188     EmitDynamicLookupFastCase(callee, NOT_INSIDE_TYPEOF, &slow, &done);
3189
3190     __ bind(&slow);
3191     // Call the runtime to find the function to call (returned in v0)
3192     // and the object holding it (returned in v1).
3193     DCHECK(!context_register().is(a2));
3194     __ li(a2, Operand(callee->name()));
3195     __ Push(context_register(), a2);
3196     __ CallRuntime(Runtime::kLoadLookupSlot, 2);
3197     __ Push(v0, v1);  // Function, receiver.
3198     PrepareForBailoutForId(expr->LookupId(), NO_REGISTERS);
3199
3200     // If fast case code has been generated, emit code to push the
3201     // function and receiver and have the slow path jump around this
3202     // code.
3203     if (done.is_linked()) {
3204       Label call;
3205       __ Branch(&call);
3206       __ bind(&done);
3207       // Push function.
3208       __ push(v0);
3209       // The receiver is implicitly the global receiver. Indicate this
3210       // by passing the hole to the call function stub.
3211       __ LoadRoot(a1, Heap::kUndefinedValueRootIndex);
3212       __ push(a1);
3213       __ bind(&call);
3214     }
3215   } else {
3216     VisitForStackValue(callee);
3217     // refEnv.WithBaseObject()
3218     __ LoadRoot(a2, Heap::kUndefinedValueRootIndex);
3219     __ push(a2);  // Reserved receiver slot.
3220   }
3221 }
3222
3223
3224 void FullCodeGenerator::VisitCall(Call* expr) {
3225 #ifdef DEBUG
3226   // We want to verify that RecordJSReturnSite gets called on all paths
3227   // through this function.  Avoid early returns.
3228   expr->return_is_recorded_ = false;
3229 #endif
3230
3231   Comment cmnt(masm_, "[ Call");
3232   Expression* callee = expr->expression();
3233   Call::CallType call_type = expr->GetCallType(isolate());
3234
3235   if (call_type == Call::POSSIBLY_EVAL_CALL) {
3236     // In a call to eval, we first call RuntimeHidden_ResolvePossiblyDirectEval
3237     // to resolve the function we need to call.  Then we call the resolved
3238     // function using the given arguments.
3239     ZoneList<Expression*>* args = expr->arguments();
3240     int arg_count = args->length();
3241     PushCalleeAndWithBaseObject(expr);
3242
3243     // Push the arguments.
3244     for (int i = 0; i < arg_count; i++) {
3245       VisitForStackValue(args->at(i));
3246     }
3247
3248     // Push a copy of the function (found below the arguments) and
3249     // resolve eval.
3250     __ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize));
3251     __ push(a1);
3252     EmitResolvePossiblyDirectEval(arg_count);
3253
3254     // Touch up the stack with the resolved function.
3255     __ sw(v0, MemOperand(sp, (arg_count + 1) * kPointerSize));
3256
3257     PrepareForBailoutForId(expr->EvalId(), NO_REGISTERS);
3258     // Record source position for debugger.
3259     SetCallPosition(expr, arg_count);
3260     CallFunctionStub stub(isolate(), arg_count, NO_CALL_FUNCTION_FLAGS);
3261     __ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize));
3262     __ CallStub(&stub);
3263     RecordJSReturnSite(expr);
3264     // Restore context register.
3265     __ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
3266     context()->DropAndPlug(1, v0);
3267   } else if (call_type == Call::GLOBAL_CALL) {
3268     EmitCallWithLoadIC(expr);
3269   } else if (call_type == Call::LOOKUP_SLOT_CALL) {
3270     // Call to a lookup slot (dynamically introduced variable).
3271     PushCalleeAndWithBaseObject(expr);
3272     EmitCall(expr);
3273   } else if (call_type == Call::PROPERTY_CALL) {
3274     Property* property = callee->AsProperty();
3275     bool is_named_call = property->key()->IsPropertyName();
3276     if (property->IsSuperAccess()) {
3277       if (is_named_call) {
3278         EmitSuperCallWithLoadIC(expr);
3279       } else {
3280         EmitKeyedSuperCallWithLoadIC(expr);
3281       }
3282     } else {
3283         VisitForStackValue(property->obj());
3284       if (is_named_call) {
3285         EmitCallWithLoadIC(expr);
3286       } else {
3287         EmitKeyedCallWithLoadIC(expr, property->key());
3288       }
3289     }
3290   } else if (call_type == Call::SUPER_CALL) {
3291     EmitSuperConstructorCall(expr);
3292   } else {
3293     DCHECK(call_type == Call::OTHER_CALL);
3294     // Call to an arbitrary expression not handled specially above.
3295       VisitForStackValue(callee);
3296     __ LoadRoot(a1, Heap::kUndefinedValueRootIndex);
3297     __ push(a1);
3298     // Emit function call.
3299     EmitCall(expr);
3300   }
3301
3302 #ifdef DEBUG
3303   // RecordJSReturnSite should have been called.
3304   DCHECK(expr->return_is_recorded_);
3305 #endif
3306 }
3307
3308
3309 void FullCodeGenerator::VisitCallNew(CallNew* expr) {
3310   Comment cmnt(masm_, "[ CallNew");
3311   // According to ECMA-262, section 11.2.2, page 44, the function
3312   // expression in new calls must be evaluated before the
3313   // arguments.
3314
3315   // Push constructor on the stack.  If it's not a function it's used as
3316   // receiver for CALL_NON_FUNCTION, otherwise the value on the stack is
3317   // ignored.
3318   DCHECK(!expr->expression()->IsSuperPropertyReference());
3319   VisitForStackValue(expr->expression());
3320
3321   // Push the arguments ("left-to-right") on the stack.
3322   ZoneList<Expression*>* args = expr->arguments();
3323   int arg_count = args->length();
3324   for (int i = 0; i < arg_count; i++) {
3325     VisitForStackValue(args->at(i));
3326   }
3327
3328   // Call the construct call builtin that handles allocation and
3329   // constructor invocation.
3330   SetConstructCallPosition(expr);
3331
3332   // Load function and argument count into a1 and a0.
3333   __ li(a0, Operand(arg_count));
3334   __ lw(a1, MemOperand(sp, arg_count * kPointerSize));
3335
3336   // Record call targets in unoptimized code.
3337   if (FLAG_pretenuring_call_new) {
3338     EnsureSlotContainsAllocationSite(expr->AllocationSiteFeedbackSlot());
3339     DCHECK(expr->AllocationSiteFeedbackSlot().ToInt() ==
3340            expr->CallNewFeedbackSlot().ToInt() + 1);
3341   }
3342
3343   __ li(a2, FeedbackVector());
3344   __ li(a3, Operand(SmiFromSlot(expr->CallNewFeedbackSlot())));
3345
3346   CallConstructStub stub(isolate(), RECORD_CONSTRUCTOR_TARGET);
3347   __ Call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL);
3348   PrepareForBailoutForId(expr->ReturnId(), TOS_REG);
3349   context()->Plug(v0);
3350 }
3351
3352
3353 void FullCodeGenerator::EmitSuperConstructorCall(Call* expr) {
3354   SuperCallReference* super_call_ref =
3355       expr->expression()->AsSuperCallReference();
3356   DCHECK_NOT_NULL(super_call_ref);
3357
3358   EmitLoadSuperConstructor(super_call_ref);
3359   __ push(result_register());
3360
3361   // Push the arguments ("left-to-right") on the stack.
3362   ZoneList<Expression*>* args = expr->arguments();
3363   int arg_count = args->length();
3364   for (int i = 0; i < arg_count; i++) {
3365     VisitForStackValue(args->at(i));
3366   }
3367
3368   // Call the construct call builtin that handles allocation and
3369   // constructor invocation.
3370   SetConstructCallPosition(expr);
3371
3372   // Load original constructor into t0.
3373   VisitForAccumulatorValue(super_call_ref->new_target_var());
3374   __ mov(t0, result_register());
3375
3376   // Load function and argument count into a1 and a0.
3377   __ li(a0, Operand(arg_count));
3378   __ lw(a1, MemOperand(sp, arg_count * kPointerSize));
3379
3380   // Record call targets in unoptimized code.
3381   if (FLAG_pretenuring_call_new) {
3382     UNREACHABLE();
3383     /* TODO(dslomov): support pretenuring.
3384     EnsureSlotContainsAllocationSite(expr->AllocationSiteFeedbackSlot());
3385     DCHECK(expr->AllocationSiteFeedbackSlot().ToInt() ==
3386            expr->CallNewFeedbackSlot().ToInt() + 1);
3387     */
3388   }
3389
3390   __ li(a2, FeedbackVector());
3391   __ li(a3, Operand(SmiFromSlot(expr->CallFeedbackSlot())));
3392
3393   CallConstructStub stub(isolate(), SUPER_CALL_RECORD_TARGET);
3394   __ Call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL);
3395
3396   RecordJSReturnSite(expr);
3397
3398   EmitInitializeThisAfterSuper(super_call_ref, expr->CallFeedbackICSlot());
3399   context()->Plug(v0);
3400 }
3401
3402
3403 void FullCodeGenerator::EmitIsSmi(CallRuntime* expr) {
3404   ZoneList<Expression*>* args = expr->arguments();
3405   DCHECK(args->length() == 1);
3406
3407   VisitForAccumulatorValue(args->at(0));
3408
3409   Label materialize_true, materialize_false;
3410   Label* if_true = NULL;
3411   Label* if_false = NULL;
3412   Label* fall_through = NULL;
3413   context()->PrepareTest(&materialize_true, &materialize_false,
3414                          &if_true, &if_false, &fall_through);
3415
3416   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3417   __ SmiTst(v0, t0);
3418   Split(eq, t0, Operand(zero_reg), if_true, if_false, fall_through);
3419
3420   context()->Plug(if_true, if_false);
3421 }
3422
3423
3424 void FullCodeGenerator::EmitIsNonNegativeSmi(CallRuntime* expr) {
3425   ZoneList<Expression*>* args = expr->arguments();
3426   DCHECK(args->length() == 1);
3427
3428   VisitForAccumulatorValue(args->at(0));
3429
3430   Label materialize_true, materialize_false;
3431   Label* if_true = NULL;
3432   Label* if_false = NULL;
3433   Label* fall_through = NULL;
3434   context()->PrepareTest(&materialize_true, &materialize_false,
3435                          &if_true, &if_false, &fall_through);
3436
3437   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3438   __ NonNegativeSmiTst(v0, at);
3439   Split(eq, at, Operand(zero_reg), if_true, if_false, fall_through);
3440
3441   context()->Plug(if_true, if_false);
3442 }
3443
3444
3445 void FullCodeGenerator::EmitIsObject(CallRuntime* expr) {
3446   ZoneList<Expression*>* args = expr->arguments();
3447   DCHECK(args->length() == 1);
3448
3449   VisitForAccumulatorValue(args->at(0));
3450
3451   Label materialize_true, materialize_false;
3452   Label* if_true = NULL;
3453   Label* if_false = NULL;
3454   Label* fall_through = NULL;
3455   context()->PrepareTest(&materialize_true, &materialize_false,
3456                          &if_true, &if_false, &fall_through);
3457
3458   __ JumpIfSmi(v0, if_false);
3459   __ LoadRoot(at, Heap::kNullValueRootIndex);
3460   __ Branch(if_true, eq, v0, Operand(at));
3461   __ lw(a2, FieldMemOperand(v0, HeapObject::kMapOffset));
3462   // Undetectable objects behave like undefined when tested with typeof.
3463   __ lbu(a1, FieldMemOperand(a2, Map::kBitFieldOffset));
3464   __ And(at, a1, Operand(1 << Map::kIsUndetectable));
3465   __ Branch(if_false, ne, at, Operand(zero_reg));
3466   __ lbu(a1, FieldMemOperand(a2, Map::kInstanceTypeOffset));
3467   __ Branch(if_false, lt, a1, Operand(FIRST_NONCALLABLE_SPEC_OBJECT_TYPE));
3468   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3469   Split(le, a1, Operand(LAST_NONCALLABLE_SPEC_OBJECT_TYPE),
3470         if_true, if_false, fall_through);
3471
3472   context()->Plug(if_true, if_false);
3473 }
3474
3475
3476 void FullCodeGenerator::EmitIsSpecObject(CallRuntime* expr) {
3477   ZoneList<Expression*>* args = expr->arguments();
3478   DCHECK(args->length() == 1);
3479
3480   VisitForAccumulatorValue(args->at(0));
3481
3482   Label materialize_true, materialize_false;
3483   Label* if_true = NULL;
3484   Label* if_false = NULL;
3485   Label* fall_through = NULL;
3486   context()->PrepareTest(&materialize_true, &materialize_false,
3487                          &if_true, &if_false, &fall_through);
3488
3489   __ JumpIfSmi(v0, if_false);
3490   __ GetObjectType(v0, a1, a1);
3491   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3492   Split(ge, a1, Operand(FIRST_SPEC_OBJECT_TYPE),
3493         if_true, if_false, fall_through);
3494
3495   context()->Plug(if_true, if_false);
3496 }
3497
3498
3499 void FullCodeGenerator::EmitIsUndetectableObject(CallRuntime* expr) {
3500   ZoneList<Expression*>* args = expr->arguments();
3501   DCHECK(args->length() == 1);
3502
3503   VisitForAccumulatorValue(args->at(0));
3504
3505   Label materialize_true, materialize_false;
3506   Label* if_true = NULL;
3507   Label* if_false = NULL;
3508   Label* fall_through = NULL;
3509   context()->PrepareTest(&materialize_true, &materialize_false,
3510                          &if_true, &if_false, &fall_through);
3511
3512   __ JumpIfSmi(v0, if_false);
3513   __ lw(a1, FieldMemOperand(v0, HeapObject::kMapOffset));
3514   __ lbu(a1, FieldMemOperand(a1, Map::kBitFieldOffset));
3515   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3516   __ And(at, a1, Operand(1 << Map::kIsUndetectable));
3517   Split(ne, at, Operand(zero_reg), if_true, if_false, fall_through);
3518
3519   context()->Plug(if_true, if_false);
3520 }
3521
3522
3523 void FullCodeGenerator::EmitIsStringWrapperSafeForDefaultValueOf(
3524     CallRuntime* expr) {
3525   ZoneList<Expression*>* args = expr->arguments();
3526   DCHECK(args->length() == 1);
3527
3528   VisitForAccumulatorValue(args->at(0));
3529
3530   Label materialize_true, materialize_false, skip_lookup;
3531   Label* if_true = NULL;
3532   Label* if_false = NULL;
3533   Label* fall_through = NULL;
3534   context()->PrepareTest(&materialize_true, &materialize_false,
3535                          &if_true, &if_false, &fall_through);
3536
3537   __ AssertNotSmi(v0);
3538
3539   __ lw(a1, FieldMemOperand(v0, HeapObject::kMapOffset));
3540   __ lbu(t0, FieldMemOperand(a1, Map::kBitField2Offset));
3541   __ And(t0, t0, 1 << Map::kStringWrapperSafeForDefaultValueOf);
3542   __ Branch(&skip_lookup, ne, t0, Operand(zero_reg));
3543
3544   // Check for fast case object. Generate false result for slow case object.
3545   __ lw(a2, FieldMemOperand(v0, JSObject::kPropertiesOffset));
3546   __ lw(a2, FieldMemOperand(a2, HeapObject::kMapOffset));
3547   __ LoadRoot(t0, Heap::kHashTableMapRootIndex);
3548   __ Branch(if_false, eq, a2, Operand(t0));
3549
3550   // Look for valueOf name in the descriptor array, and indicate false if
3551   // found. Since we omit an enumeration index check, if it is added via a
3552   // transition that shares its descriptor array, this is a false positive.
3553   Label entry, loop, done;
3554
3555   // Skip loop if no descriptors are valid.
3556   __ NumberOfOwnDescriptors(a3, a1);
3557   __ Branch(&done, eq, a3, Operand(zero_reg));
3558
3559   __ LoadInstanceDescriptors(a1, t0);
3560   // t0: descriptor array.
3561   // a3: valid entries in the descriptor array.
3562   STATIC_ASSERT(kSmiTag == 0);
3563   STATIC_ASSERT(kSmiTagSize == 1);
3564   STATIC_ASSERT(kPointerSize == 4);
3565   __ li(at, Operand(DescriptorArray::kDescriptorSize));
3566   __ Mul(a3, a3, at);
3567   // Calculate location of the first key name.
3568   __ Addu(t0, t0, Operand(DescriptorArray::kFirstOffset - kHeapObjectTag));
3569   // Calculate the end of the descriptor array.
3570   __ mov(a2, t0);
3571   __ sll(t1, a3, kPointerSizeLog2);
3572   __ Addu(a2, a2, t1);
3573
3574   // Loop through all the keys in the descriptor array. If one of these is the
3575   // string "valueOf" the result is false.
3576   // The use of t2 to store the valueOf string assumes that it is not otherwise
3577   // used in the loop below.
3578   __ li(t2, Operand(isolate()->factory()->value_of_string()));
3579   __ jmp(&entry);
3580   __ bind(&loop);
3581   __ lw(a3, MemOperand(t0, 0));
3582   __ Branch(if_false, eq, a3, Operand(t2));
3583   __ Addu(t0, t0, Operand(DescriptorArray::kDescriptorSize * kPointerSize));
3584   __ bind(&entry);
3585   __ Branch(&loop, ne, t0, Operand(a2));
3586
3587   __ bind(&done);
3588
3589   // Set the bit in the map to indicate that there is no local valueOf field.
3590   __ lbu(a2, FieldMemOperand(a1, Map::kBitField2Offset));
3591   __ Or(a2, a2, Operand(1 << Map::kStringWrapperSafeForDefaultValueOf));
3592   __ sb(a2, FieldMemOperand(a1, Map::kBitField2Offset));
3593
3594   __ bind(&skip_lookup);
3595
3596   // If a valueOf property is not found on the object check that its
3597   // prototype is the un-modified String prototype. If not result is false.
3598   __ lw(a2, FieldMemOperand(a1, Map::kPrototypeOffset));
3599   __ JumpIfSmi(a2, if_false);
3600   __ lw(a2, FieldMemOperand(a2, HeapObject::kMapOffset));
3601   __ lw(a3, ContextOperand(cp, Context::GLOBAL_OBJECT_INDEX));
3602   __ lw(a3, FieldMemOperand(a3, GlobalObject::kNativeContextOffset));
3603   __ lw(a3, ContextOperand(a3, Context::STRING_FUNCTION_PROTOTYPE_MAP_INDEX));
3604   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3605   Split(eq, a2, Operand(a3), if_true, if_false, fall_through);
3606
3607   context()->Plug(if_true, if_false);
3608 }
3609
3610
3611 void FullCodeGenerator::EmitIsFunction(CallRuntime* expr) {
3612   ZoneList<Expression*>* args = expr->arguments();
3613   DCHECK(args->length() == 1);
3614
3615   VisitForAccumulatorValue(args->at(0));
3616
3617   Label materialize_true, materialize_false;
3618   Label* if_true = NULL;
3619   Label* if_false = NULL;
3620   Label* fall_through = NULL;
3621   context()->PrepareTest(&materialize_true, &materialize_false,
3622                          &if_true, &if_false, &fall_through);
3623
3624   __ JumpIfSmi(v0, if_false);
3625   __ GetObjectType(v0, a1, a2);
3626   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3627   __ Branch(if_true, eq, a2, Operand(JS_FUNCTION_TYPE));
3628   __ Branch(if_false);
3629
3630   context()->Plug(if_true, if_false);
3631 }
3632
3633
3634 void FullCodeGenerator::EmitIsMinusZero(CallRuntime* expr) {
3635   ZoneList<Expression*>* args = expr->arguments();
3636   DCHECK(args->length() == 1);
3637
3638   VisitForAccumulatorValue(args->at(0));
3639
3640   Label materialize_true, materialize_false;
3641   Label* if_true = NULL;
3642   Label* if_false = NULL;
3643   Label* fall_through = NULL;
3644   context()->PrepareTest(&materialize_true, &materialize_false,
3645                          &if_true, &if_false, &fall_through);
3646
3647   __ CheckMap(v0, a1, Heap::kHeapNumberMapRootIndex, if_false, DO_SMI_CHECK);
3648   __ lw(a2, FieldMemOperand(v0, HeapNumber::kExponentOffset));
3649   __ lw(a1, FieldMemOperand(v0, HeapNumber::kMantissaOffset));
3650   __ li(t0, 0x80000000);
3651   Label not_nan;
3652   __ Branch(&not_nan, ne, a2, Operand(t0));
3653   __ mov(t0, zero_reg);
3654   __ mov(a2, a1);
3655   __ bind(&not_nan);
3656
3657   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3658   Split(eq, a2, Operand(t0), if_true, if_false, fall_through);
3659
3660   context()->Plug(if_true, if_false);
3661 }
3662
3663
3664 void FullCodeGenerator::EmitIsArray(CallRuntime* expr) {
3665   ZoneList<Expression*>* args = expr->arguments();
3666   DCHECK(args->length() == 1);
3667
3668   VisitForAccumulatorValue(args->at(0));
3669
3670   Label materialize_true, materialize_false;
3671   Label* if_true = NULL;
3672   Label* if_false = NULL;
3673   Label* fall_through = NULL;
3674   context()->PrepareTest(&materialize_true, &materialize_false,
3675                          &if_true, &if_false, &fall_through);
3676
3677   __ JumpIfSmi(v0, if_false);
3678   __ GetObjectType(v0, a1, a1);
3679   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3680   Split(eq, a1, Operand(JS_ARRAY_TYPE),
3681         if_true, if_false, fall_through);
3682
3683   context()->Plug(if_true, if_false);
3684 }
3685
3686
3687 void FullCodeGenerator::EmitIsTypedArray(CallRuntime* expr) {
3688   ZoneList<Expression*>* args = expr->arguments();
3689   DCHECK(args->length() == 1);
3690
3691   VisitForAccumulatorValue(args->at(0));
3692
3693   Label materialize_true, materialize_false;
3694   Label* if_true = NULL;
3695   Label* if_false = NULL;
3696   Label* fall_through = NULL;
3697   context()->PrepareTest(&materialize_true, &materialize_false, &if_true,
3698                          &if_false, &fall_through);
3699
3700   __ JumpIfSmi(v0, if_false);
3701   __ GetObjectType(v0, a1, a1);
3702   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3703   Split(eq, a1, Operand(JS_TYPED_ARRAY_TYPE), if_true, if_false, fall_through);
3704
3705   context()->Plug(if_true, if_false);
3706 }
3707
3708
3709 void FullCodeGenerator::EmitIsRegExp(CallRuntime* expr) {
3710   ZoneList<Expression*>* args = expr->arguments();
3711   DCHECK(args->length() == 1);
3712
3713   VisitForAccumulatorValue(args->at(0));
3714
3715   Label materialize_true, materialize_false;
3716   Label* if_true = NULL;
3717   Label* if_false = NULL;
3718   Label* fall_through = NULL;
3719   context()->PrepareTest(&materialize_true, &materialize_false,
3720                          &if_true, &if_false, &fall_through);
3721
3722   __ JumpIfSmi(v0, if_false);
3723   __ GetObjectType(v0, a1, a1);
3724   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3725   Split(eq, a1, Operand(JS_REGEXP_TYPE), if_true, if_false, fall_through);
3726
3727   context()->Plug(if_true, if_false);
3728 }
3729
3730
3731 void FullCodeGenerator::EmitIsJSProxy(CallRuntime* expr) {
3732   ZoneList<Expression*>* args = expr->arguments();
3733   DCHECK(args->length() == 1);
3734
3735   VisitForAccumulatorValue(args->at(0));
3736
3737   Label materialize_true, materialize_false;
3738   Label* if_true = NULL;
3739   Label* if_false = NULL;
3740   Label* fall_through = NULL;
3741   context()->PrepareTest(&materialize_true, &materialize_false, &if_true,
3742                          &if_false, &fall_through);
3743
3744   __ JumpIfSmi(v0, if_false);
3745   Register map = a1;
3746   Register type_reg = a2;
3747   __ GetObjectType(v0, map, type_reg);
3748   __ Subu(type_reg, type_reg, Operand(FIRST_JS_PROXY_TYPE));
3749   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3750   Split(ls, type_reg, Operand(LAST_JS_PROXY_TYPE - FIRST_JS_PROXY_TYPE),
3751         if_true, if_false, fall_through);
3752
3753   context()->Plug(if_true, if_false);
3754 }
3755
3756
3757 void FullCodeGenerator::EmitIsConstructCall(CallRuntime* expr) {
3758   DCHECK(expr->arguments()->length() == 0);
3759
3760   Label materialize_true, materialize_false;
3761   Label* if_true = NULL;
3762   Label* if_false = NULL;
3763   Label* fall_through = NULL;
3764   context()->PrepareTest(&materialize_true, &materialize_false,
3765                          &if_true, &if_false, &fall_through);
3766
3767   // Get the frame pointer for the calling frame.
3768   __ lw(a2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
3769
3770   // Skip the arguments adaptor frame if it exists.
3771   Label check_frame_marker;
3772   __ lw(a1, MemOperand(a2, StandardFrameConstants::kContextOffset));
3773   __ Branch(&check_frame_marker, ne,
3774             a1, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
3775   __ lw(a2, MemOperand(a2, StandardFrameConstants::kCallerFPOffset));
3776
3777   // Check the marker in the calling frame.
3778   __ bind(&check_frame_marker);
3779   __ lw(a1, MemOperand(a2, StandardFrameConstants::kMarkerOffset));
3780   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3781   Split(eq, a1, Operand(Smi::FromInt(StackFrame::CONSTRUCT)),
3782         if_true, if_false, fall_through);
3783
3784   context()->Plug(if_true, if_false);
3785 }
3786
3787
3788 void FullCodeGenerator::EmitObjectEquals(CallRuntime* expr) {
3789   ZoneList<Expression*>* args = expr->arguments();
3790   DCHECK(args->length() == 2);
3791
3792   // Load the two objects into registers and perform the comparison.
3793   VisitForStackValue(args->at(0));
3794   VisitForAccumulatorValue(args->at(1));
3795
3796   Label materialize_true, materialize_false;
3797   Label* if_true = NULL;
3798   Label* if_false = NULL;
3799   Label* fall_through = NULL;
3800   context()->PrepareTest(&materialize_true, &materialize_false,
3801                          &if_true, &if_false, &fall_through);
3802
3803   __ pop(a1);
3804   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3805   Split(eq, v0, Operand(a1), if_true, if_false, fall_through);
3806
3807   context()->Plug(if_true, if_false);
3808 }
3809
3810
3811 void FullCodeGenerator::EmitArguments(CallRuntime* expr) {
3812   ZoneList<Expression*>* args = expr->arguments();
3813   DCHECK(args->length() == 1);
3814
3815   // ArgumentsAccessStub expects the key in a1 and the formal
3816   // parameter count in a0.
3817   VisitForAccumulatorValue(args->at(0));
3818   __ mov(a1, v0);
3819   __ li(a0, Operand(Smi::FromInt(info_->scope()->num_parameters())));
3820   ArgumentsAccessStub stub(isolate(), ArgumentsAccessStub::READ_ELEMENT);
3821   __ CallStub(&stub);
3822   context()->Plug(v0);
3823 }
3824
3825
3826 void FullCodeGenerator::EmitArgumentsLength(CallRuntime* expr) {
3827   DCHECK(expr->arguments()->length() == 0);
3828   Label exit;
3829   // Get the number of formal parameters.
3830   __ li(v0, Operand(Smi::FromInt(info_->scope()->num_parameters())));
3831
3832   // Check if the calling frame is an arguments adaptor frame.
3833   __ lw(a2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
3834   __ lw(a3, MemOperand(a2, StandardFrameConstants::kContextOffset));
3835   __ Branch(&exit, ne, a3,
3836             Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
3837
3838   // Arguments adaptor case: Read the arguments length from the
3839   // adaptor frame.
3840   __ lw(v0, MemOperand(a2, ArgumentsAdaptorFrameConstants::kLengthOffset));
3841
3842   __ bind(&exit);
3843   context()->Plug(v0);
3844 }
3845
3846
3847 void FullCodeGenerator::EmitClassOf(CallRuntime* expr) {
3848   ZoneList<Expression*>* args = expr->arguments();
3849   DCHECK(args->length() == 1);
3850   Label done, null, function, non_function_constructor;
3851
3852   VisitForAccumulatorValue(args->at(0));
3853
3854   // If the object is a smi, we return null.
3855   __ JumpIfSmi(v0, &null);
3856
3857   // Check that the object is a JS object but take special care of JS
3858   // functions to make sure they have 'Function' as their class.
3859   // Assume that there are only two callable types, and one of them is at
3860   // either end of the type range for JS object types. Saves extra comparisons.
3861   STATIC_ASSERT(NUM_OF_CALLABLE_SPEC_OBJECT_TYPES == 2);
3862   __ GetObjectType(v0, v0, a1);  // Map is now in v0.
3863   __ Branch(&null, lt, a1, Operand(FIRST_SPEC_OBJECT_TYPE));
3864
3865   STATIC_ASSERT(FIRST_NONCALLABLE_SPEC_OBJECT_TYPE ==
3866                 FIRST_SPEC_OBJECT_TYPE + 1);
3867   __ Branch(&function, eq, a1, Operand(FIRST_SPEC_OBJECT_TYPE));
3868
3869   STATIC_ASSERT(LAST_NONCALLABLE_SPEC_OBJECT_TYPE ==
3870                 LAST_SPEC_OBJECT_TYPE - 1);
3871   __ Branch(&function, eq, a1, Operand(LAST_SPEC_OBJECT_TYPE));
3872   // Assume that there is no larger type.
3873   STATIC_ASSERT(LAST_NONCALLABLE_SPEC_OBJECT_TYPE == LAST_TYPE - 1);
3874
3875   // Check if the constructor in the map is a JS function.
3876   Register instance_type = a2;
3877   __ GetMapConstructor(v0, v0, a1, instance_type);
3878   __ Branch(&non_function_constructor, ne, instance_type,
3879             Operand(JS_FUNCTION_TYPE));
3880
3881   // v0 now contains the constructor function. Grab the
3882   // instance class name from there.
3883   __ lw(v0, FieldMemOperand(v0, JSFunction::kSharedFunctionInfoOffset));
3884   __ lw(v0, FieldMemOperand(v0, SharedFunctionInfo::kInstanceClassNameOffset));
3885   __ Branch(&done);
3886
3887   // Functions have class 'Function'.
3888   __ bind(&function);
3889   __ LoadRoot(v0, Heap::kFunction_stringRootIndex);
3890   __ jmp(&done);
3891
3892   // Objects with a non-function constructor have class 'Object'.
3893   __ bind(&non_function_constructor);
3894   __ LoadRoot(v0, Heap::kObject_stringRootIndex);
3895   __ jmp(&done);
3896
3897   // Non-JS objects have class null.
3898   __ bind(&null);
3899   __ LoadRoot(v0, Heap::kNullValueRootIndex);
3900
3901   // All done.
3902   __ bind(&done);
3903
3904   context()->Plug(v0);
3905 }
3906
3907
3908 void FullCodeGenerator::EmitSubString(CallRuntime* expr) {
3909   // Load the arguments on the stack and call the stub.
3910   SubStringStub stub(isolate());
3911   ZoneList<Expression*>* args = expr->arguments();
3912   DCHECK(args->length() == 3);
3913   VisitForStackValue(args->at(0));
3914   VisitForStackValue(args->at(1));
3915   VisitForStackValue(args->at(2));
3916   __ CallStub(&stub);
3917   context()->Plug(v0);
3918 }
3919
3920
3921 void FullCodeGenerator::EmitRegExpExec(CallRuntime* expr) {
3922   // Load the arguments on the stack and call the stub.
3923   RegExpExecStub stub(isolate());
3924   ZoneList<Expression*>* args = expr->arguments();
3925   DCHECK(args->length() == 4);
3926   VisitForStackValue(args->at(0));
3927   VisitForStackValue(args->at(1));
3928   VisitForStackValue(args->at(2));
3929   VisitForStackValue(args->at(3));
3930   __ CallStub(&stub);
3931   context()->Plug(v0);
3932 }
3933
3934
3935 void FullCodeGenerator::EmitValueOf(CallRuntime* expr) {
3936   ZoneList<Expression*>* args = expr->arguments();
3937   DCHECK(args->length() == 1);
3938
3939   VisitForAccumulatorValue(args->at(0));  // Load the object.
3940
3941   Label done;
3942   // If the object is a smi return the object.
3943   __ JumpIfSmi(v0, &done);
3944   // If the object is not a value type, return the object.
3945   __ GetObjectType(v0, a1, a1);
3946   __ Branch(&done, ne, a1, Operand(JS_VALUE_TYPE));
3947
3948   __ lw(v0, FieldMemOperand(v0, JSValue::kValueOffset));
3949
3950   __ bind(&done);
3951   context()->Plug(v0);
3952 }
3953
3954
3955 void FullCodeGenerator::EmitIsDate(CallRuntime* expr) {
3956   ZoneList<Expression*>* args = expr->arguments();
3957   DCHECK_EQ(1, args->length());
3958
3959   VisitForAccumulatorValue(args->at(0));
3960
3961   Label materialize_true, materialize_false;
3962   Label* if_true = nullptr;
3963   Label* if_false = nullptr;
3964   Label* fall_through = nullptr;
3965   context()->PrepareTest(&materialize_true, &materialize_false, &if_true,
3966                          &if_false, &fall_through);
3967
3968   __ JumpIfSmi(v0, if_false);
3969   __ GetObjectType(v0, a1, a1);
3970   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
3971   Split(eq, a1, Operand(JS_DATE_TYPE), if_true, if_false, fall_through);
3972
3973   context()->Plug(if_true, if_false);
3974 }
3975
3976
3977 void FullCodeGenerator::EmitDateField(CallRuntime* expr) {
3978   ZoneList<Expression*>* args = expr->arguments();
3979   DCHECK(args->length() == 2);
3980   DCHECK_NOT_NULL(args->at(1)->AsLiteral());
3981   Smi* index = Smi::cast(*(args->at(1)->AsLiteral()->value()));
3982
3983   VisitForAccumulatorValue(args->at(0));  // Load the object.
3984
3985   Register object = v0;
3986   Register result = v0;
3987   Register scratch0 = t5;
3988   Register scratch1 = a1;
3989
3990   if (index->value() == 0) {
3991     __ lw(result, FieldMemOperand(object, JSDate::kValueOffset));
3992   } else {
3993     Label runtime, done;
3994     if (index->value() < JSDate::kFirstUncachedField) {
3995       ExternalReference stamp = ExternalReference::date_cache_stamp(isolate());
3996       __ li(scratch1, Operand(stamp));
3997       __ lw(scratch1, MemOperand(scratch1));
3998       __ lw(scratch0, FieldMemOperand(object, JSDate::kCacheStampOffset));
3999       __ Branch(&runtime, ne, scratch1, Operand(scratch0));
4000       __ lw(result, FieldMemOperand(object, JSDate::kValueOffset +
4001                                             kPointerSize * index->value()));
4002       __ jmp(&done);
4003     }
4004     __ bind(&runtime);
4005     __ PrepareCallCFunction(2, scratch1);
4006     __ li(a1, Operand(index));
4007     __ Move(a0, object);
4008     __ CallCFunction(ExternalReference::get_date_field_function(isolate()), 2);
4009     __ bind(&done);
4010   }
4011
4012   context()->Plug(result);
4013 }
4014
4015
4016 void FullCodeGenerator::EmitOneByteSeqStringSetChar(CallRuntime* expr) {
4017   ZoneList<Expression*>* args = expr->arguments();
4018   DCHECK_EQ(3, args->length());
4019
4020   Register string = v0;
4021   Register index = a1;
4022   Register value = a2;
4023
4024   VisitForStackValue(args->at(0));        // index
4025   VisitForStackValue(args->at(1));        // value
4026   VisitForAccumulatorValue(args->at(2));  // string
4027   __ Pop(index, value);
4028
4029   if (FLAG_debug_code) {
4030     __ SmiTst(value, at);
4031     __ Check(eq, kNonSmiValue, at, Operand(zero_reg));
4032     __ SmiTst(index, at);
4033     __ Check(eq, kNonSmiIndex, at, Operand(zero_reg));
4034     __ SmiUntag(index, index);
4035     static const uint32_t one_byte_seq_type = kSeqStringTag | kOneByteStringTag;
4036     Register scratch = t5;
4037     __ EmitSeqStringSetCharCheck(
4038         string, index, value, scratch, one_byte_seq_type);
4039     __ SmiTag(index, index);
4040   }
4041
4042   __ SmiUntag(value, value);
4043   __ Addu(at,
4044           string,
4045           Operand(SeqOneByteString::kHeaderSize - kHeapObjectTag));
4046   __ SmiUntag(index);
4047   __ Addu(at, at, index);
4048   __ sb(value, MemOperand(at));
4049   context()->Plug(string);
4050 }
4051
4052
4053 void FullCodeGenerator::EmitTwoByteSeqStringSetChar(CallRuntime* expr) {
4054   ZoneList<Expression*>* args = expr->arguments();
4055   DCHECK_EQ(3, args->length());
4056
4057   Register string = v0;
4058   Register index = a1;
4059   Register value = a2;
4060
4061   VisitForStackValue(args->at(0));        // index
4062   VisitForStackValue(args->at(1));        // value
4063   VisitForAccumulatorValue(args->at(2));  // string
4064   __ Pop(index, value);
4065
4066   if (FLAG_debug_code) {
4067     __ SmiTst(value, at);
4068     __ Check(eq, kNonSmiValue, at, Operand(zero_reg));
4069     __ SmiTst(index, at);
4070     __ Check(eq, kNonSmiIndex, at, Operand(zero_reg));
4071     __ SmiUntag(index, index);
4072     static const uint32_t two_byte_seq_type = kSeqStringTag | kTwoByteStringTag;
4073     Register scratch = t5;
4074     __ EmitSeqStringSetCharCheck(
4075         string, index, value, scratch, two_byte_seq_type);
4076     __ SmiTag(index, index);
4077   }
4078
4079   __ SmiUntag(value, value);
4080   __ Addu(at,
4081           string,
4082           Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
4083   __ Addu(at, at, index);
4084   STATIC_ASSERT(kSmiTagSize == 1 && kSmiTag == 0);
4085   __ sh(value, MemOperand(at));
4086     context()->Plug(string);
4087 }
4088
4089
4090 void FullCodeGenerator::EmitMathPow(CallRuntime* expr) {
4091   // Load the arguments on the stack and call the runtime function.
4092   ZoneList<Expression*>* args = expr->arguments();
4093   DCHECK(args->length() == 2);
4094   VisitForStackValue(args->at(0));
4095   VisitForStackValue(args->at(1));
4096   MathPowStub stub(isolate(), MathPowStub::ON_STACK);
4097   __ CallStub(&stub);
4098   context()->Plug(v0);
4099 }
4100
4101
4102 void FullCodeGenerator::EmitSetValueOf(CallRuntime* expr) {
4103   ZoneList<Expression*>* args = expr->arguments();
4104   DCHECK(args->length() == 2);
4105
4106   VisitForStackValue(args->at(0));  // Load the object.
4107   VisitForAccumulatorValue(args->at(1));  // Load the value.
4108   __ pop(a1);  // v0 = value. a1 = object.
4109
4110   Label done;
4111   // If the object is a smi, return the value.
4112   __ JumpIfSmi(a1, &done);
4113
4114   // If the object is not a value type, return the value.
4115   __ GetObjectType(a1, a2, a2);
4116   __ Branch(&done, ne, a2, Operand(JS_VALUE_TYPE));
4117
4118   // Store the value.
4119   __ sw(v0, FieldMemOperand(a1, JSValue::kValueOffset));
4120   // Update the write barrier.  Save the value as it will be
4121   // overwritten by the write barrier code and is needed afterward.
4122   __ mov(a2, v0);
4123   __ RecordWriteField(
4124       a1, JSValue::kValueOffset, a2, a3, kRAHasBeenSaved, kDontSaveFPRegs);
4125
4126   __ bind(&done);
4127   context()->Plug(v0);
4128 }
4129
4130
4131 void FullCodeGenerator::EmitNumberToString(CallRuntime* expr) {
4132   ZoneList<Expression*>* args = expr->arguments();
4133   DCHECK_EQ(args->length(), 1);
4134
4135   // Load the argument into a0 and call the stub.
4136   VisitForAccumulatorValue(args->at(0));
4137   __ mov(a0, result_register());
4138
4139   NumberToStringStub stub(isolate());
4140   __ CallStub(&stub);
4141   context()->Plug(v0);
4142 }
4143
4144
4145 void FullCodeGenerator::EmitStringCharFromCode(CallRuntime* expr) {
4146   ZoneList<Expression*>* args = expr->arguments();
4147   DCHECK(args->length() == 1);
4148
4149   VisitForAccumulatorValue(args->at(0));
4150
4151   Label done;
4152   StringCharFromCodeGenerator generator(v0, a1);
4153   generator.GenerateFast(masm_);
4154   __ jmp(&done);
4155
4156   NopRuntimeCallHelper call_helper;
4157   generator.GenerateSlow(masm_, call_helper);
4158
4159   __ bind(&done);
4160   context()->Plug(a1);
4161 }
4162
4163
4164 void FullCodeGenerator::EmitStringCharCodeAt(CallRuntime* expr) {
4165   ZoneList<Expression*>* args = expr->arguments();
4166   DCHECK(args->length() == 2);
4167
4168   VisitForStackValue(args->at(0));
4169   VisitForAccumulatorValue(args->at(1));
4170   __ mov(a0, result_register());
4171
4172   Register object = a1;
4173   Register index = a0;
4174   Register result = v0;
4175
4176   __ pop(object);
4177
4178   Label need_conversion;
4179   Label index_out_of_range;
4180   Label done;
4181   StringCharCodeAtGenerator generator(object,
4182                                       index,
4183                                       result,
4184                                       &need_conversion,
4185                                       &need_conversion,
4186                                       &index_out_of_range,
4187                                       STRING_INDEX_IS_NUMBER);
4188   generator.GenerateFast(masm_);
4189   __ jmp(&done);
4190
4191   __ bind(&index_out_of_range);
4192   // When the index is out of range, the spec requires us to return
4193   // NaN.
4194   __ LoadRoot(result, Heap::kNanValueRootIndex);
4195   __ jmp(&done);
4196
4197   __ bind(&need_conversion);
4198   // Load the undefined value into the result register, which will
4199   // trigger conversion.
4200   __ LoadRoot(result, Heap::kUndefinedValueRootIndex);
4201   __ jmp(&done);
4202
4203   NopRuntimeCallHelper call_helper;
4204   generator.GenerateSlow(masm_, NOT_PART_OF_IC_HANDLER, call_helper);
4205
4206   __ bind(&done);
4207   context()->Plug(result);
4208 }
4209
4210
4211 void FullCodeGenerator::EmitStringCharAt(CallRuntime* expr) {
4212   ZoneList<Expression*>* args = expr->arguments();
4213   DCHECK(args->length() == 2);
4214
4215   VisitForStackValue(args->at(0));
4216   VisitForAccumulatorValue(args->at(1));
4217   __ mov(a0, result_register());
4218
4219   Register object = a1;
4220   Register index = a0;
4221   Register scratch = a3;
4222   Register result = v0;
4223
4224   __ pop(object);
4225
4226   Label need_conversion;
4227   Label index_out_of_range;
4228   Label done;
4229   StringCharAtGenerator generator(object,
4230                                   index,
4231                                   scratch,
4232                                   result,
4233                                   &need_conversion,
4234                                   &need_conversion,
4235                                   &index_out_of_range,
4236                                   STRING_INDEX_IS_NUMBER);
4237   generator.GenerateFast(masm_);
4238   __ jmp(&done);
4239
4240   __ bind(&index_out_of_range);
4241   // When the index is out of range, the spec requires us to return
4242   // the empty string.
4243   __ LoadRoot(result, Heap::kempty_stringRootIndex);
4244   __ jmp(&done);
4245
4246   __ bind(&need_conversion);
4247   // Move smi zero into the result register, which will trigger
4248   // conversion.
4249   __ li(result, Operand(Smi::FromInt(0)));
4250   __ jmp(&done);
4251
4252   NopRuntimeCallHelper call_helper;
4253   generator.GenerateSlow(masm_, NOT_PART_OF_IC_HANDLER, call_helper);
4254
4255   __ bind(&done);
4256   context()->Plug(result);
4257 }
4258
4259
4260 void FullCodeGenerator::EmitStringAdd(CallRuntime* expr) {
4261   ZoneList<Expression*>* args = expr->arguments();
4262   DCHECK_EQ(2, args->length());
4263   VisitForStackValue(args->at(0));
4264   VisitForAccumulatorValue(args->at(1));
4265
4266   __ pop(a1);
4267   __ mov(a0, result_register());  // StringAddStub requires args in a0, a1.
4268   StringAddStub stub(isolate(), STRING_ADD_CHECK_BOTH, NOT_TENURED);
4269   __ CallStub(&stub);
4270   context()->Plug(v0);
4271 }
4272
4273
4274 void FullCodeGenerator::EmitStringCompare(CallRuntime* expr) {
4275   ZoneList<Expression*>* args = expr->arguments();
4276   DCHECK_EQ(2, args->length());
4277
4278   VisitForStackValue(args->at(0));
4279   VisitForStackValue(args->at(1));
4280
4281   StringCompareStub stub(isolate());
4282   __ CallStub(&stub);
4283   context()->Plug(v0);
4284 }
4285
4286
4287 void FullCodeGenerator::EmitCallFunction(CallRuntime* expr) {
4288   ZoneList<Expression*>* args = expr->arguments();
4289   DCHECK(args->length() >= 2);
4290
4291   int arg_count = args->length() - 2;  // 2 ~ receiver and function.
4292   for (int i = 0; i < arg_count + 1; i++) {
4293     VisitForStackValue(args->at(i));
4294   }
4295   VisitForAccumulatorValue(args->last());  // Function.
4296
4297   Label runtime, done;
4298   // Check for non-function argument (including proxy).
4299   __ JumpIfSmi(v0, &runtime);
4300   __ GetObjectType(v0, a1, a1);
4301   __ Branch(&runtime, ne, a1, Operand(JS_FUNCTION_TYPE));
4302
4303   // InvokeFunction requires the function in a1. Move it in there.
4304   __ mov(a1, result_register());
4305   ParameterCount count(arg_count);
4306   __ InvokeFunction(a1, count, CALL_FUNCTION, NullCallWrapper());
4307   __ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
4308   __ jmp(&done);
4309
4310   __ bind(&runtime);
4311   __ push(v0);
4312   __ CallRuntime(Runtime::kCall, args->length());
4313   __ bind(&done);
4314
4315   context()->Plug(v0);
4316 }
4317
4318
4319 void FullCodeGenerator::EmitDefaultConstructorCallSuper(CallRuntime* expr) {
4320   ZoneList<Expression*>* args = expr->arguments();
4321   DCHECK(args->length() == 2);
4322
4323   // new.target
4324   VisitForStackValue(args->at(0));
4325
4326   // .this_function
4327   VisitForStackValue(args->at(1));
4328   __ CallRuntime(Runtime::kGetPrototype, 1);
4329   __ Push(result_register());
4330
4331   // Load original constructor into t0.
4332   __ lw(t0, MemOperand(sp, 1 * kPointerSize));
4333
4334   // Check if the calling frame is an arguments adaptor frame.
4335   Label adaptor_frame, args_set_up, runtime;
4336   __ lw(a2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
4337   __ lw(a3, MemOperand(a2, StandardFrameConstants::kContextOffset));
4338   __ Branch(&adaptor_frame, eq, a3,
4339             Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
4340   // default constructor has no arguments, so no adaptor frame means no args.
4341   __ mov(a0, zero_reg);
4342   __ Branch(&args_set_up);
4343
4344   // Copy arguments from adaptor frame.
4345   {
4346     __ bind(&adaptor_frame);
4347     __ lw(a1, MemOperand(a2, ArgumentsAdaptorFrameConstants::kLengthOffset));
4348     __ SmiUntag(a1, a1);
4349
4350     __ mov(a0, a1);
4351
4352     // Get arguments pointer in a2.
4353     __ sll(at, a1, kPointerSizeLog2);
4354     __ addu(a2, a2, at);
4355     __ Addu(a2, a2, Operand(StandardFrameConstants::kCallerSPOffset));
4356     Label loop;
4357     __ bind(&loop);
4358     // Pre-decrement a2 with kPointerSize on each iteration.
4359     // Pre-decrement in order to skip receiver.
4360     __ Addu(a2, a2, Operand(-kPointerSize));
4361     __ lw(a3, MemOperand(a2));
4362     __ Push(a3);
4363     __ Addu(a1, a1, Operand(-1));
4364     __ Branch(&loop, ne, a1, Operand(zero_reg));
4365   }
4366
4367   __ bind(&args_set_up);
4368   __ sll(at, a0, kPointerSizeLog2);
4369   __ Addu(at, at, Operand(sp));
4370   __ lw(a1, MemOperand(at, 0));
4371   __ LoadRoot(a2, Heap::kUndefinedValueRootIndex);
4372
4373   CallConstructStub stub(isolate(), SUPER_CONSTRUCTOR_CALL);
4374   __ Call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL);
4375
4376   __ Drop(1);
4377
4378   context()->Plug(result_register());
4379 }
4380
4381
4382 void FullCodeGenerator::EmitRegExpConstructResult(CallRuntime* expr) {
4383   RegExpConstructResultStub stub(isolate());
4384   ZoneList<Expression*>* args = expr->arguments();
4385   DCHECK(args->length() == 3);
4386   VisitForStackValue(args->at(0));
4387   VisitForStackValue(args->at(1));
4388   VisitForAccumulatorValue(args->at(2));
4389   __ mov(a0, result_register());
4390   __ pop(a1);
4391   __ pop(a2);
4392   __ CallStub(&stub);
4393   context()->Plug(v0);
4394 }
4395
4396
4397 void FullCodeGenerator::EmitGetFromCache(CallRuntime* expr) {
4398   ZoneList<Expression*>* args = expr->arguments();
4399   DCHECK_EQ(2, args->length());
4400
4401   DCHECK_NOT_NULL(args->at(0)->AsLiteral());
4402   int cache_id = Smi::cast(*(args->at(0)->AsLiteral()->value()))->value();
4403
4404   Handle<FixedArray> jsfunction_result_caches(
4405       isolate()->native_context()->jsfunction_result_caches());
4406   if (jsfunction_result_caches->length() <= cache_id) {
4407     __ Abort(kAttemptToUseUndefinedCache);
4408     __ LoadRoot(v0, Heap::kUndefinedValueRootIndex);
4409     context()->Plug(v0);
4410     return;
4411   }
4412
4413   VisitForAccumulatorValue(args->at(1));
4414
4415   Register key = v0;
4416   Register cache = a1;
4417   __ lw(cache, ContextOperand(cp, Context::GLOBAL_OBJECT_INDEX));
4418   __ lw(cache, FieldMemOperand(cache, GlobalObject::kNativeContextOffset));
4419   __ lw(cache,
4420          ContextOperand(
4421              cache, Context::JSFUNCTION_RESULT_CACHES_INDEX));
4422   __ lw(cache,
4423          FieldMemOperand(cache, FixedArray::OffsetOfElementAt(cache_id)));
4424
4425
4426   Label done, not_found;
4427   STATIC_ASSERT(kSmiTag == 0 && kSmiTagSize == 1);
4428   __ lw(a2, FieldMemOperand(cache, JSFunctionResultCache::kFingerOffset));
4429   // a2 now holds finger offset as a smi.
4430   __ Addu(a3, cache, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
4431   // a3 now points to the start of fixed array elements.
4432   __ sll(at, a2, kPointerSizeLog2 - kSmiTagSize);
4433   __ addu(a3, a3, at);
4434   // a3 now points to key of indexed element of cache.
4435   __ lw(a2, MemOperand(a3));
4436   __ Branch(&not_found, ne, key, Operand(a2));
4437
4438   __ lw(v0, MemOperand(a3, kPointerSize));
4439   __ Branch(&done);
4440
4441   __ bind(&not_found);
4442   // Call runtime to perform the lookup.
4443   __ Push(cache, key);
4444   __ CallRuntime(Runtime::kGetFromCacheRT, 2);
4445
4446   __ bind(&done);
4447   context()->Plug(v0);
4448 }
4449
4450
4451 void FullCodeGenerator::EmitHasCachedArrayIndex(CallRuntime* expr) {
4452   ZoneList<Expression*>* args = expr->arguments();
4453   VisitForAccumulatorValue(args->at(0));
4454
4455   Label materialize_true, materialize_false;
4456   Label* if_true = NULL;
4457   Label* if_false = NULL;
4458   Label* fall_through = NULL;
4459   context()->PrepareTest(&materialize_true, &materialize_false,
4460                          &if_true, &if_false, &fall_through);
4461
4462   __ lw(a0, FieldMemOperand(v0, String::kHashFieldOffset));
4463   __ And(a0, a0, Operand(String::kContainsCachedArrayIndexMask));
4464
4465   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
4466   Split(eq, a0, Operand(zero_reg), if_true, if_false, fall_through);
4467
4468   context()->Plug(if_true, if_false);
4469 }
4470
4471
4472 void FullCodeGenerator::EmitGetCachedArrayIndex(CallRuntime* expr) {
4473   ZoneList<Expression*>* args = expr->arguments();
4474   DCHECK(args->length() == 1);
4475   VisitForAccumulatorValue(args->at(0));
4476
4477   __ AssertString(v0);
4478
4479   __ lw(v0, FieldMemOperand(v0, String::kHashFieldOffset));
4480   __ IndexFromHash(v0, v0);
4481
4482   context()->Plug(v0);
4483 }
4484
4485
4486 void FullCodeGenerator::EmitFastOneByteArrayJoin(CallRuntime* expr) {
4487   Label bailout, done, one_char_separator, long_separator,
4488       non_trivial_array, not_size_one_array, loop,
4489       empty_separator_loop, one_char_separator_loop,
4490       one_char_separator_loop_entry, long_separator_loop;
4491   ZoneList<Expression*>* args = expr->arguments();
4492   DCHECK(args->length() == 2);
4493   VisitForStackValue(args->at(1));
4494   VisitForAccumulatorValue(args->at(0));
4495
4496   // All aliases of the same register have disjoint lifetimes.
4497   Register array = v0;
4498   Register elements = no_reg;  // Will be v0.
4499   Register result = no_reg;  // Will be v0.
4500   Register separator = a1;
4501   Register array_length = a2;
4502   Register result_pos = no_reg;  // Will be a2.
4503   Register string_length = a3;
4504   Register string = t0;
4505   Register element = t1;
4506   Register elements_end = t2;
4507   Register scratch1 = t3;
4508   Register scratch2 = t5;
4509   Register scratch3 = t4;
4510
4511   // Separator operand is on the stack.
4512   __ pop(separator);
4513
4514   // Check that the array is a JSArray.
4515   __ JumpIfSmi(array, &bailout);
4516   __ GetObjectType(array, scratch1, scratch2);
4517   __ Branch(&bailout, ne, scratch2, Operand(JS_ARRAY_TYPE));
4518
4519   // Check that the array has fast elements.
4520   __ CheckFastElements(scratch1, scratch2, &bailout);
4521
4522   // If the array has length zero, return the empty string.
4523   __ lw(array_length, FieldMemOperand(array, JSArray::kLengthOffset));
4524   __ SmiUntag(array_length);
4525   __ Branch(&non_trivial_array, ne, array_length, Operand(zero_reg));
4526   __ LoadRoot(v0, Heap::kempty_stringRootIndex);
4527   __ Branch(&done);
4528
4529   __ bind(&non_trivial_array);
4530
4531   // Get the FixedArray containing array's elements.
4532   elements = array;
4533   __ lw(elements, FieldMemOperand(array, JSArray::kElementsOffset));
4534   array = no_reg;  // End of array's live range.
4535
4536   // Check that all array elements are sequential one-byte strings, and
4537   // accumulate the sum of their lengths, as a smi-encoded value.
4538   __ mov(string_length, zero_reg);
4539   __ Addu(element,
4540           elements, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
4541   __ sll(elements_end, array_length, kPointerSizeLog2);
4542   __ Addu(elements_end, element, elements_end);
4543   // Loop condition: while (element < elements_end).
4544   // Live values in registers:
4545   //   elements: Fixed array of strings.
4546   //   array_length: Length of the fixed array of strings (not smi)
4547   //   separator: Separator string
4548   //   string_length: Accumulated sum of string lengths (smi).
4549   //   element: Current array element.
4550   //   elements_end: Array end.
4551   if (generate_debug_code_) {
4552     __ Assert(gt, kNoEmptyArraysHereInEmitFastOneByteArrayJoin, array_length,
4553               Operand(zero_reg));
4554   }
4555   __ bind(&loop);
4556   __ lw(string, MemOperand(element));
4557   __ Addu(element, element, kPointerSize);
4558   __ JumpIfSmi(string, &bailout);
4559   __ lw(scratch1, FieldMemOperand(string, HeapObject::kMapOffset));
4560   __ lbu(scratch1, FieldMemOperand(scratch1, Map::kInstanceTypeOffset));
4561   __ JumpIfInstanceTypeIsNotSequentialOneByte(scratch1, scratch2, &bailout);
4562   __ lw(scratch1, FieldMemOperand(string, SeqOneByteString::kLengthOffset));
4563   __ AdduAndCheckForOverflow(string_length, string_length, scratch1, scratch3);
4564   __ BranchOnOverflow(&bailout, scratch3);
4565   __ Branch(&loop, lt, element, Operand(elements_end));
4566
4567   // If array_length is 1, return elements[0], a string.
4568   __ Branch(&not_size_one_array, ne, array_length, Operand(1));
4569   __ lw(v0, FieldMemOperand(elements, FixedArray::kHeaderSize));
4570   __ Branch(&done);
4571
4572   __ bind(&not_size_one_array);
4573
4574   // Live values in registers:
4575   //   separator: Separator string
4576   //   array_length: Length of the array.
4577   //   string_length: Sum of string lengths (smi).
4578   //   elements: FixedArray of strings.
4579
4580   // Check that the separator is a flat one-byte string.
4581   __ JumpIfSmi(separator, &bailout);
4582   __ lw(scratch1, FieldMemOperand(separator, HeapObject::kMapOffset));
4583   __ lbu(scratch1, FieldMemOperand(scratch1, Map::kInstanceTypeOffset));
4584   __ JumpIfInstanceTypeIsNotSequentialOneByte(scratch1, scratch2, &bailout);
4585
4586   // Add (separator length times array_length) - separator length to the
4587   // string_length to get the length of the result string. array_length is not
4588   // smi but the other values are, so the result is a smi.
4589   __ lw(scratch1, FieldMemOperand(separator, SeqOneByteString::kLengthOffset));
4590   __ Subu(string_length, string_length, Operand(scratch1));
4591   __ Mul(scratch3, scratch2, array_length, scratch1);
4592   // Check for smi overflow. No overflow if higher 33 bits of 64-bit result are
4593   // zero.
4594   __ Branch(&bailout, ne, scratch3, Operand(zero_reg));
4595   __ And(scratch3, scratch2, Operand(0x80000000));
4596   __ Branch(&bailout, ne, scratch3, Operand(zero_reg));
4597   __ AdduAndCheckForOverflow(string_length, string_length, scratch2, scratch3);
4598   __ BranchOnOverflow(&bailout, scratch3);
4599   __ SmiUntag(string_length);
4600
4601   // Get first element in the array to free up the elements register to be used
4602   // for the result.
4603   __ Addu(element,
4604           elements, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
4605   result = elements;  // End of live range for elements.
4606   elements = no_reg;
4607   // Live values in registers:
4608   //   element: First array element
4609   //   separator: Separator string
4610   //   string_length: Length of result string (not smi)
4611   //   array_length: Length of the array.
4612   __ AllocateOneByteString(result, string_length, scratch1, scratch2,
4613                            elements_end, &bailout);
4614   // Prepare for looping. Set up elements_end to end of the array. Set
4615   // result_pos to the position of the result where to write the first
4616   // character.
4617   __ sll(elements_end, array_length, kPointerSizeLog2);
4618   __ Addu(elements_end, element, elements_end);
4619   result_pos = array_length;  // End of live range for array_length.
4620   array_length = no_reg;
4621   __ Addu(result_pos,
4622           result,
4623           Operand(SeqOneByteString::kHeaderSize - kHeapObjectTag));
4624
4625   // Check the length of the separator.
4626   __ lw(scratch1, FieldMemOperand(separator, SeqOneByteString::kLengthOffset));
4627   __ li(at, Operand(Smi::FromInt(1)));
4628   __ Branch(&one_char_separator, eq, scratch1, Operand(at));
4629   __ Branch(&long_separator, gt, scratch1, Operand(at));
4630
4631   // Empty separator case.
4632   __ bind(&empty_separator_loop);
4633   // Live values in registers:
4634   //   result_pos: the position to which we are currently copying characters.
4635   //   element: Current array element.
4636   //   elements_end: Array end.
4637
4638   // Copy next array element to the result.
4639   __ lw(string, MemOperand(element));
4640   __ Addu(element, element, kPointerSize);
4641   __ lw(string_length, FieldMemOperand(string, String::kLengthOffset));
4642   __ SmiUntag(string_length);
4643   __ Addu(string, string, SeqOneByteString::kHeaderSize - kHeapObjectTag);
4644   __ CopyBytes(string, result_pos, string_length, scratch1);
4645   // End while (element < elements_end).
4646   __ Branch(&empty_separator_loop, lt, element, Operand(elements_end));
4647   DCHECK(result.is(v0));
4648   __ Branch(&done);
4649
4650   // One-character separator case.
4651   __ bind(&one_char_separator);
4652   // Replace separator with its one-byte character value.
4653   __ lbu(separator, FieldMemOperand(separator, SeqOneByteString::kHeaderSize));
4654   // Jump into the loop after the code that copies the separator, so the first
4655   // element is not preceded by a separator.
4656   __ jmp(&one_char_separator_loop_entry);
4657
4658   __ bind(&one_char_separator_loop);
4659   // Live values in registers:
4660   //   result_pos: the position to which we are currently copying characters.
4661   //   element: Current array element.
4662   //   elements_end: Array end.
4663   //   separator: Single separator one-byte char (in lower byte).
4664
4665   // Copy the separator character to the result.
4666   __ sb(separator, MemOperand(result_pos));
4667   __ Addu(result_pos, result_pos, 1);
4668
4669   // Copy next array element to the result.
4670   __ bind(&one_char_separator_loop_entry);
4671   __ lw(string, MemOperand(element));
4672   __ Addu(element, element, kPointerSize);
4673   __ lw(string_length, FieldMemOperand(string, String::kLengthOffset));
4674   __ SmiUntag(string_length);
4675   __ Addu(string, string, SeqOneByteString::kHeaderSize - kHeapObjectTag);
4676   __ CopyBytes(string, result_pos, string_length, scratch1);
4677   // End while (element < elements_end).
4678   __ Branch(&one_char_separator_loop, lt, element, Operand(elements_end));
4679   DCHECK(result.is(v0));
4680   __ Branch(&done);
4681
4682   // Long separator case (separator is more than one character). Entry is at the
4683   // label long_separator below.
4684   __ bind(&long_separator_loop);
4685   // Live values in registers:
4686   //   result_pos: the position to which we are currently copying characters.
4687   //   element: Current array element.
4688   //   elements_end: Array end.
4689   //   separator: Separator string.
4690
4691   // Copy the separator to the result.
4692   __ lw(string_length, FieldMemOperand(separator, String::kLengthOffset));
4693   __ SmiUntag(string_length);
4694   __ Addu(string,
4695           separator,
4696           Operand(SeqOneByteString::kHeaderSize - kHeapObjectTag));
4697   __ CopyBytes(string, result_pos, string_length, scratch1);
4698
4699   __ bind(&long_separator);
4700   __ lw(string, MemOperand(element));
4701   __ Addu(element, element, kPointerSize);
4702   __ lw(string_length, FieldMemOperand(string, String::kLengthOffset));
4703   __ SmiUntag(string_length);
4704   __ Addu(string, string, SeqOneByteString::kHeaderSize - kHeapObjectTag);
4705   __ CopyBytes(string, result_pos, string_length, scratch1);
4706   // End while (element < elements_end).
4707   __ Branch(&long_separator_loop, lt, element, Operand(elements_end));
4708   DCHECK(result.is(v0));
4709   __ Branch(&done);
4710
4711   __ bind(&bailout);
4712   __ LoadRoot(v0, Heap::kUndefinedValueRootIndex);
4713   __ bind(&done);
4714   context()->Plug(v0);
4715 }
4716
4717
4718 void FullCodeGenerator::EmitDebugIsActive(CallRuntime* expr) {
4719   DCHECK(expr->arguments()->length() == 0);
4720   ExternalReference debug_is_active =
4721       ExternalReference::debug_is_active_address(isolate());
4722   __ li(at, Operand(debug_is_active));
4723   __ lb(v0, MemOperand(at));
4724   __ SmiTag(v0);
4725   context()->Plug(v0);
4726 }
4727
4728
4729 void FullCodeGenerator::EmitCallSuperWithSpread(CallRuntime* expr) {
4730   // Assert: expr == CallRuntime("ReflectConstruct")
4731   DCHECK_EQ(1, expr->arguments()->length());
4732   CallRuntime* call = expr->arguments()->at(0)->AsCallRuntime();
4733
4734   ZoneList<Expression*>* args = call->arguments();
4735   DCHECK_EQ(3, args->length());
4736
4737   SuperCallReference* super_call_ref = args->at(0)->AsSuperCallReference();
4738   DCHECK_NOT_NULL(super_call_ref);
4739
4740   // Load ReflectConstruct function
4741   EmitLoadJSRuntimeFunction(call);
4742
4743   // Push the target function under the receiver
4744   __ lw(at, MemOperand(sp, 0));
4745   __ push(at);
4746   __ sw(v0, MemOperand(sp, kPointerSize));
4747
4748   // Push super constructor
4749   EmitLoadSuperConstructor(super_call_ref);
4750   __ Push(result_register());
4751
4752   // Push arguments array
4753   VisitForStackValue(args->at(1));
4754
4755   // Push NewTarget
4756   DCHECK(args->at(2)->IsVariableProxy());
4757   VisitForStackValue(args->at(2));
4758
4759   EmitCallJSRuntimeFunction(call);
4760
4761   // Restore context register.
4762   __ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
4763   context()->DropAndPlug(1, v0);
4764
4765   // TODO(mvstanton): with FLAG_vector_stores this needs a slot id.
4766   EmitInitializeThisAfterSuper(super_call_ref);
4767 }
4768
4769
4770 void FullCodeGenerator::EmitLoadJSRuntimeFunction(CallRuntime* expr) {
4771   // Push the builtins object as the receiver.
4772   Register receiver = LoadDescriptor::ReceiverRegister();
4773   __ lw(receiver, GlobalObjectOperand());
4774   __ lw(receiver, FieldMemOperand(receiver, GlobalObject::kBuiltinsOffset));
4775   __ push(receiver);
4776
4777   // Load the function from the receiver.
4778   __ li(LoadDescriptor::NameRegister(), Operand(expr->name()));
4779   __ li(LoadDescriptor::SlotRegister(),
4780         Operand(SmiFromSlot(expr->CallRuntimeFeedbackSlot())));
4781   CallLoadIC(NOT_INSIDE_TYPEOF);
4782 }
4783
4784
4785 void FullCodeGenerator::EmitCallJSRuntimeFunction(CallRuntime* expr) {
4786   ZoneList<Expression*>* args = expr->arguments();
4787   int arg_count = args->length();
4788
4789   SetCallPosition(expr, arg_count);
4790   CallFunctionStub stub(isolate(), arg_count, NO_CALL_FUNCTION_FLAGS);
4791   __ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize));
4792   __ CallStub(&stub);
4793 }
4794
4795
4796 void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) {
4797   ZoneList<Expression*>* args = expr->arguments();
4798   int arg_count = args->length();
4799
4800   if (expr->is_jsruntime()) {
4801     Comment cmnt(masm_, "[ CallRuntime");
4802     EmitLoadJSRuntimeFunction(expr);
4803
4804     // Push the target function under the receiver.
4805     __ lw(at, MemOperand(sp, 0));
4806     __ push(at);
4807     __ sw(v0, MemOperand(sp, kPointerSize));
4808
4809     // Push the arguments ("left-to-right").
4810     for (int i = 0; i < arg_count; i++) {
4811       VisitForStackValue(args->at(i));
4812     }
4813
4814     PrepareForBailoutForId(expr->CallId(), NO_REGISTERS);
4815     EmitCallJSRuntimeFunction(expr);
4816
4817     // Restore context register.
4818     __ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
4819
4820     context()->DropAndPlug(1, v0);
4821
4822   } else {
4823     const Runtime::Function* function = expr->function();
4824     switch (function->function_id) {
4825 #define CALL_INTRINSIC_GENERATOR(Name)     \
4826   case Runtime::kInline##Name: {           \
4827     Comment cmnt(masm_, "[ Inline" #Name); \
4828     return Emit##Name(expr);               \
4829   }
4830       FOR_EACH_FULL_CODE_INTRINSIC(CALL_INTRINSIC_GENERATOR)
4831 #undef CALL_INTRINSIC_GENERATOR
4832       default: {
4833         Comment cmnt(masm_, "[ CallRuntime for unhandled intrinsic");
4834         // Push the arguments ("left-to-right").
4835         for (int i = 0; i < arg_count; i++) {
4836           VisitForStackValue(args->at(i));
4837         }
4838
4839         // Call the C runtime function.
4840         PrepareForBailoutForId(expr->CallId(), NO_REGISTERS);
4841         __ CallRuntime(expr->function(), arg_count);
4842         context()->Plug(v0);
4843       }
4844     }
4845   }
4846 }
4847
4848
4849 void FullCodeGenerator::VisitUnaryOperation(UnaryOperation* expr) {
4850   switch (expr->op()) {
4851     case Token::DELETE: {
4852       Comment cmnt(masm_, "[ UnaryOperation (DELETE)");
4853       Property* property = expr->expression()->AsProperty();
4854       VariableProxy* proxy = expr->expression()->AsVariableProxy();
4855
4856       if (property != NULL) {
4857         VisitForStackValue(property->obj());
4858         VisitForStackValue(property->key());
4859         __ li(a1, Operand(Smi::FromInt(language_mode())));
4860         __ push(a1);
4861         __ InvokeBuiltin(Builtins::DELETE, CALL_FUNCTION);
4862         context()->Plug(v0);
4863       } else if (proxy != NULL) {
4864         Variable* var = proxy->var();
4865         // Delete of an unqualified identifier is disallowed in strict mode but
4866         // "delete this" is allowed.
4867         bool is_this = var->HasThisName(isolate());
4868         DCHECK(is_sloppy(language_mode()) || is_this);
4869         if (var->IsUnallocatedOrGlobalSlot()) {
4870           __ lw(a2, GlobalObjectOperand());
4871           __ li(a1, Operand(var->name()));
4872           __ li(a0, Operand(Smi::FromInt(SLOPPY)));
4873           __ Push(a2, a1, a0);
4874           __ InvokeBuiltin(Builtins::DELETE, CALL_FUNCTION);
4875           context()->Plug(v0);
4876         } else if (var->IsStackAllocated() || var->IsContextSlot()) {
4877           // Result of deleting non-global, non-dynamic variables is false.
4878           // The subexpression does not have side effects.
4879           context()->Plug(is_this);
4880         } else {
4881           // Non-global variable.  Call the runtime to try to delete from the
4882           // context where the variable was introduced.
4883           DCHECK(!context_register().is(a2));
4884           __ li(a2, Operand(var->name()));
4885           __ Push(context_register(), a2);
4886           __ CallRuntime(Runtime::kDeleteLookupSlot, 2);
4887           context()->Plug(v0);
4888         }
4889       } else {
4890         // Result of deleting non-property, non-variable reference is true.
4891         // The subexpression may have side effects.
4892         VisitForEffect(expr->expression());
4893         context()->Plug(true);
4894       }
4895       break;
4896     }
4897
4898     case Token::VOID: {
4899       Comment cmnt(masm_, "[ UnaryOperation (VOID)");
4900       VisitForEffect(expr->expression());
4901       context()->Plug(Heap::kUndefinedValueRootIndex);
4902       break;
4903     }
4904
4905     case Token::NOT: {
4906       Comment cmnt(masm_, "[ UnaryOperation (NOT)");
4907       if (context()->IsEffect()) {
4908         // Unary NOT has no side effects so it's only necessary to visit the
4909         // subexpression.  Match the optimizing compiler by not branching.
4910         VisitForEffect(expr->expression());
4911       } else if (context()->IsTest()) {
4912         const TestContext* test = TestContext::cast(context());
4913         // The labels are swapped for the recursive call.
4914         VisitForControl(expr->expression(),
4915                         test->false_label(),
4916                         test->true_label(),
4917                         test->fall_through());
4918         context()->Plug(test->true_label(), test->false_label());
4919       } else {
4920         // We handle value contexts explicitly rather than simply visiting
4921         // for control and plugging the control flow into the context,
4922         // because we need to prepare a pair of extra administrative AST ids
4923         // for the optimizing compiler.
4924         DCHECK(context()->IsAccumulatorValue() || context()->IsStackValue());
4925         Label materialize_true, materialize_false, done;
4926         VisitForControl(expr->expression(),
4927                         &materialize_false,
4928                         &materialize_true,
4929                         &materialize_true);
4930         __ bind(&materialize_true);
4931         PrepareForBailoutForId(expr->MaterializeTrueId(), NO_REGISTERS);
4932         __ LoadRoot(v0, Heap::kTrueValueRootIndex);
4933         if (context()->IsStackValue()) __ push(v0);
4934         __ jmp(&done);
4935         __ bind(&materialize_false);
4936         PrepareForBailoutForId(expr->MaterializeFalseId(), NO_REGISTERS);
4937         __ LoadRoot(v0, Heap::kFalseValueRootIndex);
4938         if (context()->IsStackValue()) __ push(v0);
4939         __ bind(&done);
4940       }
4941       break;
4942     }
4943
4944     case Token::TYPEOF: {
4945       Comment cmnt(masm_, "[ UnaryOperation (TYPEOF)");
4946       {
4947         AccumulatorValueContext context(this);
4948         VisitForTypeofValue(expr->expression());
4949       }
4950       __ mov(a3, v0);
4951       TypeofStub typeof_stub(isolate());
4952       __ CallStub(&typeof_stub);
4953       context()->Plug(v0);
4954       break;
4955     }
4956
4957     default:
4958       UNREACHABLE();
4959   }
4960 }
4961
4962
4963 void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
4964   DCHECK(expr->expression()->IsValidReferenceExpression());
4965
4966   Comment cmnt(masm_, "[ CountOperation");
4967
4968   Property* prop = expr->expression()->AsProperty();
4969   LhsKind assign_type = Property::GetAssignType(prop);
4970
4971   // Evaluate expression and get value.
4972   if (assign_type == VARIABLE) {
4973     DCHECK(expr->expression()->AsVariableProxy()->var() != NULL);
4974     AccumulatorValueContext context(this);
4975     EmitVariableLoad(expr->expression()->AsVariableProxy());
4976   } else {
4977     // Reserve space for result of postfix operation.
4978     if (expr->is_postfix() && !context()->IsEffect()) {
4979       __ li(at, Operand(Smi::FromInt(0)));
4980       __ push(at);
4981     }
4982     switch (assign_type) {
4983       case NAMED_PROPERTY: {
4984         // Put the object both on the stack and in the register.
4985         VisitForStackValue(prop->obj());
4986         __ lw(LoadDescriptor::ReceiverRegister(), MemOperand(sp, 0));
4987         EmitNamedPropertyLoad(prop);
4988         break;
4989       }
4990
4991       case NAMED_SUPER_PROPERTY: {
4992         VisitForStackValue(prop->obj()->AsSuperPropertyReference()->this_var());
4993         VisitForAccumulatorValue(
4994             prop->obj()->AsSuperPropertyReference()->home_object());
4995         __ Push(result_register());
4996         const Register scratch = a1;
4997         __ lw(scratch, MemOperand(sp, kPointerSize));
4998         __ Push(scratch, result_register());
4999         EmitNamedSuperPropertyLoad(prop);
5000         break;
5001       }
5002
5003       case KEYED_SUPER_PROPERTY: {
5004         VisitForStackValue(prop->obj()->AsSuperPropertyReference()->this_var());
5005         VisitForAccumulatorValue(
5006             prop->obj()->AsSuperPropertyReference()->home_object());
5007         const Register scratch = a1;
5008         const Register scratch1 = t0;
5009         __ Move(scratch, result_register());
5010         VisitForAccumulatorValue(prop->key());
5011         __ Push(scratch, result_register());
5012         __ lw(scratch1, MemOperand(sp, 2 * kPointerSize));
5013         __ Push(scratch1, scratch, result_register());
5014         EmitKeyedSuperPropertyLoad(prop);
5015         break;
5016       }
5017
5018       case KEYED_PROPERTY: {
5019         VisitForStackValue(prop->obj());
5020         VisitForStackValue(prop->key());
5021         __ lw(LoadDescriptor::ReceiverRegister(),
5022               MemOperand(sp, 1 * kPointerSize));
5023         __ lw(LoadDescriptor::NameRegister(), MemOperand(sp, 0));
5024         EmitKeyedPropertyLoad(prop);
5025         break;
5026       }
5027
5028       case VARIABLE:
5029         UNREACHABLE();
5030     }
5031   }
5032
5033   // We need a second deoptimization point after loading the value
5034   // in case evaluating the property load my have a side effect.
5035   if (assign_type == VARIABLE) {
5036     PrepareForBailout(expr->expression(), TOS_REG);
5037   } else {
5038     PrepareForBailoutForId(prop->LoadId(), TOS_REG);
5039   }
5040
5041   // Inline smi case if we are in a loop.
5042   Label stub_call, done;
5043   JumpPatchSite patch_site(masm_);
5044
5045   int count_value = expr->op() == Token::INC ? 1 : -1;
5046   __ mov(a0, v0);
5047   if (ShouldInlineSmiCase(expr->op())) {
5048     Label slow;
5049     patch_site.EmitJumpIfNotSmi(v0, &slow);
5050
5051     // Save result for postfix expressions.
5052     if (expr->is_postfix()) {
5053       if (!context()->IsEffect()) {
5054         // Save the result on the stack. If we have a named or keyed property
5055         // we store the result under the receiver that is currently on top
5056         // of the stack.
5057         switch (assign_type) {
5058           case VARIABLE:
5059             __ push(v0);
5060             break;
5061           case NAMED_PROPERTY:
5062             __ sw(v0, MemOperand(sp, kPointerSize));
5063             break;
5064           case NAMED_SUPER_PROPERTY:
5065             __ sw(v0, MemOperand(sp, 2 * kPointerSize));
5066             break;
5067           case KEYED_PROPERTY:
5068             __ sw(v0, MemOperand(sp, 2 * kPointerSize));
5069             break;
5070           case KEYED_SUPER_PROPERTY:
5071             __ sw(v0, MemOperand(sp, 3 * kPointerSize));
5072             break;
5073         }
5074       }
5075     }
5076
5077     Register scratch1 = a1;
5078     Register scratch2 = t0;
5079     __ li(scratch1, Operand(Smi::FromInt(count_value)));
5080     __ AdduAndCheckForOverflow(v0, v0, scratch1, scratch2);
5081     __ BranchOnNoOverflow(&done, scratch2);
5082     // Call stub. Undo operation first.
5083     __ Move(v0, a0);
5084     __ jmp(&stub_call);
5085     __ bind(&slow);
5086   }
5087   if (!is_strong(language_mode())) {
5088     ToNumberStub convert_stub(isolate());
5089     __ CallStub(&convert_stub);
5090     PrepareForBailoutForId(expr->ToNumberId(), TOS_REG);
5091   }
5092
5093   // Save result for postfix expressions.
5094   if (expr->is_postfix()) {
5095     if (!context()->IsEffect()) {
5096       // Save the result on the stack. If we have a named or keyed property
5097       // we store the result under the receiver that is currently on top
5098       // of the stack.
5099       switch (assign_type) {
5100         case VARIABLE:
5101           __ push(v0);
5102           break;
5103         case NAMED_PROPERTY:
5104           __ sw(v0, MemOperand(sp, kPointerSize));
5105           break;
5106         case NAMED_SUPER_PROPERTY:
5107           __ sw(v0, MemOperand(sp, 2 * kPointerSize));
5108           break;
5109         case KEYED_PROPERTY:
5110           __ sw(v0, MemOperand(sp, 2 * kPointerSize));
5111           break;
5112         case KEYED_SUPER_PROPERTY:
5113           __ sw(v0, MemOperand(sp, 3 * kPointerSize));
5114           break;
5115       }
5116     }
5117   }
5118
5119   __ bind(&stub_call);
5120   __ mov(a1, v0);
5121   __ li(a0, Operand(Smi::FromInt(count_value)));
5122
5123   SetExpressionPosition(expr);
5124
5125
5126   Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), Token::ADD,
5127                                               strength(language_mode())).code();
5128   CallIC(code, expr->CountBinOpFeedbackId());
5129   patch_site.EmitPatchInfo();
5130   __ bind(&done);
5131
5132   if (is_strong(language_mode())) {
5133     PrepareForBailoutForId(expr->ToNumberId(), TOS_REG);
5134   }
5135   // Store the value returned in v0.
5136   switch (assign_type) {
5137     case VARIABLE:
5138       if (expr->is_postfix()) {
5139         { EffectContext context(this);
5140           EmitVariableAssignment(expr->expression()->AsVariableProxy()->var(),
5141                                  Token::ASSIGN, expr->CountSlot());
5142           PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
5143           context.Plug(v0);
5144         }
5145         // For all contexts except EffectConstant we have the result on
5146         // top of the stack.
5147         if (!context()->IsEffect()) {
5148           context()->PlugTOS();
5149         }
5150       } else {
5151         EmitVariableAssignment(expr->expression()->AsVariableProxy()->var(),
5152                                Token::ASSIGN, expr->CountSlot());
5153         PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
5154         context()->Plug(v0);
5155       }
5156       break;
5157     case NAMED_PROPERTY: {
5158       __ mov(StoreDescriptor::ValueRegister(), result_register());
5159       __ li(StoreDescriptor::NameRegister(),
5160             Operand(prop->key()->AsLiteral()->value()));
5161       __ pop(StoreDescriptor::ReceiverRegister());
5162       if (FLAG_vector_stores) {
5163         EmitLoadStoreICSlot(expr->CountSlot());
5164         CallStoreIC();
5165       } else {
5166         CallStoreIC(expr->CountStoreFeedbackId());
5167       }
5168       PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
5169       if (expr->is_postfix()) {
5170         if (!context()->IsEffect()) {
5171           context()->PlugTOS();
5172         }
5173       } else {
5174         context()->Plug(v0);
5175       }
5176       break;
5177     }
5178     case NAMED_SUPER_PROPERTY: {
5179       EmitNamedSuperPropertyStore(prop);
5180       if (expr->is_postfix()) {
5181         if (!context()->IsEffect()) {
5182           context()->PlugTOS();
5183         }
5184       } else {
5185         context()->Plug(v0);
5186       }
5187       break;
5188     }
5189     case KEYED_SUPER_PROPERTY: {
5190       EmitKeyedSuperPropertyStore(prop);
5191       if (expr->is_postfix()) {
5192         if (!context()->IsEffect()) {
5193           context()->PlugTOS();
5194         }
5195       } else {
5196         context()->Plug(v0);
5197       }
5198       break;
5199     }
5200     case KEYED_PROPERTY: {
5201       __ mov(StoreDescriptor::ValueRegister(), result_register());
5202       __ Pop(StoreDescriptor::ReceiverRegister(),
5203              StoreDescriptor::NameRegister());
5204       Handle<Code> ic =
5205           CodeFactory::KeyedStoreIC(isolate(), language_mode()).code();
5206       if (FLAG_vector_stores) {
5207         EmitLoadStoreICSlot(expr->CountSlot());
5208         CallIC(ic);
5209       } else {
5210         CallIC(ic, expr->CountStoreFeedbackId());
5211       }
5212       PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
5213       if (expr->is_postfix()) {
5214         if (!context()->IsEffect()) {
5215           context()->PlugTOS();
5216         }
5217       } else {
5218         context()->Plug(v0);
5219       }
5220       break;
5221     }
5222   }
5223 }
5224
5225
5226 void FullCodeGenerator::EmitLiteralCompareTypeof(Expression* expr,
5227                                                  Expression* sub_expr,
5228                                                  Handle<String> check) {
5229   Label materialize_true, materialize_false;
5230   Label* if_true = NULL;
5231   Label* if_false = NULL;
5232   Label* fall_through = NULL;
5233   context()->PrepareTest(&materialize_true, &materialize_false,
5234                          &if_true, &if_false, &fall_through);
5235
5236   { AccumulatorValueContext context(this);
5237     VisitForTypeofValue(sub_expr);
5238   }
5239   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
5240
5241   Factory* factory = isolate()->factory();
5242   if (String::Equals(check, factory->number_string())) {
5243     __ JumpIfSmi(v0, if_true);
5244     __ lw(v0, FieldMemOperand(v0, HeapObject::kMapOffset));
5245     __ LoadRoot(at, Heap::kHeapNumberMapRootIndex);
5246     Split(eq, v0, Operand(at), if_true, if_false, fall_through);
5247   } else if (String::Equals(check, factory->string_string())) {
5248     __ JumpIfSmi(v0, if_false);
5249     // Check for undetectable objects => false.
5250     __ GetObjectType(v0, v0, a1);
5251     __ Branch(if_false, ge, a1, Operand(FIRST_NONSTRING_TYPE));
5252     __ lbu(a1, FieldMemOperand(v0, Map::kBitFieldOffset));
5253     __ And(a1, a1, Operand(1 << Map::kIsUndetectable));
5254     Split(eq, a1, Operand(zero_reg),
5255           if_true, if_false, fall_through);
5256   } else if (String::Equals(check, factory->symbol_string())) {
5257     __ JumpIfSmi(v0, if_false);
5258     __ GetObjectType(v0, v0, a1);
5259     Split(eq, a1, Operand(SYMBOL_TYPE), if_true, if_false, fall_through);
5260   } else if (String::Equals(check, factory->float32x4_string())) {
5261     __ JumpIfSmi(v0, if_false);
5262     __ GetObjectType(v0, v0, a1);
5263     Split(eq, a1, Operand(FLOAT32X4_TYPE), if_true, if_false, fall_through);
5264   } else if (String::Equals(check, factory->boolean_string())) {
5265     __ LoadRoot(at, Heap::kTrueValueRootIndex);
5266     __ Branch(if_true, eq, v0, Operand(at));
5267     __ LoadRoot(at, Heap::kFalseValueRootIndex);
5268     Split(eq, v0, Operand(at), if_true, if_false, fall_through);
5269   } else if (String::Equals(check, factory->undefined_string())) {
5270     __ LoadRoot(at, Heap::kUndefinedValueRootIndex);
5271     __ Branch(if_true, eq, v0, Operand(at));
5272     __ JumpIfSmi(v0, if_false);
5273     // Check for undetectable objects => true.
5274     __ lw(v0, FieldMemOperand(v0, HeapObject::kMapOffset));
5275     __ lbu(a1, FieldMemOperand(v0, Map::kBitFieldOffset));
5276     __ And(a1, a1, Operand(1 << Map::kIsUndetectable));
5277     Split(ne, a1, Operand(zero_reg), if_true, if_false, fall_through);
5278   } else if (String::Equals(check, factory->function_string())) {
5279     __ JumpIfSmi(v0, if_false);
5280     STATIC_ASSERT(NUM_OF_CALLABLE_SPEC_OBJECT_TYPES == 2);
5281     __ GetObjectType(v0, v0, a1);
5282     __ Branch(if_true, eq, a1, Operand(JS_FUNCTION_TYPE));
5283     Split(eq, a1, Operand(JS_FUNCTION_PROXY_TYPE),
5284           if_true, if_false, fall_through);
5285   } else if (String::Equals(check, factory->object_string())) {
5286     __ JumpIfSmi(v0, if_false);
5287     __ LoadRoot(at, Heap::kNullValueRootIndex);
5288     __ Branch(if_true, eq, v0, Operand(at));
5289     // Check for JS objects => true.
5290     __ GetObjectType(v0, v0, a1);
5291     __ Branch(if_false, lt, a1, Operand(FIRST_NONCALLABLE_SPEC_OBJECT_TYPE));
5292     __ lbu(a1, FieldMemOperand(v0, Map::kInstanceTypeOffset));
5293     __ Branch(if_false, gt, a1, Operand(LAST_NONCALLABLE_SPEC_OBJECT_TYPE));
5294     // Check for undetectable objects => false.
5295     __ lbu(a1, FieldMemOperand(v0, Map::kBitFieldOffset));
5296     __ And(a1, a1, Operand(1 << Map::kIsUndetectable));
5297     Split(eq, a1, Operand(zero_reg), if_true, if_false, fall_through);
5298   } else {
5299     if (if_false != fall_through) __ jmp(if_false);
5300   }
5301   context()->Plug(if_true, if_false);
5302 }
5303
5304
5305 void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) {
5306   Comment cmnt(masm_, "[ CompareOperation");
5307   SetExpressionPosition(expr);
5308
5309   // First we try a fast inlined version of the compare when one of
5310   // the operands is a literal.
5311   if (TryLiteralCompare(expr)) return;
5312
5313   // Always perform the comparison for its control flow.  Pack the result
5314   // into the expression's context after the comparison is performed.
5315   Label materialize_true, materialize_false;
5316   Label* if_true = NULL;
5317   Label* if_false = NULL;
5318   Label* fall_through = NULL;
5319   context()->PrepareTest(&materialize_true, &materialize_false,
5320                          &if_true, &if_false, &fall_through);
5321
5322   Token::Value op = expr->op();
5323   VisitForStackValue(expr->left());
5324   switch (op) {
5325     case Token::IN:
5326       VisitForStackValue(expr->right());
5327       __ InvokeBuiltin(Builtins::IN, CALL_FUNCTION);
5328       PrepareForBailoutBeforeSplit(expr, false, NULL, NULL);
5329       __ LoadRoot(t0, Heap::kTrueValueRootIndex);
5330       Split(eq, v0, Operand(t0), if_true, if_false, fall_through);
5331       break;
5332
5333     case Token::INSTANCEOF: {
5334       VisitForStackValue(expr->right());
5335       InstanceofStub stub(isolate(), InstanceofStub::kNoFlags);
5336       __ CallStub(&stub);
5337       PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
5338       // The stub returns 0 for true.
5339       Split(eq, v0, Operand(zero_reg), if_true, if_false, fall_through);
5340       break;
5341     }
5342
5343     default: {
5344       VisitForAccumulatorValue(expr->right());
5345       Condition cc = CompareIC::ComputeCondition(op);
5346       __ mov(a0, result_register());
5347       __ pop(a1);
5348
5349       bool inline_smi_code = ShouldInlineSmiCase(op);
5350       JumpPatchSite patch_site(masm_);
5351       if (inline_smi_code) {
5352         Label slow_case;
5353         __ Or(a2, a0, Operand(a1));
5354         patch_site.EmitJumpIfNotSmi(a2, &slow_case);
5355         Split(cc, a1, Operand(a0), if_true, if_false, NULL);
5356         __ bind(&slow_case);
5357       }
5358
5359       Handle<Code> ic = CodeFactory::CompareIC(
5360                             isolate(), op, strength(language_mode())).code();
5361       CallIC(ic, expr->CompareOperationFeedbackId());
5362       patch_site.EmitPatchInfo();
5363       PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
5364       Split(cc, v0, Operand(zero_reg), if_true, if_false, fall_through);
5365     }
5366   }
5367
5368   // Convert the result of the comparison into one expected for this
5369   // expression's context.
5370   context()->Plug(if_true, if_false);
5371 }
5372
5373
5374 void FullCodeGenerator::EmitLiteralCompareNil(CompareOperation* expr,
5375                                               Expression* sub_expr,
5376                                               NilValue nil) {
5377   Label materialize_true, materialize_false;
5378   Label* if_true = NULL;
5379   Label* if_false = NULL;
5380   Label* fall_through = NULL;
5381   context()->PrepareTest(&materialize_true, &materialize_false,
5382                          &if_true, &if_false, &fall_through);
5383
5384   VisitForAccumulatorValue(sub_expr);
5385   PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
5386   __ mov(a0, result_register());
5387   if (expr->op() == Token::EQ_STRICT) {
5388     Heap::RootListIndex nil_value = nil == kNullValue ?
5389         Heap::kNullValueRootIndex :
5390         Heap::kUndefinedValueRootIndex;
5391     __ LoadRoot(a1, nil_value);
5392     Split(eq, a0, Operand(a1), if_true, if_false, fall_through);
5393   } else {
5394     Handle<Code> ic = CompareNilICStub::GetUninitialized(isolate(), nil);
5395     CallIC(ic, expr->CompareOperationFeedbackId());
5396     Split(ne, v0, Operand(zero_reg), if_true, if_false, fall_through);
5397   }
5398   context()->Plug(if_true, if_false);
5399 }
5400
5401
5402 void FullCodeGenerator::VisitThisFunction(ThisFunction* expr) {
5403   __ lw(v0, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
5404   context()->Plug(v0);
5405 }
5406
5407
5408 Register FullCodeGenerator::result_register() {
5409   return v0;
5410 }
5411
5412
5413 Register FullCodeGenerator::context_register() {
5414   return cp;
5415 }
5416
5417
5418 void FullCodeGenerator::StoreToFrameField(int frame_offset, Register value) {
5419   DCHECK_EQ(POINTER_SIZE_ALIGN(frame_offset), frame_offset);
5420   __ sw(value, MemOperand(fp, frame_offset));
5421 }
5422
5423
5424 void FullCodeGenerator::LoadContextField(Register dst, int context_index) {
5425   __ lw(dst, ContextOperand(cp, context_index));
5426 }
5427
5428
5429 void FullCodeGenerator::PushFunctionArgumentForContextAllocation() {
5430   Scope* declaration_scope = scope()->DeclarationScope();
5431   if (declaration_scope->is_script_scope() ||
5432       declaration_scope->is_module_scope()) {
5433     // Contexts nested in the native context have a canonical empty function
5434     // as their closure, not the anonymous closure containing the global
5435     // code.  Pass a smi sentinel and let the runtime look up the empty
5436     // function.
5437     __ li(at, Operand(Smi::FromInt(0)));
5438   } else if (declaration_scope->is_eval_scope()) {
5439     // Contexts created by a call to eval have the same closure as the
5440     // context calling eval, not the anonymous closure containing the eval
5441     // code.  Fetch it from the context.
5442     __ lw(at, ContextOperand(cp, Context::CLOSURE_INDEX));
5443   } else {
5444     DCHECK(declaration_scope->is_function_scope());
5445     __ lw(at, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
5446   }
5447   __ push(at);
5448 }
5449
5450
5451 // ----------------------------------------------------------------------------
5452 // Non-local control flow support.
5453
5454 void FullCodeGenerator::EnterFinallyBlock() {
5455   DCHECK(!result_register().is(a1));
5456   // Store result register while executing finally block.
5457   __ push(result_register());
5458   // Cook return address in link register to stack (smi encoded Code* delta).
5459   __ Subu(a1, ra, Operand(masm_->CodeObject()));
5460   DCHECK_EQ(1, kSmiTagSize + kSmiShiftSize);
5461   STATIC_ASSERT(0 == kSmiTag);
5462   __ Addu(a1, a1, Operand(a1));  // Convert to smi.
5463
5464   // Store result register while executing finally block.
5465   __ push(a1);
5466
5467   // Store pending message while executing finally block.
5468   ExternalReference pending_message_obj =
5469       ExternalReference::address_of_pending_message_obj(isolate());
5470   __ li(at, Operand(pending_message_obj));
5471   __ lw(a1, MemOperand(at));
5472   __ push(a1);
5473
5474   ClearPendingMessage();
5475 }
5476
5477
5478 void FullCodeGenerator::ExitFinallyBlock() {
5479   DCHECK(!result_register().is(a1));
5480   // Restore pending message from stack.
5481   __ pop(a1);
5482   ExternalReference pending_message_obj =
5483       ExternalReference::address_of_pending_message_obj(isolate());
5484   __ li(at, Operand(pending_message_obj));
5485   __ sw(a1, MemOperand(at));
5486
5487   // Restore result register from stack.
5488   __ pop(a1);
5489
5490   // Uncook return address and return.
5491   __ pop(result_register());
5492   DCHECK_EQ(1, kSmiTagSize + kSmiShiftSize);
5493   __ sra(a1, a1, 1);  // Un-smi-tag value.
5494   __ Addu(at, a1, Operand(masm_->CodeObject()));
5495   __ Jump(at);
5496 }
5497
5498
5499 void FullCodeGenerator::ClearPendingMessage() {
5500   DCHECK(!result_register().is(a1));
5501   ExternalReference pending_message_obj =
5502       ExternalReference::address_of_pending_message_obj(isolate());
5503   __ LoadRoot(a1, Heap::kTheHoleValueRootIndex);
5504   __ li(at, Operand(pending_message_obj));
5505   __ sw(a1, MemOperand(at));
5506 }
5507
5508
5509 void FullCodeGenerator::EmitLoadStoreICSlot(FeedbackVectorICSlot slot) {
5510   DCHECK(FLAG_vector_stores && !slot.IsInvalid());
5511   __ li(VectorStoreICTrampolineDescriptor::SlotRegister(),
5512         Operand(SmiFromSlot(slot)));
5513 }
5514
5515
5516 #undef __
5517
5518
5519 void BackEdgeTable::PatchAt(Code* unoptimized_code,
5520                             Address pc,
5521                             BackEdgeState target_state,
5522                             Code* replacement_code) {
5523   static const int kInstrSize = Assembler::kInstrSize;
5524   Address branch_address = pc - 6 * kInstrSize;
5525   CodePatcher patcher(branch_address, 1);
5526
5527   switch (target_state) {
5528     case INTERRUPT:
5529       // slt at, a3, zero_reg (in case of count based interrupts)
5530       // beq at, zero_reg, ok
5531       // lui t9, <interrupt stub address> upper
5532       // ori t9, <interrupt stub address> lower
5533       // jalr t9
5534       // nop
5535       // ok-label ----- pc_after points here
5536       patcher.masm()->slt(at, a3, zero_reg);
5537       break;
5538     case ON_STACK_REPLACEMENT:
5539     case OSR_AFTER_STACK_CHECK:
5540       // addiu at, zero_reg, 1
5541       // beq at, zero_reg, ok  ;; Not changed
5542       // lui t9, <on-stack replacement address> upper
5543       // ori t9, <on-stack replacement address> lower
5544       // jalr t9  ;; Not changed
5545       // nop  ;; Not changed
5546       // ok-label ----- pc_after points here
5547       patcher.masm()->addiu(at, zero_reg, 1);
5548       break;
5549   }
5550   Address pc_immediate_load_address = pc - 4 * kInstrSize;
5551   // Replace the stack check address in the load-immediate (lui/ori pair)
5552   // with the entry address of the replacement code.
5553   Assembler::set_target_address_at(pc_immediate_load_address,
5554                                    replacement_code->entry());
5555
5556   unoptimized_code->GetHeap()->incremental_marking()->RecordCodeTargetPatch(
5557       unoptimized_code, pc_immediate_load_address, replacement_code);
5558 }
5559
5560
5561 BackEdgeTable::BackEdgeState BackEdgeTable::GetBackEdgeState(
5562     Isolate* isolate,
5563     Code* unoptimized_code,
5564     Address pc) {
5565   static const int kInstrSize = Assembler::kInstrSize;
5566   Address branch_address = pc - 6 * kInstrSize;
5567   Address pc_immediate_load_address = pc - 4 * kInstrSize;
5568
5569   DCHECK(Assembler::IsBeq(Assembler::instr_at(pc - 5 * kInstrSize)));
5570   if (!Assembler::IsAddImmediate(Assembler::instr_at(branch_address))) {
5571     DCHECK(reinterpret_cast<uint32_t>(
5572         Assembler::target_address_at(pc_immediate_load_address)) ==
5573            reinterpret_cast<uint32_t>(
5574                isolate->builtins()->InterruptCheck()->entry()));
5575     return INTERRUPT;
5576   }
5577
5578   DCHECK(Assembler::IsAddImmediate(Assembler::instr_at(branch_address)));
5579
5580   if (reinterpret_cast<uint32_t>(
5581       Assembler::target_address_at(pc_immediate_load_address)) ==
5582           reinterpret_cast<uint32_t>(
5583               isolate->builtins()->OnStackReplacement()->entry())) {
5584     return ON_STACK_REPLACEMENT;
5585   }
5586
5587   DCHECK(reinterpret_cast<uint32_t>(
5588       Assembler::target_address_at(pc_immediate_load_address)) ==
5589          reinterpret_cast<uint32_t>(
5590              isolate->builtins()->OsrAfterStackCheck()->entry()));
5591   return OSR_AFTER_STACK_CHECK;
5592 }
5593
5594
5595 }  // namespace internal
5596 }  // namespace v8
5597
5598 #endif  // V8_TARGET_ARCH_MIPS