[builtins] Unify the various versions of [[Call]] with a Call builtin.
[platform/upstream/v8.git] / src / mips / code-stubs-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 #if V8_TARGET_ARCH_MIPS
6
7 #include "src/base/bits.h"
8 #include "src/bootstrapper.h"
9 #include "src/code-stubs.h"
10 #include "src/codegen.h"
11 #include "src/ic/handler-compiler.h"
12 #include "src/ic/ic.h"
13 #include "src/ic/stub-cache.h"
14 #include "src/isolate.h"
15 #include "src/mips/code-stubs-mips.h"
16 #include "src/regexp/jsregexp.h"
17 #include "src/regexp/regexp-macro-assembler.h"
18 #include "src/runtime/runtime.h"
19
20 namespace v8 {
21 namespace internal {
22
23
24 static void InitializeArrayConstructorDescriptor(
25     Isolate* isolate, CodeStubDescriptor* descriptor,
26     int constant_stack_parameter_count) {
27   Address deopt_handler = Runtime::FunctionForId(
28       Runtime::kArrayConstructor)->entry;
29
30   if (constant_stack_parameter_count == 0) {
31     descriptor->Initialize(deopt_handler, constant_stack_parameter_count,
32                            JS_FUNCTION_STUB_MODE);
33   } else {
34     descriptor->Initialize(a0, deopt_handler, constant_stack_parameter_count,
35                            JS_FUNCTION_STUB_MODE);
36   }
37 }
38
39
40 static void InitializeInternalArrayConstructorDescriptor(
41     Isolate* isolate, CodeStubDescriptor* descriptor,
42     int constant_stack_parameter_count) {
43   Address deopt_handler = Runtime::FunctionForId(
44       Runtime::kInternalArrayConstructor)->entry;
45
46   if (constant_stack_parameter_count == 0) {
47     descriptor->Initialize(deopt_handler, constant_stack_parameter_count,
48                            JS_FUNCTION_STUB_MODE);
49   } else {
50     descriptor->Initialize(a0, deopt_handler, constant_stack_parameter_count,
51                            JS_FUNCTION_STUB_MODE);
52   }
53 }
54
55
56 void ArrayNoArgumentConstructorStub::InitializeDescriptor(
57     CodeStubDescriptor* descriptor) {
58   InitializeArrayConstructorDescriptor(isolate(), descriptor, 0);
59 }
60
61
62 void ArraySingleArgumentConstructorStub::InitializeDescriptor(
63     CodeStubDescriptor* descriptor) {
64   InitializeArrayConstructorDescriptor(isolate(), descriptor, 1);
65 }
66
67
68 void ArrayNArgumentsConstructorStub::InitializeDescriptor(
69     CodeStubDescriptor* descriptor) {
70   InitializeArrayConstructorDescriptor(isolate(), descriptor, -1);
71 }
72
73
74 void InternalArrayNoArgumentConstructorStub::InitializeDescriptor(
75     CodeStubDescriptor* descriptor) {
76   InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, 0);
77 }
78
79
80 void InternalArraySingleArgumentConstructorStub::InitializeDescriptor(
81     CodeStubDescriptor* descriptor) {
82   InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, 1);
83 }
84
85
86 void InternalArrayNArgumentsConstructorStub::InitializeDescriptor(
87     CodeStubDescriptor* descriptor) {
88   InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, -1);
89 }
90
91
92 #define __ ACCESS_MASM(masm)
93
94
95 static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow,
96                                           Condition cc, Strength strength);
97 static void EmitSmiNonsmiComparison(MacroAssembler* masm,
98                                     Register lhs,
99                                     Register rhs,
100                                     Label* rhs_not_nan,
101                                     Label* slow,
102                                     bool strict);
103 static void EmitStrictTwoHeapObjectCompare(MacroAssembler* masm,
104                                            Register lhs,
105                                            Register rhs);
106
107
108 void HydrogenCodeStub::GenerateLightweightMiss(MacroAssembler* masm,
109                                                ExternalReference miss) {
110   // Update the static counter each time a new code stub is generated.
111   isolate()->counters()->code_stubs()->Increment();
112
113   CallInterfaceDescriptor descriptor = GetCallInterfaceDescriptor();
114   int param_count = descriptor.GetRegisterParameterCount();
115   {
116     // Call the runtime system in a fresh internal frame.
117     FrameScope scope(masm, StackFrame::INTERNAL);
118     DCHECK(param_count == 0 ||
119            a0.is(descriptor.GetRegisterParameter(param_count - 1)));
120     // Push arguments, adjust sp.
121     __ Subu(sp, sp, Operand(param_count * kPointerSize));
122     for (int i = 0; i < param_count; ++i) {
123       // Store argument to stack.
124       __ sw(descriptor.GetRegisterParameter(i),
125             MemOperand(sp, (param_count - 1 - i) * kPointerSize));
126     }
127     __ CallExternalReference(miss, param_count);
128   }
129
130   __ Ret();
131 }
132
133
134 void DoubleToIStub::Generate(MacroAssembler* masm) {
135   Label out_of_range, only_low, negate, done;
136   Register input_reg = source();
137   Register result_reg = destination();
138
139   int double_offset = offset();
140   // Account for saved regs if input is sp.
141   if (input_reg.is(sp)) double_offset += 3 * kPointerSize;
142
143   Register scratch =
144       GetRegisterThatIsNotOneOf(input_reg, result_reg);
145   Register scratch2 =
146       GetRegisterThatIsNotOneOf(input_reg, result_reg, scratch);
147   Register scratch3 =
148       GetRegisterThatIsNotOneOf(input_reg, result_reg, scratch, scratch2);
149   DoubleRegister double_scratch = kLithiumScratchDouble;
150
151   __ Push(scratch, scratch2, scratch3);
152
153   if (!skip_fastpath()) {
154     // Load double input.
155     __ ldc1(double_scratch, MemOperand(input_reg, double_offset));
156
157     // Clear cumulative exception flags and save the FCSR.
158     __ cfc1(scratch2, FCSR);
159     __ ctc1(zero_reg, FCSR);
160
161     // Try a conversion to a signed integer.
162     __ Trunc_w_d(double_scratch, double_scratch);
163     // Move the converted value into the result register.
164     __ mfc1(scratch3, double_scratch);
165
166     // Retrieve and restore the FCSR.
167     __ cfc1(scratch, FCSR);
168     __ ctc1(scratch2, FCSR);
169
170     // Check for overflow and NaNs.
171     __ And(
172         scratch, scratch,
173         kFCSROverflowFlagMask | kFCSRUnderflowFlagMask
174            | kFCSRInvalidOpFlagMask);
175     // If we had no exceptions then set result_reg and we are done.
176     Label error;
177     __ Branch(&error, ne, scratch, Operand(zero_reg));
178     __ Move(result_reg, scratch3);
179     __ Branch(&done);
180     __ bind(&error);
181   }
182
183   // Load the double value and perform a manual truncation.
184   Register input_high = scratch2;
185   Register input_low = scratch3;
186
187   __ lw(input_low,
188       MemOperand(input_reg, double_offset + Register::kMantissaOffset));
189   __ lw(input_high,
190       MemOperand(input_reg, double_offset + Register::kExponentOffset));
191
192   Label normal_exponent, restore_sign;
193   // Extract the biased exponent in result.
194   __ Ext(result_reg,
195          input_high,
196          HeapNumber::kExponentShift,
197          HeapNumber::kExponentBits);
198
199   // Check for Infinity and NaNs, which should return 0.
200   __ Subu(scratch, result_reg, HeapNumber::kExponentMask);
201   __ Movz(result_reg, zero_reg, scratch);
202   __ Branch(&done, eq, scratch, Operand(zero_reg));
203
204   // Express exponent as delta to (number of mantissa bits + 31).
205   __ Subu(result_reg,
206           result_reg,
207           Operand(HeapNumber::kExponentBias + HeapNumber::kMantissaBits + 31));
208
209   // If the delta is strictly positive, all bits would be shifted away,
210   // which means that we can return 0.
211   __ Branch(&normal_exponent, le, result_reg, Operand(zero_reg));
212   __ mov(result_reg, zero_reg);
213   __ Branch(&done);
214
215   __ bind(&normal_exponent);
216   const int kShiftBase = HeapNumber::kNonMantissaBitsInTopWord - 1;
217   // Calculate shift.
218   __ Addu(scratch, result_reg, Operand(kShiftBase + HeapNumber::kMantissaBits));
219
220   // Save the sign.
221   Register sign = result_reg;
222   result_reg = no_reg;
223   __ And(sign, input_high, Operand(HeapNumber::kSignMask));
224
225   // On ARM shifts > 31 bits are valid and will result in zero. On MIPS we need
226   // to check for this specific case.
227   Label high_shift_needed, high_shift_done;
228   __ Branch(&high_shift_needed, lt, scratch, Operand(32));
229   __ mov(input_high, zero_reg);
230   __ Branch(&high_shift_done);
231   __ bind(&high_shift_needed);
232
233   // Set the implicit 1 before the mantissa part in input_high.
234   __ Or(input_high,
235         input_high,
236         Operand(1 << HeapNumber::kMantissaBitsInTopWord));
237   // Shift the mantissa bits to the correct position.
238   // We don't need to clear non-mantissa bits as they will be shifted away.
239   // If they weren't, it would mean that the answer is in the 32bit range.
240   __ sllv(input_high, input_high, scratch);
241
242   __ bind(&high_shift_done);
243
244   // Replace the shifted bits with bits from the lower mantissa word.
245   Label pos_shift, shift_done;
246   __ li(at, 32);
247   __ subu(scratch, at, scratch);
248   __ Branch(&pos_shift, ge, scratch, Operand(zero_reg));
249
250   // Negate scratch.
251   __ Subu(scratch, zero_reg, scratch);
252   __ sllv(input_low, input_low, scratch);
253   __ Branch(&shift_done);
254
255   __ bind(&pos_shift);
256   __ srlv(input_low, input_low, scratch);
257
258   __ bind(&shift_done);
259   __ Or(input_high, input_high, Operand(input_low));
260   // Restore sign if necessary.
261   __ mov(scratch, sign);
262   result_reg = sign;
263   sign = no_reg;
264   __ Subu(result_reg, zero_reg, input_high);
265   __ Movz(result_reg, input_high, scratch);
266
267   __ bind(&done);
268
269   __ Pop(scratch, scratch2, scratch3);
270   __ Ret();
271 }
272
273
274 // Handle the case where the lhs and rhs are the same object.
275 // Equality is almost reflexive (everything but NaN), so this is a test
276 // for "identity and not NaN".
277 static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow,
278                                           Condition cc, Strength strength) {
279   Label not_identical;
280   Label heap_number, return_equal;
281   Register exp_mask_reg = t5;
282
283   __ Branch(&not_identical, ne, a0, Operand(a1));
284
285   __ li(exp_mask_reg, Operand(HeapNumber::kExponentMask));
286
287   // Test for NaN. Sadly, we can't just compare to Factory::nan_value(),
288   // so we do the second best thing - test it ourselves.
289   // They are both equal and they are not both Smis so both of them are not
290   // Smis. If it's not a heap number, then return equal.
291   __ GetObjectType(a0, t4, t4);
292   if (cc == less || cc == greater) {
293     // Call runtime on identical JSObjects.
294     __ Branch(slow, greater, t4, Operand(FIRST_SPEC_OBJECT_TYPE));
295     // Call runtime on identical symbols since we need to throw a TypeError.
296     __ Branch(slow, eq, t4, Operand(SYMBOL_TYPE));
297     // Call runtime on identical SIMD values since we must throw a TypeError.
298     __ Branch(slow, eq, t4, Operand(SIMD128_VALUE_TYPE));
299     if (is_strong(strength)) {
300       // Call the runtime on anything that is converted in the semantics, since
301       // we need to throw a TypeError. Smis have already been ruled out.
302       __ Branch(&return_equal, eq, t4, Operand(HEAP_NUMBER_TYPE));
303       __ And(t4, t4, Operand(kIsNotStringMask));
304       __ Branch(slow, ne, t4, Operand(zero_reg));
305     }
306   } else {
307     __ Branch(&heap_number, eq, t4, Operand(HEAP_NUMBER_TYPE));
308     // Comparing JS objects with <=, >= is complicated.
309     if (cc != eq) {
310     __ Branch(slow, greater, t4, Operand(FIRST_SPEC_OBJECT_TYPE));
311     // Call runtime on identical symbols since we need to throw a TypeError.
312     __ Branch(slow, eq, t4, Operand(SYMBOL_TYPE));
313     // Call runtime on identical SIMD values since we must throw a TypeError.
314     __ Branch(slow, eq, t4, Operand(SIMD128_VALUE_TYPE));
315     if (is_strong(strength)) {
316       // Call the runtime on anything that is converted in the semantics,
317       // since we need to throw a TypeError. Smis and heap numbers have
318       // already been ruled out.
319       __ And(t4, t4, Operand(kIsNotStringMask));
320       __ Branch(slow, ne, t4, Operand(zero_reg));
321     }
322       // Normally here we fall through to return_equal, but undefined is
323       // special: (undefined == undefined) == true, but
324       // (undefined <= undefined) == false!  See ECMAScript 11.8.5.
325       if (cc == less_equal || cc == greater_equal) {
326         __ Branch(&return_equal, ne, t4, Operand(ODDBALL_TYPE));
327         __ LoadRoot(t2, Heap::kUndefinedValueRootIndex);
328         __ Branch(&return_equal, ne, a0, Operand(t2));
329         DCHECK(is_int16(GREATER) && is_int16(LESS));
330         __ Ret(USE_DELAY_SLOT);
331         if (cc == le) {
332           // undefined <= undefined should fail.
333           __ li(v0, Operand(GREATER));
334         } else  {
335           // undefined >= undefined should fail.
336           __ li(v0, Operand(LESS));
337         }
338       }
339     }
340   }
341
342   __ bind(&return_equal);
343   DCHECK(is_int16(GREATER) && is_int16(LESS));
344   __ Ret(USE_DELAY_SLOT);
345   if (cc == less) {
346     __ li(v0, Operand(GREATER));  // Things aren't less than themselves.
347   } else if (cc == greater) {
348     __ li(v0, Operand(LESS));     // Things aren't greater than themselves.
349   } else {
350     __ mov(v0, zero_reg);         // Things are <=, >=, ==, === themselves.
351   }
352
353   // For less and greater we don't have to check for NaN since the result of
354   // x < x is false regardless.  For the others here is some code to check
355   // for NaN.
356   if (cc != lt && cc != gt) {
357     __ bind(&heap_number);
358     // It is a heap number, so return non-equal if it's NaN and equal if it's
359     // not NaN.
360
361     // The representation of NaN values has all exponent bits (52..62) set,
362     // and not all mantissa bits (0..51) clear.
363     // Read top bits of double representation (second word of value).
364     __ lw(t2, FieldMemOperand(a0, HeapNumber::kExponentOffset));
365     // Test that exponent bits are all set.
366     __ And(t3, t2, Operand(exp_mask_reg));
367     // If all bits not set (ne cond), then not a NaN, objects are equal.
368     __ Branch(&return_equal, ne, t3, Operand(exp_mask_reg));
369
370     // Shift out flag and all exponent bits, retaining only mantissa.
371     __ sll(t2, t2, HeapNumber::kNonMantissaBitsInTopWord);
372     // Or with all low-bits of mantissa.
373     __ lw(t3, FieldMemOperand(a0, HeapNumber::kMantissaOffset));
374     __ Or(v0, t3, Operand(t2));
375     // For equal we already have the right value in v0:  Return zero (equal)
376     // if all bits in mantissa are zero (it's an Infinity) and non-zero if
377     // not (it's a NaN).  For <= and >= we need to load v0 with the failing
378     // value if it's a NaN.
379     if (cc != eq) {
380       // All-zero means Infinity means equal.
381       __ Ret(eq, v0, Operand(zero_reg));
382       DCHECK(is_int16(GREATER) && is_int16(LESS));
383       __ Ret(USE_DELAY_SLOT);
384       if (cc == le) {
385         __ li(v0, Operand(GREATER));  // NaN <= NaN should fail.
386       } else {
387         __ li(v0, Operand(LESS));     // NaN >= NaN should fail.
388       }
389     }
390   }
391   // No fall through here.
392
393   __ bind(&not_identical);
394 }
395
396
397 static void EmitSmiNonsmiComparison(MacroAssembler* masm,
398                                     Register lhs,
399                                     Register rhs,
400                                     Label* both_loaded_as_doubles,
401                                     Label* slow,
402                                     bool strict) {
403   DCHECK((lhs.is(a0) && rhs.is(a1)) ||
404          (lhs.is(a1) && rhs.is(a0)));
405
406   Label lhs_is_smi;
407   __ JumpIfSmi(lhs, &lhs_is_smi);
408   // Rhs is a Smi.
409   // Check whether the non-smi is a heap number.
410   __ GetObjectType(lhs, t4, t4);
411   if (strict) {
412     // If lhs was not a number and rhs was a Smi then strict equality cannot
413     // succeed. Return non-equal (lhs is already not zero).
414     __ Ret(USE_DELAY_SLOT, ne, t4, Operand(HEAP_NUMBER_TYPE));
415     __ mov(v0, lhs);
416   } else {
417     // Smi compared non-strictly with a non-Smi non-heap-number. Call
418     // the runtime.
419     __ Branch(slow, ne, t4, Operand(HEAP_NUMBER_TYPE));
420   }
421
422   // Rhs is a smi, lhs is a number.
423   // Convert smi rhs to double.
424   __ sra(at, rhs, kSmiTagSize);
425   __ mtc1(at, f14);
426   __ cvt_d_w(f14, f14);
427   __ ldc1(f12, FieldMemOperand(lhs, HeapNumber::kValueOffset));
428
429   // We now have both loaded as doubles.
430   __ jmp(both_loaded_as_doubles);
431
432   __ bind(&lhs_is_smi);
433   // Lhs is a Smi.  Check whether the non-smi is a heap number.
434   __ GetObjectType(rhs, t4, t4);
435   if (strict) {
436     // If lhs was not a number and rhs was a Smi then strict equality cannot
437     // succeed. Return non-equal.
438     __ Ret(USE_DELAY_SLOT, ne, t4, Operand(HEAP_NUMBER_TYPE));
439     __ li(v0, Operand(1));
440   } else {
441     // Smi compared non-strictly with a non-Smi non-heap-number. Call
442     // the runtime.
443     __ Branch(slow, ne, t4, Operand(HEAP_NUMBER_TYPE));
444   }
445
446   // Lhs is a smi, rhs is a number.
447   // Convert smi lhs to double.
448   __ sra(at, lhs, kSmiTagSize);
449   __ mtc1(at, f12);
450   __ cvt_d_w(f12, f12);
451   __ ldc1(f14, FieldMemOperand(rhs, HeapNumber::kValueOffset));
452   // Fall through to both_loaded_as_doubles.
453 }
454
455
456 static void EmitStrictTwoHeapObjectCompare(MacroAssembler* masm,
457                                            Register lhs,
458                                            Register rhs) {
459     // If either operand is a JS object or an oddball value, then they are
460     // not equal since their pointers are different.
461     // There is no test for undetectability in strict equality.
462     STATIC_ASSERT(LAST_TYPE == LAST_SPEC_OBJECT_TYPE);
463     Label first_non_object;
464     // Get the type of the first operand into a2 and compare it with
465     // FIRST_SPEC_OBJECT_TYPE.
466     __ GetObjectType(lhs, a2, a2);
467     __ Branch(&first_non_object, less, a2, Operand(FIRST_SPEC_OBJECT_TYPE));
468
469     // Return non-zero.
470     Label return_not_equal;
471     __ bind(&return_not_equal);
472     __ Ret(USE_DELAY_SLOT);
473     __ li(v0, Operand(1));
474
475     __ bind(&first_non_object);
476     // Check for oddballs: true, false, null, undefined.
477     __ Branch(&return_not_equal, eq, a2, Operand(ODDBALL_TYPE));
478
479     __ GetObjectType(rhs, a3, a3);
480     __ Branch(&return_not_equal, greater, a3, Operand(FIRST_SPEC_OBJECT_TYPE));
481
482     // Check for oddballs: true, false, null, undefined.
483     __ Branch(&return_not_equal, eq, a3, Operand(ODDBALL_TYPE));
484
485     // Now that we have the types we might as well check for
486     // internalized-internalized.
487     STATIC_ASSERT(kInternalizedTag == 0 && kStringTag == 0);
488     __ Or(a2, a2, Operand(a3));
489     __ And(at, a2, Operand(kIsNotStringMask | kIsNotInternalizedMask));
490     __ Branch(&return_not_equal, eq, at, Operand(zero_reg));
491 }
492
493
494 static void EmitCheckForTwoHeapNumbers(MacroAssembler* masm,
495                                        Register lhs,
496                                        Register rhs,
497                                        Label* both_loaded_as_doubles,
498                                        Label* not_heap_numbers,
499                                        Label* slow) {
500   __ GetObjectType(lhs, a3, a2);
501   __ Branch(not_heap_numbers, ne, a2, Operand(HEAP_NUMBER_TYPE));
502   __ lw(a2, FieldMemOperand(rhs, HeapObject::kMapOffset));
503   // If first was a heap number & second wasn't, go to slow case.
504   __ Branch(slow, ne, a3, Operand(a2));
505
506   // Both are heap numbers. Load them up then jump to the code we have
507   // for that.
508   __ ldc1(f12, FieldMemOperand(lhs, HeapNumber::kValueOffset));
509   __ ldc1(f14, FieldMemOperand(rhs, HeapNumber::kValueOffset));
510
511   __ jmp(both_loaded_as_doubles);
512 }
513
514
515 // Fast negative check for internalized-to-internalized equality.
516 static void EmitCheckForInternalizedStringsOrObjects(MacroAssembler* masm,
517                                                      Register lhs,
518                                                      Register rhs,
519                                                      Label* possible_strings,
520                                                      Label* not_both_strings) {
521   DCHECK((lhs.is(a0) && rhs.is(a1)) ||
522          (lhs.is(a1) && rhs.is(a0)));
523
524   // a2 is object type of rhs.
525   Label object_test;
526   STATIC_ASSERT(kInternalizedTag == 0 && kStringTag == 0);
527   __ And(at, a2, Operand(kIsNotStringMask));
528   __ Branch(&object_test, ne, at, Operand(zero_reg));
529   __ And(at, a2, Operand(kIsNotInternalizedMask));
530   __ Branch(possible_strings, ne, at, Operand(zero_reg));
531   __ GetObjectType(rhs, a3, a3);
532   __ Branch(not_both_strings, ge, a3, Operand(FIRST_NONSTRING_TYPE));
533   __ And(at, a3, Operand(kIsNotInternalizedMask));
534   __ Branch(possible_strings, ne, at, Operand(zero_reg));
535
536   // Both are internalized strings. We already checked they weren't the same
537   // pointer so they are not equal.
538   __ Ret(USE_DELAY_SLOT);
539   __ li(v0, Operand(1));   // Non-zero indicates not equal.
540
541   __ bind(&object_test);
542   __ Branch(not_both_strings, lt, a2, Operand(FIRST_SPEC_OBJECT_TYPE));
543   __ GetObjectType(rhs, a2, a3);
544   __ Branch(not_both_strings, lt, a3, Operand(FIRST_SPEC_OBJECT_TYPE));
545
546   // If both objects are undetectable, they are equal.  Otherwise, they
547   // are not equal, since they are different objects and an object is not
548   // equal to undefined.
549   __ lw(a3, FieldMemOperand(lhs, HeapObject::kMapOffset));
550   __ lbu(a2, FieldMemOperand(a2, Map::kBitFieldOffset));
551   __ lbu(a3, FieldMemOperand(a3, Map::kBitFieldOffset));
552   __ and_(a0, a2, a3);
553   __ And(a0, a0, Operand(1 << Map::kIsUndetectable));
554   __ Ret(USE_DELAY_SLOT);
555   __ xori(v0, a0, 1 << Map::kIsUndetectable);
556 }
557
558
559 static void CompareICStub_CheckInputType(MacroAssembler* masm, Register input,
560                                          Register scratch,
561                                          CompareICState::State expected,
562                                          Label* fail) {
563   Label ok;
564   if (expected == CompareICState::SMI) {
565     __ JumpIfNotSmi(input, fail);
566   } else if (expected == CompareICState::NUMBER) {
567     __ JumpIfSmi(input, &ok);
568     __ CheckMap(input, scratch, Heap::kHeapNumberMapRootIndex, fail,
569                 DONT_DO_SMI_CHECK);
570   }
571   // We could be strict about internalized/string here, but as long as
572   // hydrogen doesn't care, the stub doesn't have to care either.
573   __ bind(&ok);
574 }
575
576
577 // On entry a1 and a2 are the values to be compared.
578 // On exit a0 is 0, positive or negative to indicate the result of
579 // the comparison.
580 void CompareICStub::GenerateGeneric(MacroAssembler* masm) {
581   Register lhs = a1;
582   Register rhs = a0;
583   Condition cc = GetCondition();
584
585   Label miss;
586   CompareICStub_CheckInputType(masm, lhs, a2, left(), &miss);
587   CompareICStub_CheckInputType(masm, rhs, a3, right(), &miss);
588
589   Label slow;  // Call builtin.
590   Label not_smis, both_loaded_as_doubles;
591
592   Label not_two_smis, smi_done;
593   __ Or(a2, a1, a0);
594   __ JumpIfNotSmi(a2, &not_two_smis);
595   __ sra(a1, a1, 1);
596   __ sra(a0, a0, 1);
597   __ Ret(USE_DELAY_SLOT);
598   __ subu(v0, a1, a0);
599   __ bind(&not_two_smis);
600
601   // NOTICE! This code is only reached after a smi-fast-case check, so
602   // it is certain that at least one operand isn't a smi.
603
604   // Handle the case where the objects are identical.  Either returns the answer
605   // or goes to slow.  Only falls through if the objects were not identical.
606   EmitIdenticalObjectComparison(masm, &slow, cc, strength());
607
608   // If either is a Smi (we know that not both are), then they can only
609   // be strictly equal if the other is a HeapNumber.
610   STATIC_ASSERT(kSmiTag == 0);
611   DCHECK_EQ(static_cast<Smi*>(0), Smi::FromInt(0));
612   __ And(t2, lhs, Operand(rhs));
613   __ JumpIfNotSmi(t2, &not_smis, t0);
614   // One operand is a smi. EmitSmiNonsmiComparison generates code that can:
615   // 1) Return the answer.
616   // 2) Go to slow.
617   // 3) Fall through to both_loaded_as_doubles.
618   // 4) Jump to rhs_not_nan.
619   // In cases 3 and 4 we have found out we were dealing with a number-number
620   // comparison and the numbers have been loaded into f12 and f14 as doubles,
621   // or in GP registers (a0, a1, a2, a3) depending on the presence of the FPU.
622   EmitSmiNonsmiComparison(masm, lhs, rhs,
623                           &both_loaded_as_doubles, &slow, strict());
624
625   __ bind(&both_loaded_as_doubles);
626   // f12, f14 are the double representations of the left hand side
627   // and the right hand side if we have FPU. Otherwise a2, a3 represent
628   // left hand side and a0, a1 represent right hand side.
629   Label nan;
630   __ li(t0, Operand(LESS));
631   __ li(t1, Operand(GREATER));
632   __ li(t2, Operand(EQUAL));
633
634   // Check if either rhs or lhs is NaN.
635   __ BranchF(NULL, &nan, eq, f12, f14);
636
637   // Check if LESS condition is satisfied. If true, move conditionally
638   // result to v0.
639   if (!IsMipsArchVariant(kMips32r6)) {
640     __ c(OLT, D, f12, f14);
641     __ Movt(v0, t0);
642     // Use previous check to store conditionally to v0 oposite condition
643     // (GREATER). If rhs is equal to lhs, this will be corrected in next
644     // check.
645     __ Movf(v0, t1);
646     // Check if EQUAL condition is satisfied. If true, move conditionally
647     // result to v0.
648     __ c(EQ, D, f12, f14);
649     __ Movt(v0, t2);
650   } else {
651     Label skip;
652     __ BranchF(USE_DELAY_SLOT, &skip, NULL, lt, f12, f14);
653     __ mov(v0, t0);  // Return LESS as result.
654
655     __ BranchF(USE_DELAY_SLOT, &skip, NULL, eq, f12, f14);
656     __ mov(v0, t2);  // Return EQUAL as result.
657
658     __ mov(v0, t1);  // Return GREATER as result.
659     __ bind(&skip);
660   }
661
662   __ Ret();
663
664   __ bind(&nan);
665   // NaN comparisons always fail.
666   // Load whatever we need in v0 to make the comparison fail.
667   DCHECK(is_int16(GREATER) && is_int16(LESS));
668   __ Ret(USE_DELAY_SLOT);
669   if (cc == lt || cc == le) {
670     __ li(v0, Operand(GREATER));
671   } else {
672     __ li(v0, Operand(LESS));
673   }
674
675
676   __ bind(&not_smis);
677   // At this point we know we are dealing with two different objects,
678   // and neither of them is a Smi. The objects are in lhs_ and rhs_.
679   if (strict()) {
680     // This returns non-equal for some object types, or falls through if it
681     // was not lucky.
682     EmitStrictTwoHeapObjectCompare(masm, lhs, rhs);
683   }
684
685   Label check_for_internalized_strings;
686   Label flat_string_check;
687   // Check for heap-number-heap-number comparison. Can jump to slow case,
688   // or load both doubles and jump to the code that handles
689   // that case. If the inputs are not doubles then jumps to
690   // check_for_internalized_strings.
691   // In this case a2 will contain the type of lhs_.
692   EmitCheckForTwoHeapNumbers(masm,
693                              lhs,
694                              rhs,
695                              &both_loaded_as_doubles,
696                              &check_for_internalized_strings,
697                              &flat_string_check);
698
699   __ bind(&check_for_internalized_strings);
700   if (cc == eq && !strict()) {
701     // Returns an answer for two internalized strings or two
702     // detectable objects.
703     // Otherwise jumps to string case or not both strings case.
704     // Assumes that a2 is the type of lhs_ on entry.
705     EmitCheckForInternalizedStringsOrObjects(
706         masm, lhs, rhs, &flat_string_check, &slow);
707   }
708
709   // Check for both being sequential one-byte strings,
710   // and inline if that is the case.
711   __ bind(&flat_string_check);
712
713   __ JumpIfNonSmisNotBothSequentialOneByteStrings(lhs, rhs, a2, a3, &slow);
714
715   __ IncrementCounter(isolate()->counters()->string_compare_native(), 1, a2,
716                       a3);
717   if (cc == eq) {
718     StringHelper::GenerateFlatOneByteStringEquals(masm, lhs, rhs, a2, a3, t0);
719   } else {
720     StringHelper::GenerateCompareFlatOneByteStrings(masm, lhs, rhs, a2, a3, t0,
721                                                     t1);
722   }
723   // Never falls through to here.
724
725   __ bind(&slow);
726   // Prepare for call to builtin. Push object pointers, a0 (lhs) first,
727   // a1 (rhs) second.
728   __ Push(lhs, rhs);
729   // Figure out which native to call and setup the arguments.
730   if (cc == eq && strict()) {
731     __ TailCallRuntime(Runtime::kStrictEquals, 2, 1);
732   } else {
733     int context_index;
734     if (cc == eq) {
735       context_index = Context::EQUALS_BUILTIN_INDEX;
736     } else {
737       context_index = is_strong(strength())
738                           ? Context::COMPARE_STRONG_BUILTIN_INDEX
739                           : Context::COMPARE_BUILTIN_INDEX;
740       int ncr;  // NaN compare result.
741       if (cc == lt || cc == le) {
742         ncr = GREATER;
743       } else {
744         DCHECK(cc == gt || cc == ge);  // Remaining cases.
745         ncr = LESS;
746       }
747       __ li(a0, Operand(Smi::FromInt(ncr)));
748       __ push(a0);
749     }
750
751     // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
752     // tagged as a small integer.
753     __ InvokeBuiltin(context_index, JUMP_FUNCTION);
754   }
755
756   __ bind(&miss);
757   GenerateMiss(masm);
758 }
759
760
761 void StoreRegistersStateStub::Generate(MacroAssembler* masm) {
762   __ mov(t9, ra);
763   __ pop(ra);
764   __ PushSafepointRegisters();
765   __ Jump(t9);
766 }
767
768
769 void RestoreRegistersStateStub::Generate(MacroAssembler* masm) {
770   __ mov(t9, ra);
771   __ pop(ra);
772   __ PopSafepointRegisters();
773   __ Jump(t9);
774 }
775
776
777 void StoreBufferOverflowStub::Generate(MacroAssembler* masm) {
778   // We don't allow a GC during a store buffer overflow so there is no need to
779   // store the registers in any particular way, but we do have to store and
780   // restore them.
781   __ MultiPush(kJSCallerSaved | ra.bit());
782   if (save_doubles()) {
783     __ MultiPushFPU(kCallerSavedFPU);
784   }
785   const int argument_count = 1;
786   const int fp_argument_count = 0;
787   const Register scratch = a1;
788
789   AllowExternalCallThatCantCauseGC scope(masm);
790   __ PrepareCallCFunction(argument_count, fp_argument_count, scratch);
791   __ li(a0, Operand(ExternalReference::isolate_address(isolate())));
792   __ CallCFunction(
793       ExternalReference::store_buffer_overflow_function(isolate()),
794       argument_count);
795   if (save_doubles()) {
796     __ MultiPopFPU(kCallerSavedFPU);
797   }
798
799   __ MultiPop(kJSCallerSaved | ra.bit());
800   __ Ret();
801 }
802
803
804 void MathPowStub::Generate(MacroAssembler* masm) {
805   const Register base = a1;
806   const Register exponent = MathPowTaggedDescriptor::exponent();
807   DCHECK(exponent.is(a2));
808   const Register heapnumbermap = t1;
809   const Register heapnumber = v0;
810   const DoubleRegister double_base = f2;
811   const DoubleRegister double_exponent = f4;
812   const DoubleRegister double_result = f0;
813   const DoubleRegister double_scratch = f6;
814   const FPURegister single_scratch = f8;
815   const Register scratch = t5;
816   const Register scratch2 = t3;
817
818   Label call_runtime, done, int_exponent;
819   if (exponent_type() == ON_STACK) {
820     Label base_is_smi, unpack_exponent;
821     // The exponent and base are supplied as arguments on the stack.
822     // This can only happen if the stub is called from non-optimized code.
823     // Load input parameters from stack to double registers.
824     __ lw(base, MemOperand(sp, 1 * kPointerSize));
825     __ lw(exponent, MemOperand(sp, 0 * kPointerSize));
826
827     __ LoadRoot(heapnumbermap, Heap::kHeapNumberMapRootIndex);
828
829     __ UntagAndJumpIfSmi(scratch, base, &base_is_smi);
830     __ lw(scratch, FieldMemOperand(base, JSObject::kMapOffset));
831     __ Branch(&call_runtime, ne, scratch, Operand(heapnumbermap));
832
833     __ ldc1(double_base, FieldMemOperand(base, HeapNumber::kValueOffset));
834     __ jmp(&unpack_exponent);
835
836     __ bind(&base_is_smi);
837     __ mtc1(scratch, single_scratch);
838     __ cvt_d_w(double_base, single_scratch);
839     __ bind(&unpack_exponent);
840
841     __ UntagAndJumpIfSmi(scratch, exponent, &int_exponent);
842
843     __ lw(scratch, FieldMemOperand(exponent, JSObject::kMapOffset));
844     __ Branch(&call_runtime, ne, scratch, Operand(heapnumbermap));
845     __ ldc1(double_exponent,
846             FieldMemOperand(exponent, HeapNumber::kValueOffset));
847   } else if (exponent_type() == TAGGED) {
848     // Base is already in double_base.
849     __ UntagAndJumpIfSmi(scratch, exponent, &int_exponent);
850
851     __ ldc1(double_exponent,
852             FieldMemOperand(exponent, HeapNumber::kValueOffset));
853   }
854
855   if (exponent_type() != INTEGER) {
856     Label int_exponent_convert;
857     // Detect integer exponents stored as double.
858     __ EmitFPUTruncate(kRoundToMinusInf,
859                        scratch,
860                        double_exponent,
861                        at,
862                        double_scratch,
863                        scratch2,
864                        kCheckForInexactConversion);
865     // scratch2 == 0 means there was no conversion error.
866     __ Branch(&int_exponent_convert, eq, scratch2, Operand(zero_reg));
867
868     if (exponent_type() == ON_STACK) {
869       // Detect square root case.  Crankshaft detects constant +/-0.5 at
870       // compile time and uses DoMathPowHalf instead.  We then skip this check
871       // for non-constant cases of +/-0.5 as these hardly occur.
872       Label not_plus_half;
873       // Test for 0.5.
874       __ Move(double_scratch, 0.5);
875       __ BranchF(USE_DELAY_SLOT,
876                  &not_plus_half,
877                  NULL,
878                  ne,
879                  double_exponent,
880                  double_scratch);
881       // double_scratch can be overwritten in the delay slot.
882       // Calculates square root of base.  Check for the special case of
883       // Math.pow(-Infinity, 0.5) == Infinity (ECMA spec, 15.8.2.13).
884       __ Move(double_scratch, static_cast<double>(-V8_INFINITY));
885       __ BranchF(USE_DELAY_SLOT, &done, NULL, eq, double_base, double_scratch);
886       __ neg_d(double_result, double_scratch);
887
888       // Add +0 to convert -0 to +0.
889       __ add_d(double_scratch, double_base, kDoubleRegZero);
890       __ sqrt_d(double_result, double_scratch);
891       __ jmp(&done);
892
893       __ bind(&not_plus_half);
894       __ Move(double_scratch, -0.5);
895       __ BranchF(USE_DELAY_SLOT,
896                  &call_runtime,
897                  NULL,
898                  ne,
899                  double_exponent,
900                  double_scratch);
901       // double_scratch can be overwritten in the delay slot.
902       // Calculates square root of base.  Check for the special case of
903       // Math.pow(-Infinity, -0.5) == 0 (ECMA spec, 15.8.2.13).
904       __ Move(double_scratch, static_cast<double>(-V8_INFINITY));
905       __ BranchF(USE_DELAY_SLOT, &done, NULL, eq, double_base, double_scratch);
906       __ Move(double_result, kDoubleRegZero);
907
908       // Add +0 to convert -0 to +0.
909       __ add_d(double_scratch, double_base, kDoubleRegZero);
910       __ Move(double_result, 1.);
911       __ sqrt_d(double_scratch, double_scratch);
912       __ div_d(double_result, double_result, double_scratch);
913       __ jmp(&done);
914     }
915
916     __ push(ra);
917     {
918       AllowExternalCallThatCantCauseGC scope(masm);
919       __ PrepareCallCFunction(0, 2, scratch2);
920       __ MovToFloatParameters(double_base, double_exponent);
921       __ CallCFunction(
922           ExternalReference::power_double_double_function(isolate()),
923           0, 2);
924     }
925     __ pop(ra);
926     __ MovFromFloatResult(double_result);
927     __ jmp(&done);
928
929     __ bind(&int_exponent_convert);
930   }
931
932   // Calculate power with integer exponent.
933   __ bind(&int_exponent);
934
935   // Get two copies of exponent in the registers scratch and exponent.
936   if (exponent_type() == INTEGER) {
937     __ mov(scratch, exponent);
938   } else {
939     // Exponent has previously been stored into scratch as untagged integer.
940     __ mov(exponent, scratch);
941   }
942
943   __ mov_d(double_scratch, double_base);  // Back up base.
944   __ Move(double_result, 1.0);
945
946   // Get absolute value of exponent.
947   Label positive_exponent;
948   __ Branch(&positive_exponent, ge, scratch, Operand(zero_reg));
949   __ Subu(scratch, zero_reg, scratch);
950   __ bind(&positive_exponent);
951
952   Label while_true, no_carry, loop_end;
953   __ bind(&while_true);
954
955   __ And(scratch2, scratch, 1);
956
957   __ Branch(&no_carry, eq, scratch2, Operand(zero_reg));
958   __ mul_d(double_result, double_result, double_scratch);
959   __ bind(&no_carry);
960
961   __ sra(scratch, scratch, 1);
962
963   __ Branch(&loop_end, eq, scratch, Operand(zero_reg));
964   __ mul_d(double_scratch, double_scratch, double_scratch);
965
966   __ Branch(&while_true);
967
968   __ bind(&loop_end);
969
970   __ Branch(&done, ge, exponent, Operand(zero_reg));
971   __ Move(double_scratch, 1.0);
972   __ div_d(double_result, double_scratch, double_result);
973   // Test whether result is zero.  Bail out to check for subnormal result.
974   // Due to subnormals, x^-y == (1/x)^y does not hold in all cases.
975   __ BranchF(&done, NULL, ne, double_result, kDoubleRegZero);
976
977   // double_exponent may not contain the exponent value if the input was a
978   // smi.  We set it with exponent value before bailing out.
979   __ mtc1(exponent, single_scratch);
980   __ cvt_d_w(double_exponent, single_scratch);
981
982   // Returning or bailing out.
983   Counters* counters = isolate()->counters();
984   if (exponent_type() == ON_STACK) {
985     // The arguments are still on the stack.
986     __ bind(&call_runtime);
987     __ TailCallRuntime(Runtime::kMathPowRT, 2, 1);
988
989     // The stub is called from non-optimized code, which expects the result
990     // as heap number in exponent.
991     __ bind(&done);
992     __ AllocateHeapNumber(
993         heapnumber, scratch, scratch2, heapnumbermap, &call_runtime);
994     __ sdc1(double_result,
995             FieldMemOperand(heapnumber, HeapNumber::kValueOffset));
996     DCHECK(heapnumber.is(v0));
997     __ IncrementCounter(counters->math_pow(), 1, scratch, scratch2);
998     __ DropAndRet(2);
999   } else {
1000     __ push(ra);
1001     {
1002       AllowExternalCallThatCantCauseGC scope(masm);
1003       __ PrepareCallCFunction(0, 2, scratch);
1004       __ MovToFloatParameters(double_base, double_exponent);
1005       __ CallCFunction(
1006           ExternalReference::power_double_double_function(isolate()),
1007           0, 2);
1008     }
1009     __ pop(ra);
1010     __ MovFromFloatResult(double_result);
1011
1012     __ bind(&done);
1013     __ IncrementCounter(counters->math_pow(), 1, scratch, scratch2);
1014     __ Ret();
1015   }
1016 }
1017
1018
1019 bool CEntryStub::NeedsImmovableCode() {
1020   return true;
1021 }
1022
1023
1024 void CodeStub::GenerateStubsAheadOfTime(Isolate* isolate) {
1025   CEntryStub::GenerateAheadOfTime(isolate);
1026   StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
1027   StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
1028   ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
1029   CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
1030   CreateWeakCellStub::GenerateAheadOfTime(isolate);
1031   BinaryOpICStub::GenerateAheadOfTime(isolate);
1032   StoreRegistersStateStub::GenerateAheadOfTime(isolate);
1033   RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
1034   BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
1035   StoreFastElementStub::GenerateAheadOfTime(isolate);
1036   TypeofStub::GenerateAheadOfTime(isolate);
1037 }
1038
1039
1040 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
1041   StoreRegistersStateStub stub(isolate);
1042   stub.GetCode();
1043 }
1044
1045
1046 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
1047   RestoreRegistersStateStub stub(isolate);
1048   stub.GetCode();
1049 }
1050
1051
1052 void CodeStub::GenerateFPStubs(Isolate* isolate) {
1053   // Generate if not already in cache.
1054   SaveFPRegsMode mode = kSaveFPRegs;
1055   CEntryStub(isolate, 1, mode).GetCode();
1056   StoreBufferOverflowStub(isolate, mode).GetCode();
1057   isolate->set_fp_stubs_generated(true);
1058 }
1059
1060
1061 void CEntryStub::GenerateAheadOfTime(Isolate* isolate) {
1062   CEntryStub stub(isolate, 1, kDontSaveFPRegs);
1063   stub.GetCode();
1064 }
1065
1066
1067 void CEntryStub::Generate(MacroAssembler* masm) {
1068   // Called from JavaScript; parameters are on stack as if calling JS function
1069   // a0: number of arguments including receiver
1070   // a1: pointer to builtin function
1071   // fp: frame pointer    (restored after C call)
1072   // sp: stack pointer    (restored as callee's sp after C call)
1073   // cp: current context  (C callee-saved)
1074
1075   ProfileEntryHookStub::MaybeCallEntryHook(masm);
1076
1077   // Compute the argv pointer in a callee-saved register.
1078   __ sll(s1, a0, kPointerSizeLog2);
1079   __ Addu(s1, sp, s1);
1080   __ Subu(s1, s1, kPointerSize);
1081
1082   // Enter the exit frame that transitions from JavaScript to C++.
1083   FrameScope scope(masm, StackFrame::MANUAL);
1084   __ EnterExitFrame(save_doubles());
1085
1086   // s0: number of arguments  including receiver (C callee-saved)
1087   // s1: pointer to first argument (C callee-saved)
1088   // s2: pointer to builtin function (C callee-saved)
1089
1090   // Prepare arguments for C routine.
1091   // a0 = argc
1092   __ mov(s0, a0);
1093   __ mov(s2, a1);
1094   // a1 = argv (set in the delay slot after find_ra below).
1095
1096   // We are calling compiled C/C++ code. a0 and a1 hold our two arguments. We
1097   // also need to reserve the 4 argument slots on the stack.
1098
1099   __ AssertStackIsAligned();
1100
1101   __ li(a2, Operand(ExternalReference::isolate_address(isolate())));
1102
1103   // To let the GC traverse the return address of the exit frames, we need to
1104   // know where the return address is. The CEntryStub is unmovable, so
1105   // we can store the address on the stack to be able to find it again and
1106   // we never have to restore it, because it will not change.
1107   { Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm);
1108     // This branch-and-link sequence is needed to find the current PC on mips,
1109     // saved to the ra register.
1110     // Use masm-> here instead of the double-underscore macro since extra
1111     // coverage code can interfere with the proper calculation of ra.
1112     Label find_ra;
1113     masm->bal(&find_ra);  // bal exposes branch delay slot.
1114     masm->mov(a1, s1);
1115     masm->bind(&find_ra);
1116
1117     // Adjust the value in ra to point to the correct return location, 2nd
1118     // instruction past the real call into C code (the jalr(t9)), and push it.
1119     // This is the return address of the exit frame.
1120     const int kNumInstructionsToJump = 5;
1121     masm->Addu(ra, ra, kNumInstructionsToJump * kPointerSize);
1122     masm->sw(ra, MemOperand(sp));  // This spot was reserved in EnterExitFrame.
1123     // Stack space reservation moved to the branch delay slot below.
1124     // Stack is still aligned.
1125
1126     // Call the C routine.
1127     masm->mov(t9, s2);  // Function pointer to t9 to conform to ABI for PIC.
1128     masm->jalr(t9);
1129     // Set up sp in the delay slot.
1130     masm->addiu(sp, sp, -kCArgsSlotsSize);
1131     // Make sure the stored 'ra' points to this position.
1132     DCHECK_EQ(kNumInstructionsToJump,
1133               masm->InstructionsGeneratedSince(&find_ra));
1134   }
1135
1136
1137   // Check result for exception sentinel.
1138   Label exception_returned;
1139   __ LoadRoot(t0, Heap::kExceptionRootIndex);
1140   __ Branch(&exception_returned, eq, t0, Operand(v0));
1141
1142   // Check that there is no pending exception, otherwise we
1143   // should have returned the exception sentinel.
1144   if (FLAG_debug_code) {
1145     Label okay;
1146     ExternalReference pending_exception_address(
1147         Isolate::kPendingExceptionAddress, isolate());
1148     __ li(a2, Operand(pending_exception_address));
1149     __ lw(a2, MemOperand(a2));
1150     __ LoadRoot(t0, Heap::kTheHoleValueRootIndex);
1151     // Cannot use check here as it attempts to generate call into runtime.
1152     __ Branch(&okay, eq, t0, Operand(a2));
1153     __ stop("Unexpected pending exception");
1154     __ bind(&okay);
1155   }
1156
1157   // Exit C frame and return.
1158   // v0:v1: result
1159   // sp: stack pointer
1160   // fp: frame pointer
1161   // s0: still holds argc (callee-saved).
1162   __ LeaveExitFrame(save_doubles(), s0, true, EMIT_RETURN);
1163
1164   // Handling of exception.
1165   __ bind(&exception_returned);
1166
1167   ExternalReference pending_handler_context_address(
1168       Isolate::kPendingHandlerContextAddress, isolate());
1169   ExternalReference pending_handler_code_address(
1170       Isolate::kPendingHandlerCodeAddress, isolate());
1171   ExternalReference pending_handler_offset_address(
1172       Isolate::kPendingHandlerOffsetAddress, isolate());
1173   ExternalReference pending_handler_fp_address(
1174       Isolate::kPendingHandlerFPAddress, isolate());
1175   ExternalReference pending_handler_sp_address(
1176       Isolate::kPendingHandlerSPAddress, isolate());
1177
1178   // Ask the runtime for help to determine the handler. This will set v0 to
1179   // contain the current pending exception, don't clobber it.
1180   ExternalReference find_handler(Runtime::kUnwindAndFindExceptionHandler,
1181                                  isolate());
1182   {
1183     FrameScope scope(masm, StackFrame::MANUAL);
1184     __ PrepareCallCFunction(3, 0, a0);
1185     __ mov(a0, zero_reg);
1186     __ mov(a1, zero_reg);
1187     __ li(a2, Operand(ExternalReference::isolate_address(isolate())));
1188     __ CallCFunction(find_handler, 3);
1189   }
1190
1191   // Retrieve the handler context, SP and FP.
1192   __ li(cp, Operand(pending_handler_context_address));
1193   __ lw(cp, MemOperand(cp));
1194   __ li(sp, Operand(pending_handler_sp_address));
1195   __ lw(sp, MemOperand(sp));
1196   __ li(fp, Operand(pending_handler_fp_address));
1197   __ lw(fp, MemOperand(fp));
1198
1199   // If the handler is a JS frame, restore the context to the frame. Note that
1200   // the context will be set to (cp == 0) for non-JS frames.
1201   Label zero;
1202   __ Branch(&zero, eq, cp, Operand(zero_reg));
1203   __ sw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
1204   __ bind(&zero);
1205
1206   // Compute the handler entry address and jump to it.
1207   __ li(a1, Operand(pending_handler_code_address));
1208   __ lw(a1, MemOperand(a1));
1209   __ li(a2, Operand(pending_handler_offset_address));
1210   __ lw(a2, MemOperand(a2));
1211   __ Addu(a1, a1, Operand(Code::kHeaderSize - kHeapObjectTag));
1212   __ Addu(t9, a1, a2);
1213   __ Jump(t9);
1214 }
1215
1216
1217 void JSEntryStub::Generate(MacroAssembler* masm) {
1218   Label invoke, handler_entry, exit;
1219   Isolate* isolate = masm->isolate();
1220
1221   // Registers:
1222   // a0: entry address
1223   // a1: function
1224   // a2: receiver
1225   // a3: argc
1226   //
1227   // Stack:
1228   // 4 args slots
1229   // args
1230
1231   ProfileEntryHookStub::MaybeCallEntryHook(masm);
1232
1233   // Save callee saved registers on the stack.
1234   __ MultiPush(kCalleeSaved | ra.bit());
1235
1236   // Save callee-saved FPU registers.
1237   __ MultiPushFPU(kCalleeSavedFPU);
1238   // Set up the reserved register for 0.0.
1239   __ Move(kDoubleRegZero, 0.0);
1240
1241
1242   // Load argv in s0 register.
1243   int offset_to_argv = (kNumCalleeSaved + 1) * kPointerSize;
1244   offset_to_argv += kNumCalleeSavedFPU * kDoubleSize;
1245
1246   __ InitializeRootRegister();
1247   __ lw(s0, MemOperand(sp, offset_to_argv + kCArgsSlotsSize));
1248
1249   // We build an EntryFrame.
1250   __ li(t3, Operand(-1));  // Push a bad frame pointer to fail if it is used.
1251   int marker = type();
1252   __ li(t2, Operand(Smi::FromInt(marker)));
1253   __ li(t1, Operand(Smi::FromInt(marker)));
1254   __ li(t0, Operand(ExternalReference(Isolate::kCEntryFPAddress,
1255                                       isolate)));
1256   __ lw(t0, MemOperand(t0));
1257   __ Push(t3, t2, t1, t0);
1258   // Set up frame pointer for the frame to be pushed.
1259   __ addiu(fp, sp, -EntryFrameConstants::kCallerFPOffset);
1260
1261   // Registers:
1262   // a0: entry_address
1263   // a1: function
1264   // a2: receiver_pointer
1265   // a3: argc
1266   // s0: argv
1267   //
1268   // Stack:
1269   // caller fp          |
1270   // function slot      | entry frame
1271   // context slot       |
1272   // bad fp (0xff...f)  |
1273   // callee saved registers + ra
1274   // 4 args slots
1275   // args
1276
1277   // If this is the outermost JS call, set js_entry_sp value.
1278   Label non_outermost_js;
1279   ExternalReference js_entry_sp(Isolate::kJSEntrySPAddress, isolate);
1280   __ li(t1, Operand(ExternalReference(js_entry_sp)));
1281   __ lw(t2, MemOperand(t1));
1282   __ Branch(&non_outermost_js, ne, t2, Operand(zero_reg));
1283   __ sw(fp, MemOperand(t1));
1284   __ li(t0, Operand(Smi::FromInt(StackFrame::OUTERMOST_JSENTRY_FRAME)));
1285   Label cont;
1286   __ b(&cont);
1287   __ nop();   // Branch delay slot nop.
1288   __ bind(&non_outermost_js);
1289   __ li(t0, Operand(Smi::FromInt(StackFrame::INNER_JSENTRY_FRAME)));
1290   __ bind(&cont);
1291   __ push(t0);
1292
1293   // Jump to a faked try block that does the invoke, with a faked catch
1294   // block that sets the pending exception.
1295   __ jmp(&invoke);
1296   __ bind(&handler_entry);
1297   handler_offset_ = handler_entry.pos();
1298   // Caught exception: Store result (exception) in the pending exception
1299   // field in the JSEnv and return a failure sentinel.  Coming in here the
1300   // fp will be invalid because the PushStackHandler below sets it to 0 to
1301   // signal the existence of the JSEntry frame.
1302   __ li(t0, Operand(ExternalReference(Isolate::kPendingExceptionAddress,
1303                                       isolate)));
1304   __ sw(v0, MemOperand(t0));  // We come back from 'invoke'. result is in v0.
1305   __ LoadRoot(v0, Heap::kExceptionRootIndex);
1306   __ b(&exit);  // b exposes branch delay slot.
1307   __ nop();   // Branch delay slot nop.
1308
1309   // Invoke: Link this frame into the handler chain.
1310   __ bind(&invoke);
1311   __ PushStackHandler();
1312   // If an exception not caught by another handler occurs, this handler
1313   // returns control to the code after the bal(&invoke) above, which
1314   // restores all kCalleeSaved registers (including cp and fp) to their
1315   // saved values before returning a failure to C.
1316
1317   // Clear any pending exceptions.
1318   __ LoadRoot(t1, Heap::kTheHoleValueRootIndex);
1319   __ li(t0, Operand(ExternalReference(Isolate::kPendingExceptionAddress,
1320                                       isolate)));
1321   __ sw(t1, MemOperand(t0));
1322
1323   // Invoke the function by calling through JS entry trampoline builtin.
1324   // Notice that we cannot store a reference to the trampoline code directly in
1325   // this stub, because runtime stubs are not traversed when doing GC.
1326
1327   // Registers:
1328   // a0: entry_address
1329   // a1: function
1330   // a2: receiver_pointer
1331   // a3: argc
1332   // s0: argv
1333   //
1334   // Stack:
1335   // handler frame
1336   // entry frame
1337   // callee saved registers + ra
1338   // 4 args slots
1339   // args
1340
1341   if (type() == StackFrame::ENTRY_CONSTRUCT) {
1342     ExternalReference construct_entry(Builtins::kJSConstructEntryTrampoline,
1343                                       isolate);
1344     __ li(t0, Operand(construct_entry));
1345   } else {
1346     ExternalReference entry(Builtins::kJSEntryTrampoline, masm->isolate());
1347     __ li(t0, Operand(entry));
1348   }
1349   __ lw(t9, MemOperand(t0));  // Deref address.
1350
1351   // Call JSEntryTrampoline.
1352   __ addiu(t9, t9, Code::kHeaderSize - kHeapObjectTag);
1353   __ Call(t9);
1354
1355   // Unlink this frame from the handler chain.
1356   __ PopStackHandler();
1357
1358   __ bind(&exit);  // v0 holds result
1359   // Check if the current stack frame is marked as the outermost JS frame.
1360   Label non_outermost_js_2;
1361   __ pop(t1);
1362   __ Branch(&non_outermost_js_2,
1363             ne,
1364             t1,
1365             Operand(Smi::FromInt(StackFrame::OUTERMOST_JSENTRY_FRAME)));
1366   __ li(t1, Operand(ExternalReference(js_entry_sp)));
1367   __ sw(zero_reg, MemOperand(t1));
1368   __ bind(&non_outermost_js_2);
1369
1370   // Restore the top frame descriptors from the stack.
1371   __ pop(t1);
1372   __ li(t0, Operand(ExternalReference(Isolate::kCEntryFPAddress,
1373                                       isolate)));
1374   __ sw(t1, MemOperand(t0));
1375
1376   // Reset the stack to the callee saved registers.
1377   __ addiu(sp, sp, -EntryFrameConstants::kCallerFPOffset);
1378
1379   // Restore callee-saved fpu registers.
1380   __ MultiPopFPU(kCalleeSavedFPU);
1381
1382   // Restore callee saved registers from the stack.
1383   __ MultiPop(kCalleeSaved | ra.bit());
1384   // Return.
1385   __ Jump(ra);
1386 }
1387
1388
1389 void LoadIndexedStringStub::Generate(MacroAssembler* masm) {
1390   // Return address is in ra.
1391   Label miss;
1392
1393   Register receiver = LoadDescriptor::ReceiverRegister();
1394   Register index = LoadDescriptor::NameRegister();
1395   Register scratch = t1;
1396   Register result = v0;
1397   DCHECK(!scratch.is(receiver) && !scratch.is(index));
1398   DCHECK(!scratch.is(LoadWithVectorDescriptor::VectorRegister()));
1399
1400   StringCharAtGenerator char_at_generator(receiver, index, scratch, result,
1401                                           &miss,  // When not a string.
1402                                           &miss,  // When not a number.
1403                                           &miss,  // When index out of range.
1404                                           STRING_INDEX_IS_ARRAY_INDEX,
1405                                           RECEIVER_IS_STRING);
1406   char_at_generator.GenerateFast(masm);
1407   __ Ret();
1408
1409   StubRuntimeCallHelper call_helper;
1410   char_at_generator.GenerateSlow(masm, PART_OF_IC_HANDLER, call_helper);
1411
1412   __ bind(&miss);
1413   PropertyAccessCompiler::TailCallBuiltin(
1414       masm, PropertyAccessCompiler::MissBuiltin(Code::KEYED_LOAD_IC));
1415 }
1416
1417
1418 void InstanceOfStub::Generate(MacroAssembler* masm) {
1419   Register const object = a1;              // Object (lhs).
1420   Register const function = a0;            // Function (rhs).
1421   Register const object_map = a2;          // Map of {object}.
1422   Register const function_map = a3;        // Map of {function}.
1423   Register const function_prototype = t0;  // Prototype of {function}.
1424   Register const scratch = t1;
1425
1426   DCHECK(object.is(InstanceOfDescriptor::LeftRegister()));
1427   DCHECK(function.is(InstanceOfDescriptor::RightRegister()));
1428
1429   // Check if {object} is a smi.
1430   Label object_is_smi;
1431   __ JumpIfSmi(object, &object_is_smi);
1432
1433   // Lookup the {function} and the {object} map in the global instanceof cache.
1434   // Note: This is safe because we clear the global instanceof cache whenever
1435   // we change the prototype of any object.
1436   Label fast_case, slow_case;
1437   __ lw(object_map, FieldMemOperand(object, HeapObject::kMapOffset));
1438   __ LoadRoot(at, Heap::kInstanceofCacheFunctionRootIndex);
1439   __ Branch(&fast_case, ne, function, Operand(at));
1440   __ LoadRoot(at, Heap::kInstanceofCacheMapRootIndex);
1441   __ Branch(&fast_case, ne, object_map, Operand(at));
1442   __ Ret(USE_DELAY_SLOT);
1443   __ LoadRoot(v0, Heap::kInstanceofCacheAnswerRootIndex);  // In delay slot.
1444
1445   // If {object} is a smi we can safely return false if {function} is a JS
1446   // function, otherwise we have to miss to the runtime and throw an exception.
1447   __ bind(&object_is_smi);
1448   __ JumpIfSmi(function, &slow_case);
1449   __ GetObjectType(function, function_map, scratch);
1450   __ Branch(&slow_case, ne, scratch, Operand(JS_FUNCTION_TYPE));
1451   __ Ret(USE_DELAY_SLOT);
1452   __ LoadRoot(v0, Heap::kFalseValueRootIndex);  // In delay slot.
1453
1454   // Fast-case: The {function} must be a valid JSFunction.
1455   __ bind(&fast_case);
1456   __ JumpIfSmi(function, &slow_case);
1457   __ GetObjectType(function, function_map, scratch);
1458   __ Branch(&slow_case, ne, scratch, Operand(JS_FUNCTION_TYPE));
1459
1460   // Ensure that {function} has an instance prototype.
1461   __ lbu(scratch, FieldMemOperand(function_map, Map::kBitFieldOffset));
1462   __ And(at, scratch, Operand(1 << Map::kHasNonInstancePrototype));
1463   __ Branch(&slow_case, ne, at, Operand(zero_reg));
1464
1465   // Ensure that {function} is not bound.
1466   Register const shared_info = scratch;
1467   __ lw(shared_info,
1468         FieldMemOperand(function, JSFunction::kSharedFunctionInfoOffset));
1469   __ lbu(scratch,
1470          FieldMemOperand(shared_info, SharedFunctionInfo::kBoundByteOffset));
1471   __ And(at, scratch, Operand(1 << SharedFunctionInfo::kBoundBitWithinByte));
1472   __ Branch(&slow_case, ne, at, Operand(zero_reg));
1473
1474   // Get the "prototype" (or initial map) of the {function}.
1475   __ lw(function_prototype,
1476         FieldMemOperand(function, JSFunction::kPrototypeOrInitialMapOffset));
1477   __ AssertNotSmi(function_prototype);
1478
1479   // Resolve the prototype if the {function} has an initial map.  Afterwards the
1480   // {function_prototype} will be either the JSReceiver prototype object or the
1481   // hole value, which means that no instances of the {function} were created so
1482   // far and hence we should return false.
1483   Label function_prototype_valid;
1484   __ GetObjectType(function_prototype, scratch, scratch);
1485   __ Branch(&function_prototype_valid, ne, scratch, Operand(MAP_TYPE));
1486   __ lw(function_prototype,
1487         FieldMemOperand(function_prototype, Map::kPrototypeOffset));
1488   __ bind(&function_prototype_valid);
1489   __ AssertNotSmi(function_prototype);
1490
1491   // Update the global instanceof cache with the current {object} map and
1492   // {function}.  The cached answer will be set when it is known below.
1493   __ StoreRoot(function, Heap::kInstanceofCacheFunctionRootIndex);
1494   __ StoreRoot(object_map, Heap::kInstanceofCacheMapRootIndex);
1495
1496   // Loop through the prototype chain looking for the {function} prototype.
1497   // Assume true, and change to false if not found.
1498   Register const object_prototype = object_map;
1499   Register const null = scratch;
1500   Label done, loop;
1501   __ LoadRoot(v0, Heap::kTrueValueRootIndex);
1502   __ LoadRoot(null, Heap::kNullValueRootIndex);
1503   __ bind(&loop);
1504   __ lw(object_prototype, FieldMemOperand(object_map, Map::kPrototypeOffset));
1505   __ Branch(&done, eq, object_prototype, Operand(function_prototype));
1506   __ Branch(USE_DELAY_SLOT, &loop, ne, object_prototype, Operand(null));
1507   __ lw(object_map, FieldMemOperand(object_prototype, HeapObject::kMapOffset));
1508   __ LoadRoot(v0, Heap::kFalseValueRootIndex);
1509   __ bind(&done);
1510   __ Ret(USE_DELAY_SLOT);
1511   __ StoreRoot(v0, Heap::kInstanceofCacheAnswerRootIndex);  // In delay slot.
1512
1513   // Slow-case: Call the runtime function.
1514   __ bind(&slow_case);
1515   __ Push(object, function);
1516   __ TailCallRuntime(Runtime::kInstanceOf, 2, 1);
1517 }
1518
1519
1520 void FunctionPrototypeStub::Generate(MacroAssembler* masm) {
1521   Label miss;
1522   Register receiver = LoadDescriptor::ReceiverRegister();
1523   // Ensure that the vector and slot registers won't be clobbered before
1524   // calling the miss handler.
1525   DCHECK(!AreAliased(t0, t1, LoadWithVectorDescriptor::VectorRegister(),
1526                      LoadWithVectorDescriptor::SlotRegister()));
1527
1528   NamedLoadHandlerCompiler::GenerateLoadFunctionPrototype(masm, receiver, t0,
1529                                                           t1, &miss);
1530   __ bind(&miss);
1531   PropertyAccessCompiler::TailCallBuiltin(
1532       masm, PropertyAccessCompiler::MissBuiltin(Code::LOAD_IC));
1533 }
1534
1535
1536 void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) {
1537   // The displacement is the offset of the last parameter (if any)
1538   // relative to the frame pointer.
1539   const int kDisplacement =
1540       StandardFrameConstants::kCallerSPOffset - kPointerSize;
1541   DCHECK(a1.is(ArgumentsAccessReadDescriptor::index()));
1542   DCHECK(a0.is(ArgumentsAccessReadDescriptor::parameter_count()));
1543
1544   // Check that the key is a smiGenerateReadElement.
1545   Label slow;
1546   __ JumpIfNotSmi(a1, &slow);
1547
1548   // Check if the calling frame is an arguments adaptor frame.
1549   Label adaptor;
1550   __ lw(a2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
1551   __ lw(a3, MemOperand(a2, StandardFrameConstants::kContextOffset));
1552   __ Branch(&adaptor,
1553             eq,
1554             a3,
1555             Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
1556
1557   // Check index (a1) against formal parameters count limit passed in
1558   // through register a0. Use unsigned comparison to get negative
1559   // check for free.
1560   __ Branch(&slow, hs, a1, Operand(a0));
1561
1562   // Read the argument from the stack and return it.
1563   __ subu(a3, a0, a1);
1564   __ sll(t3, a3, kPointerSizeLog2 - kSmiTagSize);
1565   __ Addu(a3, fp, Operand(t3));
1566   __ Ret(USE_DELAY_SLOT);
1567   __ lw(v0, MemOperand(a3, kDisplacement));
1568
1569   // Arguments adaptor case: Check index (a1) against actual arguments
1570   // limit found in the arguments adaptor frame. Use unsigned
1571   // comparison to get negative check for free.
1572   __ bind(&adaptor);
1573   __ lw(a0, MemOperand(a2, ArgumentsAdaptorFrameConstants::kLengthOffset));
1574   __ Branch(&slow, Ugreater_equal, a1, Operand(a0));
1575
1576   // Read the argument from the adaptor frame and return it.
1577   __ subu(a3, a0, a1);
1578   __ sll(t3, a3, kPointerSizeLog2 - kSmiTagSize);
1579   __ Addu(a3, a2, Operand(t3));
1580   __ Ret(USE_DELAY_SLOT);
1581   __ lw(v0, MemOperand(a3, kDisplacement));
1582
1583   // Slow-case: Handle non-smi or out-of-bounds access to arguments
1584   // by calling the runtime system.
1585   __ bind(&slow);
1586   __ push(a1);
1587   __ TailCallRuntime(Runtime::kArguments, 1, 1);
1588 }
1589
1590
1591 void ArgumentsAccessStub::GenerateNewSloppySlow(MacroAssembler* masm) {
1592   // sp[0] : number of parameters
1593   // sp[4] : receiver displacement
1594   // sp[8] : function
1595
1596   // Check if the calling frame is an arguments adaptor frame.
1597   Label runtime;
1598   __ lw(a3, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
1599   __ lw(a2, MemOperand(a3, StandardFrameConstants::kContextOffset));
1600   __ Branch(&runtime,
1601             ne,
1602             a2,
1603             Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
1604
1605   // Patch the arguments.length and the parameters pointer in the current frame.
1606   __ lw(a2, MemOperand(a3, ArgumentsAdaptorFrameConstants::kLengthOffset));
1607   __ sw(a2, MemOperand(sp, 0 * kPointerSize));
1608   __ sll(t3, a2, 1);
1609   __ Addu(a3, a3, Operand(t3));
1610   __ addiu(a3, a3, StandardFrameConstants::kCallerSPOffset);
1611   __ sw(a3, MemOperand(sp, 1 * kPointerSize));
1612
1613   __ bind(&runtime);
1614   __ TailCallRuntime(Runtime::kNewSloppyArguments, 3, 1);
1615 }
1616
1617
1618 void ArgumentsAccessStub::GenerateNewSloppyFast(MacroAssembler* masm) {
1619   // Stack layout:
1620   //  sp[0] : number of parameters (tagged)
1621   //  sp[4] : address of receiver argument
1622   //  sp[8] : function
1623   // Registers used over whole function:
1624   //  t2 : allocated object (tagged)
1625   //  t5 : mapped parameter count (tagged)
1626
1627   __ lw(a1, MemOperand(sp, 0 * kPointerSize));
1628   // a1 = parameter count (tagged)
1629
1630   // Check if the calling frame is an arguments adaptor frame.
1631   Label runtime;
1632   Label adaptor_frame, try_allocate;
1633   __ lw(a3, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
1634   __ lw(a2, MemOperand(a3, StandardFrameConstants::kContextOffset));
1635   __ Branch(&adaptor_frame,
1636             eq,
1637             a2,
1638             Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
1639
1640   // No adaptor, parameter count = argument count.
1641   __ mov(a2, a1);
1642   __ b(&try_allocate);
1643   __ nop();   // Branch delay slot nop.
1644
1645   // We have an adaptor frame. Patch the parameters pointer.
1646   __ bind(&adaptor_frame);
1647   __ lw(a2, MemOperand(a3, ArgumentsAdaptorFrameConstants::kLengthOffset));
1648   __ sll(t6, a2, 1);
1649   __ Addu(a3, a3, Operand(t6));
1650   __ Addu(a3, a3, Operand(StandardFrameConstants::kCallerSPOffset));
1651   __ sw(a3, MemOperand(sp, 1 * kPointerSize));
1652
1653   // a1 = parameter count (tagged)
1654   // a2 = argument count (tagged)
1655   // Compute the mapped parameter count = min(a1, a2) in a1.
1656   Label skip_min;
1657   __ Branch(&skip_min, lt, a1, Operand(a2));
1658   __ mov(a1, a2);
1659   __ bind(&skip_min);
1660
1661   __ bind(&try_allocate);
1662
1663   // Compute the sizes of backing store, parameter map, and arguments object.
1664   // 1. Parameter map, has 2 extra words containing context and backing store.
1665   const int kParameterMapHeaderSize =
1666       FixedArray::kHeaderSize + 2 * kPointerSize;
1667   // If there are no mapped parameters, we do not need the parameter_map.
1668   Label param_map_size;
1669   DCHECK_EQ(static_cast<Smi*>(0), Smi::FromInt(0));
1670   __ Branch(USE_DELAY_SLOT, &param_map_size, eq, a1, Operand(zero_reg));
1671   __ mov(t5, zero_reg);  // In delay slot: param map size = 0 when a1 == 0.
1672   __ sll(t5, a1, 1);
1673   __ addiu(t5, t5, kParameterMapHeaderSize);
1674   __ bind(&param_map_size);
1675
1676   // 2. Backing store.
1677   __ sll(t6, a2, 1);
1678   __ Addu(t5, t5, Operand(t6));
1679   __ Addu(t5, t5, Operand(FixedArray::kHeaderSize));
1680
1681   // 3. Arguments object.
1682   __ Addu(t5, t5, Operand(Heap::kSloppyArgumentsObjectSize));
1683
1684   // Do the allocation of all three objects in one go.
1685   __ Allocate(t5, v0, a3, t0, &runtime, TAG_OBJECT);
1686
1687   // v0 = address of new object(s) (tagged)
1688   // a2 = argument count (smi-tagged)
1689   // Get the arguments boilerplate from the current native context into t0.
1690   const int kNormalOffset =
1691       Context::SlotOffset(Context::SLOPPY_ARGUMENTS_MAP_INDEX);
1692   const int kAliasedOffset =
1693       Context::SlotOffset(Context::FAST_ALIASED_ARGUMENTS_MAP_INDEX);
1694
1695   __ lw(t0, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX)));
1696   __ lw(t0, FieldMemOperand(t0, GlobalObject::kNativeContextOffset));
1697   Label skip2_ne, skip2_eq;
1698   __ Branch(&skip2_ne, ne, a1, Operand(zero_reg));
1699   __ lw(t0, MemOperand(t0, kNormalOffset));
1700   __ bind(&skip2_ne);
1701
1702   __ Branch(&skip2_eq, eq, a1, Operand(zero_reg));
1703   __ lw(t0, MemOperand(t0, kAliasedOffset));
1704   __ bind(&skip2_eq);
1705
1706   // v0 = address of new object (tagged)
1707   // a1 = mapped parameter count (tagged)
1708   // a2 = argument count (smi-tagged)
1709   // t0 = address of arguments map (tagged)
1710   __ sw(t0, FieldMemOperand(v0, JSObject::kMapOffset));
1711   __ LoadRoot(a3, Heap::kEmptyFixedArrayRootIndex);
1712   __ sw(a3, FieldMemOperand(v0, JSObject::kPropertiesOffset));
1713   __ sw(a3, FieldMemOperand(v0, JSObject::kElementsOffset));
1714
1715   // Set up the callee in-object property.
1716   STATIC_ASSERT(Heap::kArgumentsCalleeIndex == 1);
1717   __ lw(a3, MemOperand(sp, 2 * kPointerSize));
1718   __ AssertNotSmi(a3);
1719   const int kCalleeOffset = JSObject::kHeaderSize +
1720       Heap::kArgumentsCalleeIndex * kPointerSize;
1721   __ sw(a3, FieldMemOperand(v0, kCalleeOffset));
1722
1723   // Use the length (smi tagged) and set that as an in-object property too.
1724   __ AssertSmi(a2);
1725   STATIC_ASSERT(Heap::kArgumentsLengthIndex == 0);
1726   const int kLengthOffset = JSObject::kHeaderSize +
1727       Heap::kArgumentsLengthIndex * kPointerSize;
1728   __ sw(a2, FieldMemOperand(v0, kLengthOffset));
1729
1730   // Set up the elements pointer in the allocated arguments object.
1731   // If we allocated a parameter map, t0 will point there, otherwise
1732   // it will point to the backing store.
1733   __ Addu(t0, v0, Operand(Heap::kSloppyArgumentsObjectSize));
1734   __ sw(t0, FieldMemOperand(v0, JSObject::kElementsOffset));
1735
1736   // v0 = address of new object (tagged)
1737   // a1 = mapped parameter count (tagged)
1738   // a2 = argument count (tagged)
1739   // t0 = address of parameter map or backing store (tagged)
1740   // Initialize parameter map. If there are no mapped arguments, we're done.
1741   Label skip_parameter_map;
1742   Label skip3;
1743   __ Branch(&skip3, ne, a1, Operand(Smi::FromInt(0)));
1744   // Move backing store address to a3, because it is
1745   // expected there when filling in the unmapped arguments.
1746   __ mov(a3, t0);
1747   __ bind(&skip3);
1748
1749   __ Branch(&skip_parameter_map, eq, a1, Operand(Smi::FromInt(0)));
1750
1751   __ LoadRoot(t2, Heap::kSloppyArgumentsElementsMapRootIndex);
1752   __ sw(t2, FieldMemOperand(t0, FixedArray::kMapOffset));
1753   __ Addu(t2, a1, Operand(Smi::FromInt(2)));
1754   __ sw(t2, FieldMemOperand(t0, FixedArray::kLengthOffset));
1755   __ sw(cp, FieldMemOperand(t0, FixedArray::kHeaderSize + 0 * kPointerSize));
1756   __ sll(t6, a1, 1);
1757   __ Addu(t2, t0, Operand(t6));
1758   __ Addu(t2, t2, Operand(kParameterMapHeaderSize));
1759   __ sw(t2, FieldMemOperand(t0, FixedArray::kHeaderSize + 1 * kPointerSize));
1760
1761   // Copy the parameter slots and the holes in the arguments.
1762   // We need to fill in mapped_parameter_count slots. They index the context,
1763   // where parameters are stored in reverse order, at
1764   //   MIN_CONTEXT_SLOTS .. MIN_CONTEXT_SLOTS+parameter_count-1
1765   // The mapped parameter thus need to get indices
1766   //   MIN_CONTEXT_SLOTS+parameter_count-1 ..
1767   //       MIN_CONTEXT_SLOTS+parameter_count-mapped_parameter_count
1768   // We loop from right to left.
1769   Label parameters_loop, parameters_test;
1770   __ mov(t2, a1);
1771   __ lw(t5, MemOperand(sp, 0 * kPointerSize));
1772   __ Addu(t5, t5, Operand(Smi::FromInt(Context::MIN_CONTEXT_SLOTS)));
1773   __ Subu(t5, t5, Operand(a1));
1774   __ LoadRoot(t3, Heap::kTheHoleValueRootIndex);
1775   __ sll(t6, t2, 1);
1776   __ Addu(a3, t0, Operand(t6));
1777   __ Addu(a3, a3, Operand(kParameterMapHeaderSize));
1778
1779   // t2 = loop variable (tagged)
1780   // a1 = mapping index (tagged)
1781   // a3 = address of backing store (tagged)
1782   // t0 = address of parameter map (tagged)
1783   // t1 = temporary scratch (a.o., for address calculation)
1784   // t3 = the hole value
1785   __ jmp(&parameters_test);
1786
1787   __ bind(&parameters_loop);
1788   __ Subu(t2, t2, Operand(Smi::FromInt(1)));
1789   __ sll(t1, t2, 1);
1790   __ Addu(t1, t1, Operand(kParameterMapHeaderSize - kHeapObjectTag));
1791   __ Addu(t6, t0, t1);
1792   __ sw(t5, MemOperand(t6));
1793   __ Subu(t1, t1, Operand(kParameterMapHeaderSize - FixedArray::kHeaderSize));
1794   __ Addu(t6, a3, t1);
1795   __ sw(t3, MemOperand(t6));
1796   __ Addu(t5, t5, Operand(Smi::FromInt(1)));
1797   __ bind(&parameters_test);
1798   __ Branch(&parameters_loop, ne, t2, Operand(Smi::FromInt(0)));
1799
1800   __ bind(&skip_parameter_map);
1801   // a2 = argument count (tagged)
1802   // a3 = address of backing store (tagged)
1803   // t1 = scratch
1804   // Copy arguments header and remaining slots (if there are any).
1805   __ LoadRoot(t1, Heap::kFixedArrayMapRootIndex);
1806   __ sw(t1, FieldMemOperand(a3, FixedArray::kMapOffset));
1807   __ sw(a2, FieldMemOperand(a3, FixedArray::kLengthOffset));
1808
1809   Label arguments_loop, arguments_test;
1810   __ mov(t5, a1);
1811   __ lw(t0, MemOperand(sp, 1 * kPointerSize));
1812   __ sll(t6, t5, 1);
1813   __ Subu(t0, t0, Operand(t6));
1814   __ jmp(&arguments_test);
1815
1816   __ bind(&arguments_loop);
1817   __ Subu(t0, t0, Operand(kPointerSize));
1818   __ lw(t2, MemOperand(t0, 0));
1819   __ sll(t6, t5, 1);
1820   __ Addu(t1, a3, Operand(t6));
1821   __ sw(t2, FieldMemOperand(t1, FixedArray::kHeaderSize));
1822   __ Addu(t5, t5, Operand(Smi::FromInt(1)));
1823
1824   __ bind(&arguments_test);
1825   __ Branch(&arguments_loop, lt, t5, Operand(a2));
1826
1827   // Return and remove the on-stack parameters.
1828   __ DropAndRet(3);
1829
1830   // Do the runtime call to allocate the arguments object.
1831   // a2 = argument count (tagged)
1832   __ bind(&runtime);
1833   __ sw(a2, MemOperand(sp, 0 * kPointerSize));  // Patch argument count.
1834   __ TailCallRuntime(Runtime::kNewSloppyArguments, 3, 1);
1835 }
1836
1837
1838 void LoadIndexedInterceptorStub::Generate(MacroAssembler* masm) {
1839   // Return address is in ra.
1840   Label slow;
1841
1842   Register receiver = LoadDescriptor::ReceiverRegister();
1843   Register key = LoadDescriptor::NameRegister();
1844
1845   // Check that the key is an array index, that is Uint32.
1846   __ And(t0, key, Operand(kSmiTagMask | kSmiSignMask));
1847   __ Branch(&slow, ne, t0, Operand(zero_reg));
1848
1849   // Everything is fine, call runtime.
1850   __ Push(receiver, key);  // Receiver, key.
1851
1852   // Perform tail call to the entry.
1853   __ TailCallRuntime(Runtime::kLoadElementWithInterceptor, 2, 1);
1854
1855   __ bind(&slow);
1856   PropertyAccessCompiler::TailCallBuiltin(
1857       masm, PropertyAccessCompiler::MissBuiltin(Code::KEYED_LOAD_IC));
1858 }
1859
1860
1861 void ArgumentsAccessStub::GenerateNewStrict(MacroAssembler* masm) {
1862   // sp[0] : number of parameters
1863   // sp[4] : receiver displacement
1864   // sp[8] : function
1865   // Check if the calling frame is an arguments adaptor frame.
1866   Label adaptor_frame, try_allocate, runtime;
1867   __ lw(a2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
1868   __ lw(a3, MemOperand(a2, StandardFrameConstants::kContextOffset));
1869   __ Branch(&adaptor_frame,
1870             eq,
1871             a3,
1872             Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
1873
1874   // Get the length from the frame.
1875   __ lw(a1, MemOperand(sp, 0));
1876   __ Branch(&try_allocate);
1877
1878   // Patch the arguments.length and the parameters pointer.
1879   __ bind(&adaptor_frame);
1880   __ lw(a1, MemOperand(a2, ArgumentsAdaptorFrameConstants::kLengthOffset));
1881   __ sw(a1, MemOperand(sp, 0));
1882   __ sll(at, a1, kPointerSizeLog2 - kSmiTagSize);
1883   __ Addu(a3, a2, Operand(at));
1884
1885   __ Addu(a3, a3, Operand(StandardFrameConstants::kCallerSPOffset));
1886   __ sw(a3, MemOperand(sp, 1 * kPointerSize));
1887
1888   // Try the new space allocation. Start out with computing the size
1889   // of the arguments object and the elements array in words.
1890   Label add_arguments_object;
1891   __ bind(&try_allocate);
1892   __ Branch(&add_arguments_object, eq, a1, Operand(zero_reg));
1893   __ srl(a1, a1, kSmiTagSize);
1894
1895   __ Addu(a1, a1, Operand(FixedArray::kHeaderSize / kPointerSize));
1896   __ bind(&add_arguments_object);
1897   __ Addu(a1, a1, Operand(Heap::kStrictArgumentsObjectSize / kPointerSize));
1898
1899   // Do the allocation of both objects in one go.
1900   __ Allocate(a1, v0, a2, a3, &runtime,
1901               static_cast<AllocationFlags>(TAG_OBJECT | SIZE_IN_WORDS));
1902
1903   // Get the arguments boilerplate from the current native context.
1904   __ lw(t0, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX)));
1905   __ lw(t0, FieldMemOperand(t0, GlobalObject::kNativeContextOffset));
1906   __ lw(t0, MemOperand(
1907                 t0, Context::SlotOffset(Context::STRICT_ARGUMENTS_MAP_INDEX)));
1908
1909   __ sw(t0, FieldMemOperand(v0, JSObject::kMapOffset));
1910   __ LoadRoot(a3, Heap::kEmptyFixedArrayRootIndex);
1911   __ sw(a3, FieldMemOperand(v0, JSObject::kPropertiesOffset));
1912   __ sw(a3, FieldMemOperand(v0, JSObject::kElementsOffset));
1913
1914   // Get the length (smi tagged) and set that as an in-object property too.
1915   STATIC_ASSERT(Heap::kArgumentsLengthIndex == 0);
1916   __ lw(a1, MemOperand(sp, 0 * kPointerSize));
1917   __ AssertSmi(a1);
1918   __ sw(a1, FieldMemOperand(v0, JSObject::kHeaderSize +
1919       Heap::kArgumentsLengthIndex * kPointerSize));
1920
1921   Label done;
1922   __ Branch(&done, eq, a1, Operand(zero_reg));
1923
1924   // Get the parameters pointer from the stack.
1925   __ lw(a2, MemOperand(sp, 1 * kPointerSize));
1926
1927   // Set up the elements pointer in the allocated arguments object and
1928   // initialize the header in the elements fixed array.
1929   __ Addu(t0, v0, Operand(Heap::kStrictArgumentsObjectSize));
1930   __ sw(t0, FieldMemOperand(v0, JSObject::kElementsOffset));
1931   __ LoadRoot(a3, Heap::kFixedArrayMapRootIndex);
1932   __ sw(a3, FieldMemOperand(t0, FixedArray::kMapOffset));
1933   __ sw(a1, FieldMemOperand(t0, FixedArray::kLengthOffset));
1934   // Untag the length for the loop.
1935   __ srl(a1, a1, kSmiTagSize);
1936
1937   // Copy the fixed array slots.
1938   Label loop;
1939   // Set up t0 to point to the first array slot.
1940   __ Addu(t0, t0, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
1941   __ bind(&loop);
1942   // Pre-decrement a2 with kPointerSize on each iteration.
1943   // Pre-decrement in order to skip receiver.
1944   __ Addu(a2, a2, Operand(-kPointerSize));
1945   __ lw(a3, MemOperand(a2));
1946   // Post-increment t0 with kPointerSize on each iteration.
1947   __ sw(a3, MemOperand(t0));
1948   __ Addu(t0, t0, Operand(kPointerSize));
1949   __ Subu(a1, a1, Operand(1));
1950   __ Branch(&loop, ne, a1, Operand(zero_reg));
1951
1952   // Return and remove the on-stack parameters.
1953   __ bind(&done);
1954   __ DropAndRet(3);
1955
1956   // Do the runtime call to allocate the arguments object.
1957   __ bind(&runtime);
1958   __ TailCallRuntime(Runtime::kNewStrictArguments, 3, 1);
1959 }
1960
1961
1962 void RegExpExecStub::Generate(MacroAssembler* masm) {
1963   // Just jump directly to runtime if native RegExp is not selected at compile
1964   // time or if regexp entry in generated code is turned off runtime switch or
1965   // at compilation.
1966 #ifdef V8_INTERPRETED_REGEXP
1967   __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
1968 #else  // V8_INTERPRETED_REGEXP
1969
1970   // Stack frame on entry.
1971   //  sp[0]: last_match_info (expected JSArray)
1972   //  sp[4]: previous index
1973   //  sp[8]: subject string
1974   //  sp[12]: JSRegExp object
1975
1976   const int kLastMatchInfoOffset = 0 * kPointerSize;
1977   const int kPreviousIndexOffset = 1 * kPointerSize;
1978   const int kSubjectOffset = 2 * kPointerSize;
1979   const int kJSRegExpOffset = 3 * kPointerSize;
1980
1981   Label runtime;
1982   // Allocation of registers for this function. These are in callee save
1983   // registers and will be preserved by the call to the native RegExp code, as
1984   // this code is called using the normal C calling convention. When calling
1985   // directly from generated code the native RegExp code will not do a GC and
1986   // therefore the content of these registers are safe to use after the call.
1987   // MIPS - using s0..s2, since we are not using CEntry Stub.
1988   Register subject = s0;
1989   Register regexp_data = s1;
1990   Register last_match_info_elements = s2;
1991
1992   // Ensure that a RegExp stack is allocated.
1993   ExternalReference address_of_regexp_stack_memory_address =
1994       ExternalReference::address_of_regexp_stack_memory_address(
1995           isolate());
1996   ExternalReference address_of_regexp_stack_memory_size =
1997       ExternalReference::address_of_regexp_stack_memory_size(isolate());
1998   __ li(a0, Operand(address_of_regexp_stack_memory_size));
1999   __ lw(a0, MemOperand(a0, 0));
2000   __ Branch(&runtime, eq, a0, Operand(zero_reg));
2001
2002   // Check that the first argument is a JSRegExp object.
2003   __ lw(a0, MemOperand(sp, kJSRegExpOffset));
2004   STATIC_ASSERT(kSmiTag == 0);
2005   __ JumpIfSmi(a0, &runtime);
2006   __ GetObjectType(a0, a1, a1);
2007   __ Branch(&runtime, ne, a1, Operand(JS_REGEXP_TYPE));
2008
2009   // Check that the RegExp has been compiled (data contains a fixed array).
2010   __ lw(regexp_data, FieldMemOperand(a0, JSRegExp::kDataOffset));
2011   if (FLAG_debug_code) {
2012     __ SmiTst(regexp_data, t0);
2013     __ Check(nz,
2014              kUnexpectedTypeForRegExpDataFixedArrayExpected,
2015              t0,
2016              Operand(zero_reg));
2017     __ GetObjectType(regexp_data, a0, a0);
2018     __ Check(eq,
2019              kUnexpectedTypeForRegExpDataFixedArrayExpected,
2020              a0,
2021              Operand(FIXED_ARRAY_TYPE));
2022   }
2023
2024   // regexp_data: RegExp data (FixedArray)
2025   // Check the type of the RegExp. Only continue if type is JSRegExp::IRREGEXP.
2026   __ lw(a0, FieldMemOperand(regexp_data, JSRegExp::kDataTagOffset));
2027   __ Branch(&runtime, ne, a0, Operand(Smi::FromInt(JSRegExp::IRREGEXP)));
2028
2029   // regexp_data: RegExp data (FixedArray)
2030   // Check that the number of captures fit in the static offsets vector buffer.
2031   __ lw(a2,
2032          FieldMemOperand(regexp_data, JSRegExp::kIrregexpCaptureCountOffset));
2033   // Check (number_of_captures + 1) * 2 <= offsets vector size
2034   // Or          number_of_captures * 2 <= offsets vector size - 2
2035   // Multiplying by 2 comes for free since a2 is smi-tagged.
2036   STATIC_ASSERT(kSmiTag == 0);
2037   STATIC_ASSERT(kSmiTagSize + kSmiShiftSize == 1);
2038   STATIC_ASSERT(Isolate::kJSRegexpStaticOffsetsVectorSize >= 2);
2039   __ Branch(
2040       &runtime, hi, a2, Operand(Isolate::kJSRegexpStaticOffsetsVectorSize - 2));
2041
2042   // Reset offset for possibly sliced string.
2043   __ mov(t0, zero_reg);
2044   __ lw(subject, MemOperand(sp, kSubjectOffset));
2045   __ JumpIfSmi(subject, &runtime);
2046   __ mov(a3, subject);  // Make a copy of the original subject string.
2047   __ lw(a0, FieldMemOperand(subject, HeapObject::kMapOffset));
2048   __ lbu(a0, FieldMemOperand(a0, Map::kInstanceTypeOffset));
2049   // subject: subject string
2050   // a3: subject string
2051   // a0: subject string instance type
2052   // regexp_data: RegExp data (FixedArray)
2053   // Handle subject string according to its encoding and representation:
2054   // (1) Sequential string?  If yes, go to (5).
2055   // (2) Anything but sequential or cons?  If yes, go to (6).
2056   // (3) Cons string.  If the string is flat, replace subject with first string.
2057   //     Otherwise bailout.
2058   // (4) Is subject external?  If yes, go to (7).
2059   // (5) Sequential string.  Load regexp code according to encoding.
2060   // (E) Carry on.
2061   /// [...]
2062
2063   // Deferred code at the end of the stub:
2064   // (6) Not a long external string?  If yes, go to (8).
2065   // (7) External string.  Make it, offset-wise, look like a sequential string.
2066   //     Go to (5).
2067   // (8) Short external string or not a string?  If yes, bail out to runtime.
2068   // (9) Sliced string.  Replace subject with parent.  Go to (4).
2069
2070   Label seq_string /* 5 */, external_string /* 7 */,
2071         check_underlying /* 4 */, not_seq_nor_cons /* 6 */,
2072         not_long_external /* 8 */;
2073
2074   // (1) Sequential string?  If yes, go to (5).
2075   __ And(a1,
2076          a0,
2077          Operand(kIsNotStringMask |
2078                  kStringRepresentationMask |
2079                  kShortExternalStringMask));
2080   STATIC_ASSERT((kStringTag | kSeqStringTag) == 0);
2081   __ Branch(&seq_string, eq, a1, Operand(zero_reg));  // Go to (5).
2082
2083   // (2) Anything but sequential or cons?  If yes, go to (6).
2084   STATIC_ASSERT(kConsStringTag < kExternalStringTag);
2085   STATIC_ASSERT(kSlicedStringTag > kExternalStringTag);
2086   STATIC_ASSERT(kIsNotStringMask > kExternalStringTag);
2087   STATIC_ASSERT(kShortExternalStringTag > kExternalStringTag);
2088   // Go to (6).
2089   __ Branch(&not_seq_nor_cons, ge, a1, Operand(kExternalStringTag));
2090
2091   // (3) Cons string.  Check that it's flat.
2092   // Replace subject with first string and reload instance type.
2093   __ lw(a0, FieldMemOperand(subject, ConsString::kSecondOffset));
2094   __ LoadRoot(a1, Heap::kempty_stringRootIndex);
2095   __ Branch(&runtime, ne, a0, Operand(a1));
2096   __ lw(subject, FieldMemOperand(subject, ConsString::kFirstOffset));
2097
2098   // (4) Is subject external?  If yes, go to (7).
2099   __ bind(&check_underlying);
2100   __ lw(a0, FieldMemOperand(subject, HeapObject::kMapOffset));
2101   __ lbu(a0, FieldMemOperand(a0, Map::kInstanceTypeOffset));
2102   STATIC_ASSERT(kSeqStringTag == 0);
2103   __ And(at, a0, Operand(kStringRepresentationMask));
2104   // The underlying external string is never a short external string.
2105   STATIC_ASSERT(ExternalString::kMaxShortLength < ConsString::kMinLength);
2106   STATIC_ASSERT(ExternalString::kMaxShortLength < SlicedString::kMinLength);
2107   __ Branch(&external_string, ne, at, Operand(zero_reg));  // Go to (7).
2108
2109   // (5) Sequential string.  Load regexp code according to encoding.
2110   __ bind(&seq_string);
2111   // subject: sequential subject string (or look-alike, external string)
2112   // a3: original subject string
2113   // Load previous index and check range before a3 is overwritten.  We have to
2114   // use a3 instead of subject here because subject might have been only made
2115   // to look like a sequential string when it actually is an external string.
2116   __ lw(a1, MemOperand(sp, kPreviousIndexOffset));
2117   __ JumpIfNotSmi(a1, &runtime);
2118   __ lw(a3, FieldMemOperand(a3, String::kLengthOffset));
2119   __ Branch(&runtime, ls, a3, Operand(a1));
2120   __ sra(a1, a1, kSmiTagSize);  // Untag the Smi.
2121
2122   STATIC_ASSERT(kStringEncodingMask == 4);
2123   STATIC_ASSERT(kOneByteStringTag == 4);
2124   STATIC_ASSERT(kTwoByteStringTag == 0);
2125   __ And(a0, a0, Operand(kStringEncodingMask));  // Non-zero for one-byte.
2126   __ lw(t9, FieldMemOperand(regexp_data, JSRegExp::kDataOneByteCodeOffset));
2127   __ sra(a3, a0, 2);  // a3 is 1 for ASCII, 0 for UC16 (used below).
2128   __ lw(t1, FieldMemOperand(regexp_data, JSRegExp::kDataUC16CodeOffset));
2129   __ Movz(t9, t1, a0);  // If UC16 (a0 is 0), replace t9 w/kDataUC16CodeOffset.
2130
2131   // (E) Carry on.  String handling is done.
2132   // t9: irregexp code
2133   // Check that the irregexp code has been generated for the actual string
2134   // encoding. If it has, the field contains a code object otherwise it contains
2135   // a smi (code flushing support).
2136   __ JumpIfSmi(t9, &runtime);
2137
2138   // a1: previous index
2139   // a3: encoding of subject string (1 if one_byte, 0 if two_byte);
2140   // t9: code
2141   // subject: Subject string
2142   // regexp_data: RegExp data (FixedArray)
2143   // All checks done. Now push arguments for native regexp code.
2144   __ IncrementCounter(isolate()->counters()->regexp_entry_native(),
2145                       1, a0, a2);
2146
2147   // Isolates: note we add an additional parameter here (isolate pointer).
2148   const int kRegExpExecuteArguments = 9;
2149   const int kParameterRegisters = 4;
2150   __ EnterExitFrame(false, kRegExpExecuteArguments - kParameterRegisters);
2151
2152   // Stack pointer now points to cell where return address is to be written.
2153   // Arguments are before that on the stack or in registers, meaning we
2154   // treat the return address as argument 5. Thus every argument after that
2155   // needs to be shifted back by 1. Since DirectCEntryStub will handle
2156   // allocating space for the c argument slots, we don't need to calculate
2157   // that into the argument positions on the stack. This is how the stack will
2158   // look (sp meaning the value of sp at this moment):
2159   // [sp + 5] - Argument 9
2160   // [sp + 4] - Argument 8
2161   // [sp + 3] - Argument 7
2162   // [sp + 2] - Argument 6
2163   // [sp + 1] - Argument 5
2164   // [sp + 0] - saved ra
2165
2166   // Argument 9: Pass current isolate address.
2167   // CFunctionArgumentOperand handles MIPS stack argument slots.
2168   __ li(a0, Operand(ExternalReference::isolate_address(isolate())));
2169   __ sw(a0, MemOperand(sp, 5 * kPointerSize));
2170
2171   // Argument 8: Indicate that this is a direct call from JavaScript.
2172   __ li(a0, Operand(1));
2173   __ sw(a0, MemOperand(sp, 4 * kPointerSize));
2174
2175   // Argument 7: Start (high end) of backtracking stack memory area.
2176   __ li(a0, Operand(address_of_regexp_stack_memory_address));
2177   __ lw(a0, MemOperand(a0, 0));
2178   __ li(a2, Operand(address_of_regexp_stack_memory_size));
2179   __ lw(a2, MemOperand(a2, 0));
2180   __ addu(a0, a0, a2);
2181   __ sw(a0, MemOperand(sp, 3 * kPointerSize));
2182
2183   // Argument 6: Set the number of capture registers to zero to force global
2184   // regexps to behave as non-global.  This does not affect non-global regexps.
2185   __ mov(a0, zero_reg);
2186   __ sw(a0, MemOperand(sp, 2 * kPointerSize));
2187
2188   // Argument 5: static offsets vector buffer.
2189   __ li(a0, Operand(
2190         ExternalReference::address_of_static_offsets_vector(isolate())));
2191   __ sw(a0, MemOperand(sp, 1 * kPointerSize));
2192
2193   // For arguments 4 and 3 get string length, calculate start of string data
2194   // calculate the shift of the index (0 for one-byte and 1 for two-byte).
2195   __ Addu(t2, subject, Operand(SeqString::kHeaderSize - kHeapObjectTag));
2196   __ Xor(a3, a3, Operand(1));  // 1 for 2-byte str, 0 for 1-byte.
2197   // Load the length from the original subject string from the previous stack
2198   // frame. Therefore we have to use fp, which points exactly to two pointer
2199   // sizes below the previous sp. (Because creating a new stack frame pushes
2200   // the previous fp onto the stack and moves up sp by 2 * kPointerSize.)
2201   __ lw(subject, MemOperand(fp, kSubjectOffset + 2 * kPointerSize));
2202   // If slice offset is not 0, load the length from the original sliced string.
2203   // Argument 4, a3: End of string data
2204   // Argument 3, a2: Start of string data
2205   // Prepare start and end index of the input.
2206   __ sllv(t1, t0, a3);
2207   __ addu(t0, t2, t1);
2208   __ sllv(t1, a1, a3);
2209   __ addu(a2, t0, t1);
2210
2211   __ lw(t2, FieldMemOperand(subject, String::kLengthOffset));
2212   __ sra(t2, t2, kSmiTagSize);
2213   __ sllv(t1, t2, a3);
2214   __ addu(a3, t0, t1);
2215   // Argument 2 (a1): Previous index.
2216   // Already there
2217
2218   // Argument 1 (a0): Subject string.
2219   __ mov(a0, subject);
2220
2221   // Locate the code entry and call it.
2222   __ Addu(t9, t9, Operand(Code::kHeaderSize - kHeapObjectTag));
2223   DirectCEntryStub stub(isolate());
2224   stub.GenerateCall(masm, t9);
2225
2226   __ LeaveExitFrame(false, no_reg, true);
2227
2228   // v0: result
2229   // subject: subject string (callee saved)
2230   // regexp_data: RegExp data (callee saved)
2231   // last_match_info_elements: Last match info elements (callee saved)
2232   // Check the result.
2233   Label success;
2234   __ Branch(&success, eq, v0, Operand(1));
2235   // We expect exactly one result since we force the called regexp to behave
2236   // as non-global.
2237   Label failure;
2238   __ Branch(&failure, eq, v0, Operand(NativeRegExpMacroAssembler::FAILURE));
2239   // If not exception it can only be retry. Handle that in the runtime system.
2240   __ Branch(&runtime, ne, v0, Operand(NativeRegExpMacroAssembler::EXCEPTION));
2241   // Result must now be exception. If there is no pending exception already a
2242   // stack overflow (on the backtrack stack) was detected in RegExp code but
2243   // haven't created the exception yet. Handle that in the runtime system.
2244   // TODO(592): Rerunning the RegExp to get the stack overflow exception.
2245   __ li(a1, Operand(isolate()->factory()->the_hole_value()));
2246   __ li(a2, Operand(ExternalReference(Isolate::kPendingExceptionAddress,
2247                                       isolate())));
2248   __ lw(v0, MemOperand(a2, 0));
2249   __ Branch(&runtime, eq, v0, Operand(a1));
2250
2251   // For exception, throw the exception again.
2252   __ TailCallRuntime(Runtime::kRegExpExecReThrow, 4, 1);
2253
2254   __ bind(&failure);
2255   // For failure and exception return null.
2256   __ li(v0, Operand(isolate()->factory()->null_value()));
2257   __ DropAndRet(4);
2258
2259   // Process the result from the native regexp code.
2260   __ bind(&success);
2261   __ lw(a1,
2262          FieldMemOperand(regexp_data, JSRegExp::kIrregexpCaptureCountOffset));
2263   // Calculate number of capture registers (number_of_captures + 1) * 2.
2264   // Multiplying by 2 comes for free since r1 is smi-tagged.
2265   STATIC_ASSERT(kSmiTag == 0);
2266   STATIC_ASSERT(kSmiTagSize + kSmiShiftSize == 1);
2267   __ Addu(a1, a1, Operand(2));  // a1 was a smi.
2268
2269   __ lw(a0, MemOperand(sp, kLastMatchInfoOffset));
2270   __ JumpIfSmi(a0, &runtime);
2271   __ GetObjectType(a0, a2, a2);
2272   __ Branch(&runtime, ne, a2, Operand(JS_ARRAY_TYPE));
2273   // Check that the JSArray is in fast case.
2274   __ lw(last_match_info_elements,
2275         FieldMemOperand(a0, JSArray::kElementsOffset));
2276   __ lw(a0, FieldMemOperand(last_match_info_elements, HeapObject::kMapOffset));
2277   __ LoadRoot(at, Heap::kFixedArrayMapRootIndex);
2278   __ Branch(&runtime, ne, a0, Operand(at));
2279   // Check that the last match info has space for the capture registers and the
2280   // additional information.
2281   __ lw(a0,
2282         FieldMemOperand(last_match_info_elements, FixedArray::kLengthOffset));
2283   __ Addu(a2, a1, Operand(RegExpImpl::kLastMatchOverhead));
2284   __ sra(at, a0, kSmiTagSize);
2285   __ Branch(&runtime, gt, a2, Operand(at));
2286
2287   // a1: number of capture registers
2288   // subject: subject string
2289   // Store the capture count.
2290   __ sll(a2, a1, kSmiTagSize + kSmiShiftSize);  // To smi.
2291   __ sw(a2, FieldMemOperand(last_match_info_elements,
2292                              RegExpImpl::kLastCaptureCountOffset));
2293   // Store last subject and last input.
2294   __ sw(subject,
2295          FieldMemOperand(last_match_info_elements,
2296                          RegExpImpl::kLastSubjectOffset));
2297   __ mov(a2, subject);
2298   __ RecordWriteField(last_match_info_elements,
2299                       RegExpImpl::kLastSubjectOffset,
2300                       subject,
2301                       t3,
2302                       kRAHasNotBeenSaved,
2303                       kDontSaveFPRegs);
2304   __ mov(subject, a2);
2305   __ sw(subject,
2306          FieldMemOperand(last_match_info_elements,
2307                          RegExpImpl::kLastInputOffset));
2308   __ RecordWriteField(last_match_info_elements,
2309                       RegExpImpl::kLastInputOffset,
2310                       subject,
2311                       t3,
2312                       kRAHasNotBeenSaved,
2313                       kDontSaveFPRegs);
2314
2315   // Get the static offsets vector filled by the native regexp code.
2316   ExternalReference address_of_static_offsets_vector =
2317       ExternalReference::address_of_static_offsets_vector(isolate());
2318   __ li(a2, Operand(address_of_static_offsets_vector));
2319
2320   // a1: number of capture registers
2321   // a2: offsets vector
2322   Label next_capture, done;
2323   // Capture register counter starts from number of capture registers and
2324   // counts down until wrapping after zero.
2325   __ Addu(a0,
2326          last_match_info_elements,
2327          Operand(RegExpImpl::kFirstCaptureOffset - kHeapObjectTag));
2328   __ bind(&next_capture);
2329   __ Subu(a1, a1, Operand(1));
2330   __ Branch(&done, lt, a1, Operand(zero_reg));
2331   // Read the value from the static offsets vector buffer.
2332   __ lw(a3, MemOperand(a2, 0));
2333   __ addiu(a2, a2, kPointerSize);
2334   // Store the smi value in the last match info.
2335   __ sll(a3, a3, kSmiTagSize);  // Convert to Smi.
2336   __ sw(a3, MemOperand(a0, 0));
2337   __ Branch(&next_capture, USE_DELAY_SLOT);
2338   __ addiu(a0, a0, kPointerSize);  // In branch delay slot.
2339
2340   __ bind(&done);
2341
2342   // Return last match info.
2343   __ lw(v0, MemOperand(sp, kLastMatchInfoOffset));
2344   __ DropAndRet(4);
2345
2346   // Do the runtime call to execute the regexp.
2347   __ bind(&runtime);
2348   __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
2349
2350   // Deferred code for string handling.
2351   // (6) Not a long external string?  If yes, go to (8).
2352   __ bind(&not_seq_nor_cons);
2353   // Go to (8).
2354   __ Branch(&not_long_external, gt, a1, Operand(kExternalStringTag));
2355
2356   // (7) External string.  Make it, offset-wise, look like a sequential string.
2357   __ bind(&external_string);
2358   __ lw(a0, FieldMemOperand(subject, HeapObject::kMapOffset));
2359   __ lbu(a0, FieldMemOperand(a0, Map::kInstanceTypeOffset));
2360   if (FLAG_debug_code) {
2361     // Assert that we do not have a cons or slice (indirect strings) here.
2362     // Sequential strings have already been ruled out.
2363     __ And(at, a0, Operand(kIsIndirectStringMask));
2364     __ Assert(eq,
2365               kExternalStringExpectedButNotFound,
2366               at,
2367               Operand(zero_reg));
2368   }
2369   __ lw(subject,
2370         FieldMemOperand(subject, ExternalString::kResourceDataOffset));
2371   // Move the pointer so that offset-wise, it looks like a sequential string.
2372   STATIC_ASSERT(SeqTwoByteString::kHeaderSize == SeqOneByteString::kHeaderSize);
2373   __ Subu(subject,
2374           subject,
2375           SeqTwoByteString::kHeaderSize - kHeapObjectTag);
2376   __ jmp(&seq_string);    // Go to (5).
2377
2378   // (8) Short external string or not a string?  If yes, bail out to runtime.
2379   __ bind(&not_long_external);
2380   STATIC_ASSERT(kNotStringTag != 0 && kShortExternalStringTag !=0);
2381   __ And(at, a1, Operand(kIsNotStringMask | kShortExternalStringMask));
2382   __ Branch(&runtime, ne, at, Operand(zero_reg));
2383
2384   // (9) Sliced string.  Replace subject with parent.  Go to (4).
2385   // Load offset into t0 and replace subject string with parent.
2386   __ lw(t0, FieldMemOperand(subject, SlicedString::kOffsetOffset));
2387   __ sra(t0, t0, kSmiTagSize);
2388   __ lw(subject, FieldMemOperand(subject, SlicedString::kParentOffset));
2389   __ jmp(&check_underlying);  // Go to (4).
2390 #endif  // V8_INTERPRETED_REGEXP
2391 }
2392
2393
2394 static void CallStubInRecordCallTarget(MacroAssembler* masm, CodeStub* stub,
2395                                        bool is_super) {
2396   // a0 : number of arguments to the construct function
2397   // a2 : feedback vector
2398   // a3 : slot in feedback vector (Smi)
2399   // a1 : the function to call
2400   // t0 : original constructor (for IsSuperConstructorCall)
2401   FrameScope scope(masm, StackFrame::INTERNAL);
2402   const RegList kSavedRegs = 1 << 4 |                   // a0
2403                              1 << 5 |                   // a1
2404                              1 << 6 |                   // a2
2405                              1 << 7 |                   // a3
2406                              BoolToInt(is_super) << 8;  // t0
2407
2408   // Number-of-arguments register must be smi-tagged to call out.
2409   __ SmiTag(a0);
2410   __ MultiPush(kSavedRegs);
2411
2412   __ CallStub(stub);
2413
2414   __ MultiPop(kSavedRegs);
2415   __ SmiUntag(a0);
2416 }
2417
2418
2419 static void GenerateRecordCallTarget(MacroAssembler* masm, bool is_super) {
2420   // Cache the called function in a feedback vector slot.  Cache states
2421   // are uninitialized, monomorphic (indicated by a JSFunction), and
2422   // megamorphic.
2423   // a0 : number of arguments to the construct function
2424   // a1 : the function to call
2425   // a2 : feedback vector
2426   // a3 : slot in feedback vector (Smi)
2427   // t0 : original constructor (for IsSuperConstructorCall)
2428   Label initialize, done, miss, megamorphic, not_array_function;
2429
2430   DCHECK_EQ(*TypeFeedbackVector::MegamorphicSentinel(masm->isolate()),
2431             masm->isolate()->heap()->megamorphic_symbol());
2432   DCHECK_EQ(*TypeFeedbackVector::UninitializedSentinel(masm->isolate()),
2433             masm->isolate()->heap()->uninitialized_symbol());
2434
2435   // Load the cache state into t2.
2436   __ sll(t2, a3, kPointerSizeLog2 - kSmiTagSize);
2437   __ Addu(t2, a2, Operand(t2));
2438   __ lw(t2, FieldMemOperand(t2, FixedArray::kHeaderSize));
2439
2440   // A monomorphic cache hit or an already megamorphic state: invoke the
2441   // function without changing the state.
2442   // We don't know if t2 is a WeakCell or a Symbol, but it's harmless to read at
2443   // this position in a symbol (see static asserts in type-feedback-vector.h).
2444   Label check_allocation_site;
2445   Register feedback_map = t1;
2446   Register weak_value = t4;
2447   __ lw(weak_value, FieldMemOperand(t2, WeakCell::kValueOffset));
2448   __ Branch(&done, eq, a1, Operand(weak_value));
2449   __ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex);
2450   __ Branch(&done, eq, t2, Operand(at));
2451   __ lw(feedback_map, FieldMemOperand(t2, HeapObject::kMapOffset));
2452   __ LoadRoot(at, Heap::kWeakCellMapRootIndex);
2453   __ Branch(FLAG_pretenuring_call_new ? &miss : &check_allocation_site, ne,
2454             feedback_map, Operand(at));
2455
2456   // If the weak cell is cleared, we have a new chance to become monomorphic.
2457   __ JumpIfSmi(weak_value, &initialize);
2458   __ jmp(&megamorphic);
2459
2460   if (!FLAG_pretenuring_call_new) {
2461     __ bind(&check_allocation_site);
2462     // If we came here, we need to see if we are the array function.
2463     // If we didn't have a matching function, and we didn't find the megamorph
2464     // sentinel, then we have in the slot either some other function or an
2465     // AllocationSite.
2466     __ LoadRoot(at, Heap::kAllocationSiteMapRootIndex);
2467     __ Branch(&miss, ne, feedback_map, Operand(at));
2468
2469     // Make sure the function is the Array() function
2470     __ LoadGlobalFunction(Context::ARRAY_FUNCTION_INDEX, t2);
2471     __ Branch(&megamorphic, ne, a1, Operand(t2));
2472     __ jmp(&done);
2473   }
2474
2475   __ bind(&miss);
2476
2477   // A monomorphic miss (i.e, here the cache is not uninitialized) goes
2478   // megamorphic.
2479   __ LoadRoot(at, Heap::kuninitialized_symbolRootIndex);
2480   __ Branch(&initialize, eq, t2, Operand(at));
2481   // MegamorphicSentinel is an immortal immovable object (undefined) so no
2482   // write-barrier is needed.
2483   __ bind(&megamorphic);
2484   __ sll(t2, a3, kPointerSizeLog2 - kSmiTagSize);
2485   __ Addu(t2, a2, Operand(t2));
2486   __ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex);
2487   __ sw(at, FieldMemOperand(t2, FixedArray::kHeaderSize));
2488   __ jmp(&done);
2489
2490   // An uninitialized cache is patched with the function.
2491   __ bind(&initialize);
2492   if (!FLAG_pretenuring_call_new) {
2493     // Make sure the function is the Array() function.
2494     __ LoadGlobalFunction(Context::ARRAY_FUNCTION_INDEX, t2);
2495     __ Branch(&not_array_function, ne, a1, Operand(t2));
2496
2497     // The target function is the Array constructor,
2498     // Create an AllocationSite if we don't already have it, store it in the
2499     // slot.
2500     CreateAllocationSiteStub create_stub(masm->isolate());
2501     CallStubInRecordCallTarget(masm, &create_stub, is_super);
2502     __ Branch(&done);
2503
2504     __ bind(&not_array_function);
2505   }
2506
2507   CreateWeakCellStub create_stub(masm->isolate());
2508   CallStubInRecordCallTarget(masm, &create_stub, is_super);
2509   __ bind(&done);
2510 }
2511
2512
2513 static void EmitContinueIfStrictOrNative(MacroAssembler* masm, Label* cont) {
2514   __ lw(a3, FieldMemOperand(a1, JSFunction::kSharedFunctionInfoOffset));
2515   __ lw(t0, FieldMemOperand(a3, SharedFunctionInfo::kCompilerHintsOffset));
2516
2517   // Do not transform the receiver for strict mode functions.
2518   int32_t strict_mode_function_mask =
2519       1 <<  (SharedFunctionInfo::kStrictModeFunction + kSmiTagSize);
2520   // Do not transform the receiver for native (Compilerhints already in a3).
2521   int32_t native_mask = 1 << (SharedFunctionInfo::kNative + kSmiTagSize);
2522   __ And(at, t0, Operand(strict_mode_function_mask | native_mask));
2523   __ Branch(cont, ne, at, Operand(zero_reg));
2524 }
2525
2526
2527 static void EmitSlowCase(MacroAssembler* masm, int argc) {
2528   __ li(a0, Operand(argc));
2529   __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET);
2530 }
2531
2532
2533 static void EmitWrapCase(MacroAssembler* masm, int argc, Label* cont) {
2534   // Wrap the receiver and patch it back onto the stack.
2535   { FrameScope frame_scope(masm, StackFrame::INTERNAL);
2536     __ Push(a1);
2537     __ mov(a0, a3);
2538     ToObjectStub stub(masm->isolate());
2539     __ CallStub(&stub);
2540     __ pop(a1);
2541   }
2542   __ Branch(USE_DELAY_SLOT, cont);
2543   __ sw(v0, MemOperand(sp, argc * kPointerSize));
2544 }
2545
2546
2547 static void CallFunctionNoFeedback(MacroAssembler* masm,
2548                                    int argc, bool needs_checks,
2549                                    bool call_as_method) {
2550   // a1 : the function to call
2551   Label slow, wrap, cont;
2552
2553   if (needs_checks) {
2554     // Check that the function is really a JavaScript function.
2555     // a1: pushed function (to be verified)
2556     __ JumpIfSmi(a1, &slow);
2557
2558     // Goto slow case if we do not have a function.
2559     __ GetObjectType(a1, t0, t0);
2560     __ Branch(&slow, ne, t0, Operand(JS_FUNCTION_TYPE));
2561   }
2562
2563   // Fast-case: Invoke the function now.
2564   // a1: pushed function
2565   ParameterCount actual(argc);
2566
2567   if (call_as_method) {
2568     if (needs_checks) {
2569       EmitContinueIfStrictOrNative(masm, &cont);
2570     }
2571
2572     // Compute the receiver in sloppy mode.
2573     __ lw(a3, MemOperand(sp, argc * kPointerSize));
2574
2575     if (needs_checks) {
2576       __ JumpIfSmi(a3, &wrap);
2577       __ GetObjectType(a3, t0, t0);
2578       __ Branch(&wrap, lt, t0, Operand(FIRST_SPEC_OBJECT_TYPE));
2579     } else {
2580       __ jmp(&wrap);
2581     }
2582
2583     __ bind(&cont);
2584   }
2585
2586   __ InvokeFunction(a1, actual, JUMP_FUNCTION, NullCallWrapper());
2587
2588   if (needs_checks) {
2589     // Slow-case: Non-function called.
2590     __ bind(&slow);
2591     EmitSlowCase(masm, argc);
2592   }
2593
2594   if (call_as_method) {
2595     __ bind(&wrap);
2596     // Wrap the receiver and patch it back onto the stack.
2597     EmitWrapCase(masm, argc, &cont);
2598   }
2599 }
2600
2601
2602 void CallFunctionStub::Generate(MacroAssembler* masm) {
2603   CallFunctionNoFeedback(masm, argc(), NeedsChecks(), CallAsMethod());
2604 }
2605
2606
2607 void CallConstructStub::Generate(MacroAssembler* masm) {
2608   // a0 : number of arguments
2609   // a1 : the function to call
2610   // a2 : feedback vector
2611   // a3 : slot in feedback vector (Smi, for RecordCallTarget)
2612   // t0 : original constructor (for IsSuperConstructorCall)
2613   Label slow, non_function_call;
2614
2615   // Check that the function is not a smi.
2616   __ JumpIfSmi(a1, &non_function_call);
2617   // Check that the function is a JSFunction.
2618   __ GetObjectType(a1, t1, t1);
2619   __ Branch(&slow, ne, t1, Operand(JS_FUNCTION_TYPE));
2620
2621   if (RecordCallTarget()) {
2622     GenerateRecordCallTarget(masm, IsSuperConstructorCall());
2623
2624     __ sll(at, a3, kPointerSizeLog2 - kSmiTagSize);
2625     __ Addu(t1, a2, at);
2626     if (FLAG_pretenuring_call_new) {
2627       // Put the AllocationSite from the feedback vector into a2.
2628       // By adding kPointerSize we encode that we know the AllocationSite
2629       // entry is at the feedback vector slot given by a3 + 1.
2630       __ lw(a2, FieldMemOperand(t1, FixedArray::kHeaderSize + kPointerSize));
2631     } else {
2632       Label feedback_register_initialized;
2633       // Put the AllocationSite from the feedback vector into a2, or undefined.
2634       __ lw(a2, FieldMemOperand(t1, FixedArray::kHeaderSize));
2635       __ lw(t1, FieldMemOperand(a2, AllocationSite::kMapOffset));
2636       __ LoadRoot(at, Heap::kAllocationSiteMapRootIndex);
2637       __ Branch(&feedback_register_initialized, eq, t1, Operand(at));
2638       __ LoadRoot(a2, Heap::kUndefinedValueRootIndex);
2639       __ bind(&feedback_register_initialized);
2640     }
2641
2642     __ AssertUndefinedOrAllocationSite(a2, t1);
2643   }
2644
2645   // Pass function as original constructor.
2646   if (IsSuperConstructorCall()) {
2647     __ mov(a3, t0);
2648   } else {
2649     __ mov(a3, a1);
2650   }
2651
2652   // Jump to the function-specific construct stub.
2653   Register jmp_reg = t0;
2654   __ lw(jmp_reg, FieldMemOperand(a1, JSFunction::kSharedFunctionInfoOffset));
2655   __ lw(jmp_reg, FieldMemOperand(jmp_reg,
2656                                  SharedFunctionInfo::kConstructStubOffset));
2657   __ Addu(at, jmp_reg, Operand(Code::kHeaderSize - kHeapObjectTag));
2658   __ Jump(at);
2659
2660   // a0: number of arguments
2661   // a1: called object
2662   // t1: object type
2663   Label do_call;
2664   __ bind(&slow);
2665   __ Branch(&non_function_call, ne, t1, Operand(JS_FUNCTION_PROXY_TYPE));
2666   __ GetBuiltinFunction(
2667       a1, Context::CALL_FUNCTION_PROXY_AS_CONSTRUCTOR_BUILTIN_INDEX);
2668   __ jmp(&do_call);
2669
2670   __ bind(&non_function_call);
2671   __ GetBuiltinFunction(
2672       a1, Context::CALL_NON_FUNCTION_AS_CONSTRUCTOR_BUILTIN_INDEX);
2673   __ bind(&do_call);
2674   // Set expected number of arguments to zero (not changing r0).
2675   __ li(a2, Operand(0, RelocInfo::NONE32));
2676   __ Jump(masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(),
2677            RelocInfo::CODE_TARGET);
2678 }
2679
2680
2681 static void EmitLoadTypeFeedbackVector(MacroAssembler* masm, Register vector) {
2682   __ lw(vector, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
2683   __ lw(vector, FieldMemOperand(vector,
2684                                 JSFunction::kSharedFunctionInfoOffset));
2685   __ lw(vector, FieldMemOperand(vector,
2686                                 SharedFunctionInfo::kFeedbackVectorOffset));
2687 }
2688
2689
2690 void CallIC_ArrayStub::Generate(MacroAssembler* masm) {
2691   // a1 - function
2692   // a3 - slot id
2693   // a2 - vector
2694   Label miss;
2695
2696   __ LoadGlobalFunction(Context::ARRAY_FUNCTION_INDEX, at);
2697   __ Branch(&miss, ne, a1, Operand(at));
2698
2699   __ li(a0, Operand(arg_count()));
2700   __ sll(at, a3, kPointerSizeLog2 - kSmiTagSize);
2701   __ Addu(at, a2, Operand(at));
2702   __ lw(t0, FieldMemOperand(at, FixedArray::kHeaderSize));
2703
2704   // Verify that t0 contains an AllocationSite
2705   __ lw(t1, FieldMemOperand(t0, HeapObject::kMapOffset));
2706   __ LoadRoot(at, Heap::kAllocationSiteMapRootIndex);
2707   __ Branch(&miss, ne, t1, Operand(at));
2708
2709   // Increment the call count for monomorphic function calls.
2710   __ sll(at, a3, kPointerSizeLog2 - kSmiTagSize);
2711   __ Addu(at, a2, Operand(at));
2712   __ lw(a3, FieldMemOperand(at, FixedArray::kHeaderSize + kPointerSize));
2713   __ Addu(a3, a3, Operand(Smi::FromInt(CallICNexus::kCallCountIncrement)));
2714   __ sw(a3, FieldMemOperand(at, FixedArray::kHeaderSize + kPointerSize));
2715
2716   __ mov(a2, t0);
2717   __ mov(a3, a1);
2718   ArrayConstructorStub stub(masm->isolate(), arg_count());
2719   __ TailCallStub(&stub);
2720
2721   __ bind(&miss);
2722   GenerateMiss(masm);
2723
2724   // The slow case, we need this no matter what to complete a call after a miss.
2725   __ li(a0, Operand(arg_count()));
2726   __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET);
2727 }
2728
2729
2730 void CallICStub::Generate(MacroAssembler* masm) {
2731   // a1 - function
2732   // a3 - slot id (Smi)
2733   // a2 - vector
2734   const int with_types_offset =
2735       FixedArray::OffsetOfElementAt(TypeFeedbackVector::kWithTypesIndex);
2736   const int generic_offset =
2737       FixedArray::OffsetOfElementAt(TypeFeedbackVector::kGenericCountIndex);
2738   Label extra_checks_or_miss, slow_start;
2739   Label slow, wrap, cont;
2740   Label have_js_function;
2741   int argc = arg_count();
2742   ParameterCount actual(argc);
2743
2744   // The checks. First, does r1 match the recorded monomorphic target?
2745   __ sll(t0, a3, kPointerSizeLog2 - kSmiTagSize);
2746   __ Addu(t0, a2, Operand(t0));
2747   __ lw(t0, FieldMemOperand(t0, FixedArray::kHeaderSize));
2748
2749   // We don't know that we have a weak cell. We might have a private symbol
2750   // or an AllocationSite, but the memory is safe to examine.
2751   // AllocationSite::kTransitionInfoOffset - contains a Smi or pointer to
2752   // FixedArray.
2753   // WeakCell::kValueOffset - contains a JSFunction or Smi(0)
2754   // Symbol::kHashFieldSlot - if the low bit is 1, then the hash is not
2755   // computed, meaning that it can't appear to be a pointer. If the low bit is
2756   // 0, then hash is computed, but the 0 bit prevents the field from appearing
2757   // to be a pointer.
2758   STATIC_ASSERT(WeakCell::kSize >= kPointerSize);
2759   STATIC_ASSERT(AllocationSite::kTransitionInfoOffset ==
2760                     WeakCell::kValueOffset &&
2761                 WeakCell::kValueOffset == Symbol::kHashFieldSlot);
2762
2763   __ lw(t1, FieldMemOperand(t0, WeakCell::kValueOffset));
2764   __ Branch(&extra_checks_or_miss, ne, a1, Operand(t1));
2765
2766   // The compare above could have been a SMI/SMI comparison. Guard against this
2767   // convincing us that we have a monomorphic JSFunction.
2768   __ JumpIfSmi(a1, &extra_checks_or_miss);
2769
2770   // Increment the call count for monomorphic function calls.
2771   __ sll(at, a3, kPointerSizeLog2 - kSmiTagSize);
2772   __ Addu(at, a2, Operand(at));
2773   __ lw(a3, FieldMemOperand(at, FixedArray::kHeaderSize + kPointerSize));
2774   __ Addu(a3, a3, Operand(Smi::FromInt(CallICNexus::kCallCountIncrement)));
2775   __ sw(a3, FieldMemOperand(at, FixedArray::kHeaderSize + kPointerSize));
2776
2777   __ bind(&have_js_function);
2778   if (CallAsMethod()) {
2779     EmitContinueIfStrictOrNative(masm, &cont);
2780     // Compute the receiver in sloppy mode.
2781     __ lw(a3, MemOperand(sp, argc * kPointerSize));
2782
2783     __ JumpIfSmi(a3, &wrap);
2784     __ GetObjectType(a3, t0, t0);
2785     __ Branch(&wrap, lt, t0, Operand(FIRST_SPEC_OBJECT_TYPE));
2786
2787     __ bind(&cont);
2788   }
2789
2790   __ InvokeFunction(a1, actual, JUMP_FUNCTION, NullCallWrapper());
2791
2792   __ bind(&slow);
2793   EmitSlowCase(masm, argc);
2794
2795   if (CallAsMethod()) {
2796     __ bind(&wrap);
2797     EmitWrapCase(masm, argc, &cont);
2798   }
2799
2800   __ bind(&extra_checks_or_miss);
2801   Label uninitialized, miss;
2802
2803   __ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex);
2804   __ Branch(&slow_start, eq, t0, Operand(at));
2805
2806   // The following cases attempt to handle MISS cases without going to the
2807   // runtime.
2808   if (FLAG_trace_ic) {
2809     __ Branch(&miss);
2810   }
2811
2812   __ LoadRoot(at, Heap::kuninitialized_symbolRootIndex);
2813   __ Branch(&uninitialized, eq, t0, Operand(at));
2814
2815   // We are going megamorphic. If the feedback is a JSFunction, it is fine
2816   // to handle it here. More complex cases are dealt with in the runtime.
2817   __ AssertNotSmi(t0);
2818   __ GetObjectType(t0, t1, t1);
2819   __ Branch(&miss, ne, t1, Operand(JS_FUNCTION_TYPE));
2820   __ sll(t0, a3, kPointerSizeLog2 - kSmiTagSize);
2821   __ Addu(t0, a2, Operand(t0));
2822   __ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex);
2823   __ sw(at, FieldMemOperand(t0, FixedArray::kHeaderSize));
2824   // We have to update statistics for runtime profiling.
2825   __ lw(t0, FieldMemOperand(a2, with_types_offset));
2826   __ Subu(t0, t0, Operand(Smi::FromInt(1)));
2827   __ sw(t0, FieldMemOperand(a2, with_types_offset));
2828   __ lw(t0, FieldMemOperand(a2, generic_offset));
2829   __ Addu(t0, t0, Operand(Smi::FromInt(1)));
2830   __ Branch(USE_DELAY_SLOT, &slow_start);
2831   __ sw(t0, FieldMemOperand(a2, generic_offset));  // In delay slot.
2832
2833   __ bind(&uninitialized);
2834
2835   // We are going monomorphic, provided we actually have a JSFunction.
2836   __ JumpIfSmi(a1, &miss);
2837
2838   // Goto miss case if we do not have a function.
2839   __ GetObjectType(a1, t0, t0);
2840   __ Branch(&miss, ne, t0, Operand(JS_FUNCTION_TYPE));
2841
2842   // Make sure the function is not the Array() function, which requires special
2843   // behavior on MISS.
2844   __ LoadGlobalFunction(Context::ARRAY_FUNCTION_INDEX, t0);
2845   __ Branch(&miss, eq, a1, Operand(t0));
2846
2847   // Update stats.
2848   __ lw(t0, FieldMemOperand(a2, with_types_offset));
2849   __ Addu(t0, t0, Operand(Smi::FromInt(1)));
2850   __ sw(t0, FieldMemOperand(a2, with_types_offset));
2851
2852   // Initialize the call counter.
2853   __ sll(at, a3, kPointerSizeLog2 - kSmiTagSize);
2854   __ Addu(at, a2, Operand(at));
2855   __ li(t0, Operand(Smi::FromInt(CallICNexus::kCallCountIncrement)));
2856   __ sw(t0, FieldMemOperand(at, FixedArray::kHeaderSize + kPointerSize));
2857
2858   // Store the function. Use a stub since we need a frame for allocation.
2859   // a2 - vector
2860   // a3 - slot
2861   // a1 - function
2862   {
2863     FrameScope scope(masm, StackFrame::INTERNAL);
2864     CreateWeakCellStub create_stub(masm->isolate());
2865     __ Push(a1);
2866     __ CallStub(&create_stub);
2867     __ Pop(a1);
2868   }
2869
2870   __ Branch(&have_js_function);
2871
2872   // We are here because tracing is on or we encountered a MISS case we can't
2873   // handle here.
2874   __ bind(&miss);
2875   GenerateMiss(masm);
2876
2877   // the slow case
2878   __ bind(&slow_start);
2879   // Check that the function is really a JavaScript function.
2880   // r1: pushed function (to be verified)
2881   __ JumpIfSmi(a1, &slow);
2882
2883   // Goto slow case if we do not have a function.
2884   __ GetObjectType(a1, t0, t0);
2885   __ Branch(&slow, ne, t0, Operand(JS_FUNCTION_TYPE));
2886   __ Branch(&have_js_function);
2887 }
2888
2889
2890 void CallICStub::GenerateMiss(MacroAssembler* masm) {
2891   FrameScope scope(masm, StackFrame::INTERNAL);
2892
2893   // Push the receiver and the function and feedback info.
2894   __ Push(a1, a2, a3);
2895
2896   // Call the entry.
2897   Runtime::FunctionId id = GetICState() == DEFAULT
2898                                ? Runtime::kCallIC_Miss
2899                                : Runtime::kCallIC_Customization_Miss;
2900   __ CallRuntime(id, 3);
2901
2902   // Move result to a1 and exit the internal frame.
2903   __ mov(a1, v0);
2904 }
2905
2906
2907 // StringCharCodeAtGenerator.
2908 void StringCharCodeAtGenerator::GenerateFast(MacroAssembler* masm) {
2909   DCHECK(!t0.is(index_));
2910   DCHECK(!t0.is(result_));
2911   DCHECK(!t0.is(object_));
2912   if (check_mode_ == RECEIVER_IS_UNKNOWN) {
2913     // If the receiver is a smi trigger the non-string case.
2914     __ JumpIfSmi(object_, receiver_not_string_);
2915
2916     // Fetch the instance type of the receiver into result register.
2917     __ lw(result_, FieldMemOperand(object_, HeapObject::kMapOffset));
2918     __ lbu(result_, FieldMemOperand(result_, Map::kInstanceTypeOffset));
2919     // If the receiver is not a string trigger the non-string case.
2920     __ And(t0, result_, Operand(kIsNotStringMask));
2921     __ Branch(receiver_not_string_, ne, t0, Operand(zero_reg));
2922   }
2923
2924   // If the index is non-smi trigger the non-smi case.
2925   __ JumpIfNotSmi(index_, &index_not_smi_);
2926
2927   __ bind(&got_smi_index_);
2928
2929   // Check for index out of range.
2930   __ lw(t0, FieldMemOperand(object_, String::kLengthOffset));
2931   __ Branch(index_out_of_range_, ls, t0, Operand(index_));
2932
2933   __ sra(index_, index_, kSmiTagSize);
2934
2935   StringCharLoadGenerator::Generate(masm,
2936                                     object_,
2937                                     index_,
2938                                     result_,
2939                                     &call_runtime_);
2940
2941   __ sll(result_, result_, kSmiTagSize);
2942   __ bind(&exit_);
2943 }
2944
2945
2946 void StringCharCodeAtGenerator::GenerateSlow(
2947     MacroAssembler* masm, EmbedMode embed_mode,
2948     const RuntimeCallHelper& call_helper) {
2949   __ Abort(kUnexpectedFallthroughToCharCodeAtSlowCase);
2950
2951   // Index is not a smi.
2952   __ bind(&index_not_smi_);
2953   // If index is a heap number, try converting it to an integer.
2954   __ CheckMap(index_,
2955               result_,
2956               Heap::kHeapNumberMapRootIndex,
2957               index_not_number_,
2958               DONT_DO_SMI_CHECK);
2959   call_helper.BeforeCall(masm);
2960   // Consumed by runtime conversion function:
2961   if (embed_mode == PART_OF_IC_HANDLER) {
2962     __ Push(LoadWithVectorDescriptor::VectorRegister(),
2963             LoadWithVectorDescriptor::SlotRegister(), object_, index_);
2964   } else {
2965     __ Push(object_, index_);
2966   }
2967   if (index_flags_ == STRING_INDEX_IS_NUMBER) {
2968     __ CallRuntime(Runtime::kNumberToIntegerMapMinusZero, 1);
2969   } else {
2970     DCHECK(index_flags_ == STRING_INDEX_IS_ARRAY_INDEX);
2971     // NumberToSmi discards numbers that are not exact integers.
2972     __ CallRuntime(Runtime::kNumberToSmi, 1);
2973   }
2974
2975   // Save the conversion result before the pop instructions below
2976   // have a chance to overwrite it.
2977   __ Move(index_, v0);
2978   if (embed_mode == PART_OF_IC_HANDLER) {
2979     __ Pop(LoadWithVectorDescriptor::VectorRegister(),
2980            LoadWithVectorDescriptor::SlotRegister(), object_);
2981   } else {
2982     __ pop(object_);
2983   }
2984   // Reload the instance type.
2985   __ lw(result_, FieldMemOperand(object_, HeapObject::kMapOffset));
2986   __ lbu(result_, FieldMemOperand(result_, Map::kInstanceTypeOffset));
2987   call_helper.AfterCall(masm);
2988   // If index is still not a smi, it must be out of range.
2989   __ JumpIfNotSmi(index_, index_out_of_range_);
2990   // Otherwise, return to the fast path.
2991   __ Branch(&got_smi_index_);
2992
2993   // Call runtime. We get here when the receiver is a string and the
2994   // index is a number, but the code of getting the actual character
2995   // is too complex (e.g., when the string needs to be flattened).
2996   __ bind(&call_runtime_);
2997   call_helper.BeforeCall(masm);
2998   __ sll(index_, index_, kSmiTagSize);
2999   __ Push(object_, index_);
3000   __ CallRuntime(Runtime::kStringCharCodeAtRT, 2);
3001
3002   __ Move(result_, v0);
3003
3004   call_helper.AfterCall(masm);
3005   __ jmp(&exit_);
3006
3007   __ Abort(kUnexpectedFallthroughFromCharCodeAtSlowCase);
3008 }
3009
3010
3011 // -------------------------------------------------------------------------
3012 // StringCharFromCodeGenerator
3013
3014 void StringCharFromCodeGenerator::GenerateFast(MacroAssembler* masm) {
3015   // Fast case of Heap::LookupSingleCharacterStringFromCode.
3016
3017   DCHECK(!t0.is(result_));
3018   DCHECK(!t0.is(code_));
3019
3020   STATIC_ASSERT(kSmiTag == 0);
3021   STATIC_ASSERT(kSmiShiftSize == 0);
3022   DCHECK(base::bits::IsPowerOfTwo32(String::kMaxOneByteCharCodeU + 1));
3023   __ And(t0, code_, Operand(kSmiTagMask |
3024                             ((~String::kMaxOneByteCharCodeU) << kSmiTagSize)));
3025   __ Branch(&slow_case_, ne, t0, Operand(zero_reg));
3026
3027   __ LoadRoot(result_, Heap::kSingleCharacterStringCacheRootIndex);
3028   // At this point code register contains smi tagged one-byte char code.
3029   STATIC_ASSERT(kSmiTag == 0);
3030   __ sll(t0, code_, kPointerSizeLog2 - kSmiTagSize);
3031   __ Addu(result_, result_, t0);
3032   __ lw(result_, FieldMemOperand(result_, FixedArray::kHeaderSize));
3033   __ LoadRoot(t0, Heap::kUndefinedValueRootIndex);
3034   __ Branch(&slow_case_, eq, result_, Operand(t0));
3035   __ bind(&exit_);
3036 }
3037
3038
3039 void StringCharFromCodeGenerator::GenerateSlow(
3040     MacroAssembler* masm,
3041     const RuntimeCallHelper& call_helper) {
3042   __ Abort(kUnexpectedFallthroughToCharFromCodeSlowCase);
3043
3044   __ bind(&slow_case_);
3045   call_helper.BeforeCall(masm);
3046   __ push(code_);
3047   __ CallRuntime(Runtime::kCharFromCode, 1);
3048   __ Move(result_, v0);
3049
3050   call_helper.AfterCall(masm);
3051   __ Branch(&exit_);
3052
3053   __ Abort(kUnexpectedFallthroughFromCharFromCodeSlowCase);
3054 }
3055
3056
3057 enum CopyCharactersFlags { COPY_ONE_BYTE = 1, DEST_ALWAYS_ALIGNED = 2 };
3058
3059
3060 void StringHelper::GenerateCopyCharacters(MacroAssembler* masm,
3061                                           Register dest,
3062                                           Register src,
3063                                           Register count,
3064                                           Register scratch,
3065                                           String::Encoding encoding) {
3066   if (FLAG_debug_code) {
3067     // Check that destination is word aligned.
3068     __ And(scratch, dest, Operand(kPointerAlignmentMask));
3069     __ Check(eq,
3070              kDestinationOfCopyNotAligned,
3071              scratch,
3072              Operand(zero_reg));
3073   }
3074
3075   // Assumes word reads and writes are little endian.
3076   // Nothing to do for zero characters.
3077   Label done;
3078
3079   if (encoding == String::TWO_BYTE_ENCODING) {
3080     __ Addu(count, count, count);
3081   }
3082
3083   Register limit = count;  // Read until dest equals this.
3084   __ Addu(limit, dest, Operand(count));
3085
3086   Label loop_entry, loop;
3087   // Copy bytes from src to dest until dest hits limit.
3088   __ Branch(&loop_entry);
3089   __ bind(&loop);
3090   __ lbu(scratch, MemOperand(src));
3091   __ Addu(src, src, Operand(1));
3092   __ sb(scratch, MemOperand(dest));
3093   __ Addu(dest, dest, Operand(1));
3094   __ bind(&loop_entry);
3095   __ Branch(&loop, lt, dest, Operand(limit));
3096
3097   __ bind(&done);
3098 }
3099
3100
3101 void SubStringStub::Generate(MacroAssembler* masm) {
3102   Label runtime;
3103   // Stack frame on entry.
3104   //  ra: return address
3105   //  sp[0]: to
3106   //  sp[4]: from
3107   //  sp[8]: string
3108
3109   // This stub is called from the native-call %_SubString(...), so
3110   // nothing can be assumed about the arguments. It is tested that:
3111   //  "string" is a sequential string,
3112   //  both "from" and "to" are smis, and
3113   //  0 <= from <= to <= string.length.
3114   // If any of these assumptions fail, we call the runtime system.
3115
3116   const int kToOffset = 0 * kPointerSize;
3117   const int kFromOffset = 1 * kPointerSize;
3118   const int kStringOffset = 2 * kPointerSize;
3119
3120   __ lw(a2, MemOperand(sp, kToOffset));
3121   __ lw(a3, MemOperand(sp, kFromOffset));
3122   STATIC_ASSERT(kFromOffset == kToOffset + 4);
3123   STATIC_ASSERT(kSmiTag == 0);
3124   STATIC_ASSERT(kSmiTagSize + kSmiShiftSize == 1);
3125
3126   // Utilize delay slots. SmiUntag doesn't emit a jump, everything else is
3127   // safe in this case.
3128   __ UntagAndJumpIfNotSmi(a2, a2, &runtime);
3129   __ UntagAndJumpIfNotSmi(a3, a3, &runtime);
3130   // Both a2 and a3 are untagged integers.
3131
3132   __ Branch(&runtime, lt, a3, Operand(zero_reg));  // From < 0.
3133
3134   __ Branch(&runtime, gt, a3, Operand(a2));  // Fail if from > to.
3135   __ Subu(a2, a2, a3);
3136
3137   // Make sure first argument is a string.
3138   __ lw(v0, MemOperand(sp, kStringOffset));
3139   __ JumpIfSmi(v0, &runtime);
3140   __ lw(a1, FieldMemOperand(v0, HeapObject::kMapOffset));
3141   __ lbu(a1, FieldMemOperand(a1, Map::kInstanceTypeOffset));
3142   __ And(t0, a1, Operand(kIsNotStringMask));
3143
3144   __ Branch(&runtime, ne, t0, Operand(zero_reg));
3145
3146   Label single_char;
3147   __ Branch(&single_char, eq, a2, Operand(1));
3148
3149   // Short-cut for the case of trivial substring.
3150   Label return_v0;
3151   // v0: original string
3152   // a2: result string length
3153   __ lw(t0, FieldMemOperand(v0, String::kLengthOffset));
3154   __ sra(t0, t0, 1);
3155   // Return original string.
3156   __ Branch(&return_v0, eq, a2, Operand(t0));
3157   // Longer than original string's length or negative: unsafe arguments.
3158   __ Branch(&runtime, hi, a2, Operand(t0));
3159   // Shorter than original string's length: an actual substring.
3160
3161   // Deal with different string types: update the index if necessary
3162   // and put the underlying string into t1.
3163   // v0: original string
3164   // a1: instance type
3165   // a2: length
3166   // a3: from index (untagged)
3167   Label underlying_unpacked, sliced_string, seq_or_external_string;
3168   // If the string is not indirect, it can only be sequential or external.
3169   STATIC_ASSERT(kIsIndirectStringMask == (kSlicedStringTag & kConsStringTag));
3170   STATIC_ASSERT(kIsIndirectStringMask != 0);
3171   __ And(t0, a1, Operand(kIsIndirectStringMask));
3172   __ Branch(USE_DELAY_SLOT, &seq_or_external_string, eq, t0, Operand(zero_reg));
3173   // t0 is used as a scratch register and can be overwritten in either case.
3174   __ And(t0, a1, Operand(kSlicedNotConsMask));
3175   __ Branch(&sliced_string, ne, t0, Operand(zero_reg));
3176   // Cons string.  Check whether it is flat, then fetch first part.
3177   __ lw(t1, FieldMemOperand(v0, ConsString::kSecondOffset));
3178   __ LoadRoot(t0, Heap::kempty_stringRootIndex);
3179   __ Branch(&runtime, ne, t1, Operand(t0));
3180   __ lw(t1, FieldMemOperand(v0, ConsString::kFirstOffset));
3181   // Update instance type.
3182   __ lw(a1, FieldMemOperand(t1, HeapObject::kMapOffset));
3183   __ lbu(a1, FieldMemOperand(a1, Map::kInstanceTypeOffset));
3184   __ jmp(&underlying_unpacked);
3185
3186   __ bind(&sliced_string);
3187   // Sliced string.  Fetch parent and correct start index by offset.
3188   __ lw(t1, FieldMemOperand(v0, SlicedString::kParentOffset));
3189   __ lw(t0, FieldMemOperand(v0, SlicedString::kOffsetOffset));
3190   __ sra(t0, t0, 1);  // Add offset to index.
3191   __ Addu(a3, a3, t0);
3192   // Update instance type.
3193   __ lw(a1, FieldMemOperand(t1, HeapObject::kMapOffset));
3194   __ lbu(a1, FieldMemOperand(a1, Map::kInstanceTypeOffset));
3195   __ jmp(&underlying_unpacked);
3196
3197   __ bind(&seq_or_external_string);
3198   // Sequential or external string.  Just move string to the expected register.
3199   __ mov(t1, v0);
3200
3201   __ bind(&underlying_unpacked);
3202
3203   if (FLAG_string_slices) {
3204     Label copy_routine;
3205     // t1: underlying subject string
3206     // a1: instance type of underlying subject string
3207     // a2: length
3208     // a3: adjusted start index (untagged)
3209     // Short slice.  Copy instead of slicing.
3210     __ Branch(&copy_routine, lt, a2, Operand(SlicedString::kMinLength));
3211     // Allocate new sliced string.  At this point we do not reload the instance
3212     // type including the string encoding because we simply rely on the info
3213     // provided by the original string.  It does not matter if the original
3214     // string's encoding is wrong because we always have to recheck encoding of
3215     // the newly created string's parent anyways due to externalized strings.
3216     Label two_byte_slice, set_slice_header;
3217     STATIC_ASSERT((kStringEncodingMask & kOneByteStringTag) != 0);
3218     STATIC_ASSERT((kStringEncodingMask & kTwoByteStringTag) == 0);
3219     __ And(t0, a1, Operand(kStringEncodingMask));
3220     __ Branch(&two_byte_slice, eq, t0, Operand(zero_reg));
3221     __ AllocateOneByteSlicedString(v0, a2, t2, t3, &runtime);
3222     __ jmp(&set_slice_header);
3223     __ bind(&two_byte_slice);
3224     __ AllocateTwoByteSlicedString(v0, a2, t2, t3, &runtime);
3225     __ bind(&set_slice_header);
3226     __ sll(a3, a3, 1);
3227     __ sw(t1, FieldMemOperand(v0, SlicedString::kParentOffset));
3228     __ sw(a3, FieldMemOperand(v0, SlicedString::kOffsetOffset));
3229     __ jmp(&return_v0);
3230
3231     __ bind(&copy_routine);
3232   }
3233
3234   // t1: underlying subject string
3235   // a1: instance type of underlying subject string
3236   // a2: length
3237   // a3: adjusted start index (untagged)
3238   Label two_byte_sequential, sequential_string, allocate_result;
3239   STATIC_ASSERT(kExternalStringTag != 0);
3240   STATIC_ASSERT(kSeqStringTag == 0);
3241   __ And(t0, a1, Operand(kExternalStringTag));
3242   __ Branch(&sequential_string, eq, t0, Operand(zero_reg));
3243
3244   // Handle external string.
3245   // Rule out short external strings.
3246   STATIC_ASSERT(kShortExternalStringTag != 0);
3247   __ And(t0, a1, Operand(kShortExternalStringTag));
3248   __ Branch(&runtime, ne, t0, Operand(zero_reg));
3249   __ lw(t1, FieldMemOperand(t1, ExternalString::kResourceDataOffset));
3250   // t1 already points to the first character of underlying string.
3251   __ jmp(&allocate_result);
3252
3253   __ bind(&sequential_string);
3254   // Locate first character of underlying subject string.
3255   STATIC_ASSERT(SeqTwoByteString::kHeaderSize == SeqOneByteString::kHeaderSize);
3256   __ Addu(t1, t1, Operand(SeqOneByteString::kHeaderSize - kHeapObjectTag));
3257
3258   __ bind(&allocate_result);
3259   // Sequential acii string.  Allocate the result.
3260   STATIC_ASSERT((kOneByteStringTag & kStringEncodingMask) != 0);
3261   __ And(t0, a1, Operand(kStringEncodingMask));
3262   __ Branch(&two_byte_sequential, eq, t0, Operand(zero_reg));
3263
3264   // Allocate and copy the resulting ASCII string.
3265   __ AllocateOneByteString(v0, a2, t0, t2, t3, &runtime);
3266
3267   // Locate first character of substring to copy.
3268   __ Addu(t1, t1, a3);
3269
3270   // Locate first character of result.
3271   __ Addu(a1, v0, Operand(SeqOneByteString::kHeaderSize - kHeapObjectTag));
3272
3273   // v0: result string
3274   // a1: first character of result string
3275   // a2: result string length
3276   // t1: first character of substring to copy
3277   STATIC_ASSERT((SeqOneByteString::kHeaderSize & kObjectAlignmentMask) == 0);
3278   StringHelper::GenerateCopyCharacters(
3279       masm, a1, t1, a2, a3, String::ONE_BYTE_ENCODING);
3280   __ jmp(&return_v0);
3281
3282   // Allocate and copy the resulting two-byte string.
3283   __ bind(&two_byte_sequential);
3284   __ AllocateTwoByteString(v0, a2, t0, t2, t3, &runtime);
3285
3286   // Locate first character of substring to copy.
3287   STATIC_ASSERT(kSmiTagSize == 1 && kSmiTag == 0);
3288   __ sll(t0, a3, 1);
3289   __ Addu(t1, t1, t0);
3290   // Locate first character of result.
3291   __ Addu(a1, v0, Operand(SeqTwoByteString::kHeaderSize - kHeapObjectTag));
3292
3293   // v0: result string.
3294   // a1: first character of result.
3295   // a2: result length.
3296   // t1: first character of substring to copy.
3297   STATIC_ASSERT((SeqTwoByteString::kHeaderSize & kObjectAlignmentMask) == 0);
3298   StringHelper::GenerateCopyCharacters(
3299       masm, a1, t1, a2, a3, String::TWO_BYTE_ENCODING);
3300
3301   __ bind(&return_v0);
3302   Counters* counters = isolate()->counters();
3303   __ IncrementCounter(counters->sub_string_native(), 1, a3, t0);
3304   __ DropAndRet(3);
3305
3306   // Just jump to runtime to create the sub string.
3307   __ bind(&runtime);
3308   __ TailCallRuntime(Runtime::kSubString, 3, 1);
3309
3310   __ bind(&single_char);
3311   // v0: original string
3312   // a1: instance type
3313   // a2: length
3314   // a3: from index (untagged)
3315   __ SmiTag(a3, a3);
3316   StringCharAtGenerator generator(v0, a3, a2, v0, &runtime, &runtime, &runtime,
3317                                   STRING_INDEX_IS_NUMBER, RECEIVER_IS_STRING);
3318   generator.GenerateFast(masm);
3319   __ DropAndRet(3);
3320   generator.SkipSlow(masm, &runtime);
3321 }
3322
3323
3324 void ToNumberStub::Generate(MacroAssembler* masm) {
3325   // The ToNumber stub takes one argument in a0.
3326   Label not_smi;
3327   __ JumpIfNotSmi(a0, &not_smi);
3328   __ Ret(USE_DELAY_SLOT);
3329   __ mov(v0, a0);
3330   __ bind(&not_smi);
3331
3332   Label not_heap_number;
3333   __ lw(a1, FieldMemOperand(a0, HeapObject::kMapOffset));
3334   __ lbu(a1, FieldMemOperand(a1, Map::kInstanceTypeOffset));
3335   // a0: object
3336   // a1: instance type.
3337   __ Branch(&not_heap_number, ne, a1, Operand(HEAP_NUMBER_TYPE));
3338   __ Ret(USE_DELAY_SLOT);
3339   __ mov(v0, a0);
3340   __ bind(&not_heap_number);
3341
3342   Label not_string, slow_string;
3343   __ Branch(&not_string, hs, a1, Operand(FIRST_NONSTRING_TYPE));
3344   // Check if string has a cached array index.
3345   __ lw(a2, FieldMemOperand(a0, String::kHashFieldOffset));
3346   __ And(at, a2, Operand(String::kContainsCachedArrayIndexMask));
3347   __ Branch(&slow_string, ne, at, Operand(zero_reg));
3348   __ IndexFromHash(a2, a0);
3349   __ Ret(USE_DELAY_SLOT);
3350   __ mov(v0, a0);
3351   __ bind(&slow_string);
3352   __ push(a0);  // Push argument.
3353   __ TailCallRuntime(Runtime::kStringToNumber, 1, 1);
3354   __ bind(&not_string);
3355
3356   Label not_oddball;
3357   __ Branch(&not_oddball, ne, a1, Operand(ODDBALL_TYPE));
3358   __ Ret(USE_DELAY_SLOT);
3359   __ lw(v0, FieldMemOperand(a0, Oddball::kToNumberOffset));
3360   __ bind(&not_oddball);
3361
3362   __ push(a0);  // Push argument.
3363   __ TailCallRuntime(Runtime::kToNumber, 1, 1);
3364 }
3365
3366
3367 void ToStringStub::Generate(MacroAssembler* masm) {
3368   // The ToString stub takes on argument in a0.
3369   Label is_number;
3370   __ JumpIfSmi(a0, &is_number);
3371
3372   Label not_string;
3373   __ GetObjectType(a0, a1, a1);
3374   // a0: receiver
3375   // a1: receiver instance type
3376   __ Branch(&not_string, ge, a1, Operand(FIRST_NONSTRING_TYPE));
3377   __ Ret(USE_DELAY_SLOT);
3378   __ mov(v0, a0);
3379   __ bind(&not_string);
3380
3381   Label not_heap_number;
3382   __ Branch(&not_heap_number, ne, a1, Operand(HEAP_NUMBER_TYPE));
3383   __ bind(&is_number);
3384   NumberToStringStub stub(isolate());
3385   __ TailCallStub(&stub);
3386   __ bind(&not_heap_number);
3387
3388   Label not_oddball;
3389   __ Branch(&not_oddball, ne, a1, Operand(ODDBALL_TYPE));
3390   __ Ret(USE_DELAY_SLOT);
3391   __ lw(v0, FieldMemOperand(a0, Oddball::kToStringOffset));
3392   __ bind(&not_oddball);
3393
3394   __ push(a0);  // Push argument.
3395   __ TailCallRuntime(Runtime::kToString, 1, 1);
3396 }
3397
3398
3399 void StringHelper::GenerateFlatOneByteStringEquals(
3400     MacroAssembler* masm, Register left, Register right, Register scratch1,
3401     Register scratch2, Register scratch3) {
3402   Register length = scratch1;
3403
3404   // Compare lengths.
3405   Label strings_not_equal, check_zero_length;
3406   __ lw(length, FieldMemOperand(left, String::kLengthOffset));
3407   __ lw(scratch2, FieldMemOperand(right, String::kLengthOffset));
3408   __ Branch(&check_zero_length, eq, length, Operand(scratch2));
3409   __ bind(&strings_not_equal);
3410   DCHECK(is_int16(NOT_EQUAL));
3411   __ Ret(USE_DELAY_SLOT);
3412   __ li(v0, Operand(Smi::FromInt(NOT_EQUAL)));
3413
3414   // Check if the length is zero.
3415   Label compare_chars;
3416   __ bind(&check_zero_length);
3417   STATIC_ASSERT(kSmiTag == 0);
3418   __ Branch(&compare_chars, ne, length, Operand(zero_reg));
3419   DCHECK(is_int16(EQUAL));
3420   __ Ret(USE_DELAY_SLOT);
3421   __ li(v0, Operand(Smi::FromInt(EQUAL)));
3422
3423   // Compare characters.
3424   __ bind(&compare_chars);
3425
3426   GenerateOneByteCharsCompareLoop(masm, left, right, length, scratch2, scratch3,
3427                                   v0, &strings_not_equal);
3428
3429   // Characters are equal.
3430   __ Ret(USE_DELAY_SLOT);
3431   __ li(v0, Operand(Smi::FromInt(EQUAL)));
3432 }
3433
3434
3435 void StringHelper::GenerateCompareFlatOneByteStrings(
3436     MacroAssembler* masm, Register left, Register right, Register scratch1,
3437     Register scratch2, Register scratch3, Register scratch4) {
3438   Label result_not_equal, compare_lengths;
3439   // Find minimum length and length difference.
3440   __ lw(scratch1, FieldMemOperand(left, String::kLengthOffset));
3441   __ lw(scratch2, FieldMemOperand(right, String::kLengthOffset));
3442   __ Subu(scratch3, scratch1, Operand(scratch2));
3443   Register length_delta = scratch3;
3444   __ slt(scratch4, scratch2, scratch1);
3445   __ Movn(scratch1, scratch2, scratch4);
3446   Register min_length = scratch1;
3447   STATIC_ASSERT(kSmiTag == 0);
3448   __ Branch(&compare_lengths, eq, min_length, Operand(zero_reg));
3449
3450   // Compare loop.
3451   GenerateOneByteCharsCompareLoop(masm, left, right, min_length, scratch2,
3452                                   scratch4, v0, &result_not_equal);
3453
3454   // Compare lengths - strings up to min-length are equal.
3455   __ bind(&compare_lengths);
3456   DCHECK(Smi::FromInt(EQUAL) == static_cast<Smi*>(0));
3457   // Use length_delta as result if it's zero.
3458   __ mov(scratch2, length_delta);
3459   __ mov(scratch4, zero_reg);
3460   __ mov(v0, zero_reg);
3461
3462   __ bind(&result_not_equal);
3463   // Conditionally update the result based either on length_delta or
3464   // the last comparion performed in the loop above.
3465   Label ret;
3466   __ Branch(&ret, eq, scratch2, Operand(scratch4));
3467   __ li(v0, Operand(Smi::FromInt(GREATER)));
3468   __ Branch(&ret, gt, scratch2, Operand(scratch4));
3469   __ li(v0, Operand(Smi::FromInt(LESS)));
3470   __ bind(&ret);
3471   __ Ret();
3472 }
3473
3474
3475 void StringHelper::GenerateOneByteCharsCompareLoop(
3476     MacroAssembler* masm, Register left, Register right, Register length,
3477     Register scratch1, Register scratch2, Register scratch3,
3478     Label* chars_not_equal) {
3479   // Change index to run from -length to -1 by adding length to string
3480   // start. This means that loop ends when index reaches zero, which
3481   // doesn't need an additional compare.
3482   __ SmiUntag(length);
3483   __ Addu(scratch1, length,
3484           Operand(SeqOneByteString::kHeaderSize - kHeapObjectTag));
3485   __ Addu(left, left, Operand(scratch1));
3486   __ Addu(right, right, Operand(scratch1));
3487   __ Subu(length, zero_reg, length);
3488   Register index = length;  // index = -length;
3489
3490
3491   // Compare loop.
3492   Label loop;
3493   __ bind(&loop);
3494   __ Addu(scratch3, left, index);
3495   __ lbu(scratch1, MemOperand(scratch3));
3496   __ Addu(scratch3, right, index);
3497   __ lbu(scratch2, MemOperand(scratch3));
3498   __ Branch(chars_not_equal, ne, scratch1, Operand(scratch2));
3499   __ Addu(index, index, 1);
3500   __ Branch(&loop, ne, index, Operand(zero_reg));
3501 }
3502
3503
3504 void StringCompareStub::Generate(MacroAssembler* masm) {
3505   Label runtime;
3506
3507   Counters* counters = isolate()->counters();
3508
3509   // Stack frame on entry.
3510   //  sp[0]: right string
3511   //  sp[4]: left string
3512   __ lw(a1, MemOperand(sp, 1 * kPointerSize));  // Left.
3513   __ lw(a0, MemOperand(sp, 0 * kPointerSize));  // Right.
3514
3515   Label not_same;
3516   __ Branch(&not_same, ne, a0, Operand(a1));
3517   STATIC_ASSERT(EQUAL == 0);
3518   STATIC_ASSERT(kSmiTag == 0);
3519   __ li(v0, Operand(Smi::FromInt(EQUAL)));
3520   __ IncrementCounter(counters->string_compare_native(), 1, a1, a2);
3521   __ DropAndRet(2);
3522
3523   __ bind(&not_same);
3524
3525   // Check that both objects are sequential one-byte strings.
3526   __ JumpIfNotBothSequentialOneByteStrings(a1, a0, a2, a3, &runtime);
3527
3528   // Compare flat ASCII strings natively. Remove arguments from stack first.
3529   __ IncrementCounter(counters->string_compare_native(), 1, a2, a3);
3530   __ Addu(sp, sp, Operand(2 * kPointerSize));
3531   StringHelper::GenerateCompareFlatOneByteStrings(masm, a1, a0, a2, a3, t0, t1);
3532
3533   __ bind(&runtime);
3534   __ TailCallRuntime(Runtime::kStringCompare, 2, 1);
3535 }
3536
3537
3538 void BinaryOpICWithAllocationSiteStub::Generate(MacroAssembler* masm) {
3539   // ----------- S t a t e -------------
3540   //  -- a1    : left
3541   //  -- a0    : right
3542   //  -- ra    : return address
3543   // -----------------------------------
3544
3545   // Load a2 with the allocation site. We stick an undefined dummy value here
3546   // and replace it with the real allocation site later when we instantiate this
3547   // stub in BinaryOpICWithAllocationSiteStub::GetCodeCopyFromTemplate().
3548   __ li(a2, handle(isolate()->heap()->undefined_value()));
3549
3550   // Make sure that we actually patched the allocation site.
3551   if (FLAG_debug_code) {
3552     __ And(at, a2, Operand(kSmiTagMask));
3553     __ Assert(ne, kExpectedAllocationSite, at, Operand(zero_reg));
3554     __ lw(t0, FieldMemOperand(a2, HeapObject::kMapOffset));
3555     __ LoadRoot(at, Heap::kAllocationSiteMapRootIndex);
3556     __ Assert(eq, kExpectedAllocationSite, t0, Operand(at));
3557   }
3558
3559   // Tail call into the stub that handles binary operations with allocation
3560   // sites.
3561   BinaryOpWithAllocationSiteStub stub(isolate(), state());
3562   __ TailCallStub(&stub);
3563 }
3564
3565
3566 void CompareICStub::GenerateSmis(MacroAssembler* masm) {
3567   DCHECK(state() == CompareICState::SMI);
3568   Label miss;
3569   __ Or(a2, a1, a0);
3570   __ JumpIfNotSmi(a2, &miss);
3571
3572   if (GetCondition() == eq) {
3573     // For equality we do not care about the sign of the result.
3574     __ Ret(USE_DELAY_SLOT);
3575     __ Subu(v0, a0, a1);
3576   } else {
3577     // Untag before subtracting to avoid handling overflow.
3578     __ SmiUntag(a1);
3579     __ SmiUntag(a0);
3580     __ Ret(USE_DELAY_SLOT);
3581     __ Subu(v0, a1, a0);
3582   }
3583
3584   __ bind(&miss);
3585   GenerateMiss(masm);
3586 }
3587
3588
3589 void CompareICStub::GenerateNumbers(MacroAssembler* masm) {
3590   DCHECK(state() == CompareICState::NUMBER);
3591
3592   Label generic_stub;
3593   Label unordered, maybe_undefined1, maybe_undefined2;
3594   Label miss;
3595
3596   if (left() == CompareICState::SMI) {
3597     __ JumpIfNotSmi(a1, &miss);
3598   }
3599   if (right() == CompareICState::SMI) {
3600     __ JumpIfNotSmi(a0, &miss);
3601   }
3602
3603   // Inlining the double comparison and falling back to the general compare
3604   // stub if NaN is involved.
3605   // Load left and right operand.
3606   Label done, left, left_smi, right_smi;
3607   __ JumpIfSmi(a0, &right_smi);
3608   __ CheckMap(a0, a2, Heap::kHeapNumberMapRootIndex, &maybe_undefined1,
3609               DONT_DO_SMI_CHECK);
3610   __ Subu(a2, a0, Operand(kHeapObjectTag));
3611   __ ldc1(f2, MemOperand(a2, HeapNumber::kValueOffset));
3612   __ Branch(&left);
3613   __ bind(&right_smi);
3614   __ SmiUntag(a2, a0);  // Can't clobber a0 yet.
3615   FPURegister single_scratch = f6;
3616   __ mtc1(a2, single_scratch);
3617   __ cvt_d_w(f2, single_scratch);
3618
3619   __ bind(&left);
3620   __ JumpIfSmi(a1, &left_smi);
3621   __ CheckMap(a1, a2, Heap::kHeapNumberMapRootIndex, &maybe_undefined2,
3622               DONT_DO_SMI_CHECK);
3623   __ Subu(a2, a1, Operand(kHeapObjectTag));
3624   __ ldc1(f0, MemOperand(a2, HeapNumber::kValueOffset));
3625   __ Branch(&done);
3626   __ bind(&left_smi);
3627   __ SmiUntag(a2, a1);  // Can't clobber a1 yet.
3628   single_scratch = f8;
3629   __ mtc1(a2, single_scratch);
3630   __ cvt_d_w(f0, single_scratch);
3631
3632   __ bind(&done);
3633
3634   // Return a result of -1, 0, or 1, or use CompareStub for NaNs.
3635   Label fpu_eq, fpu_lt;
3636   // Test if equal, and also handle the unordered/NaN case.
3637   __ BranchF(&fpu_eq, &unordered, eq, f0, f2);
3638
3639   // Test if less (unordered case is already handled).
3640   __ BranchF(&fpu_lt, NULL, lt, f0, f2);
3641
3642   // Otherwise it's greater, so just fall thru, and return.
3643   DCHECK(is_int16(GREATER) && is_int16(EQUAL) && is_int16(LESS));
3644   __ Ret(USE_DELAY_SLOT);
3645   __ li(v0, Operand(GREATER));
3646
3647   __ bind(&fpu_eq);
3648   __ Ret(USE_DELAY_SLOT);
3649   __ li(v0, Operand(EQUAL));
3650
3651   __ bind(&fpu_lt);
3652   __ Ret(USE_DELAY_SLOT);
3653   __ li(v0, Operand(LESS));
3654
3655   __ bind(&unordered);
3656   __ bind(&generic_stub);
3657   CompareICStub stub(isolate(), op(), strength(), CompareICState::GENERIC,
3658                      CompareICState::GENERIC, CompareICState::GENERIC);
3659   __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET);
3660
3661   __ bind(&maybe_undefined1);
3662   if (Token::IsOrderedRelationalCompareOp(op())) {
3663     __ LoadRoot(at, Heap::kUndefinedValueRootIndex);
3664     __ Branch(&miss, ne, a0, Operand(at));
3665     __ JumpIfSmi(a1, &unordered);
3666     __ GetObjectType(a1, a2, a2);
3667     __ Branch(&maybe_undefined2, ne, a2, Operand(HEAP_NUMBER_TYPE));
3668     __ jmp(&unordered);
3669   }
3670
3671   __ bind(&maybe_undefined2);
3672   if (Token::IsOrderedRelationalCompareOp(op())) {
3673     __ LoadRoot(at, Heap::kUndefinedValueRootIndex);
3674     __ Branch(&unordered, eq, a1, Operand(at));
3675   }
3676
3677   __ bind(&miss);
3678   GenerateMiss(masm);
3679 }
3680
3681
3682 void CompareICStub::GenerateInternalizedStrings(MacroAssembler* masm) {
3683   DCHECK(state() == CompareICState::INTERNALIZED_STRING);
3684   Label miss;
3685
3686   // Registers containing left and right operands respectively.
3687   Register left = a1;
3688   Register right = a0;
3689   Register tmp1 = a2;
3690   Register tmp2 = a3;
3691
3692   // Check that both operands are heap objects.
3693   __ JumpIfEitherSmi(left, right, &miss);
3694
3695   // Check that both operands are internalized strings.
3696   __ lw(tmp1, FieldMemOperand(left, HeapObject::kMapOffset));
3697   __ lw(tmp2, FieldMemOperand(right, HeapObject::kMapOffset));
3698   __ lbu(tmp1, FieldMemOperand(tmp1, Map::kInstanceTypeOffset));
3699   __ lbu(tmp2, FieldMemOperand(tmp2, Map::kInstanceTypeOffset));
3700   STATIC_ASSERT(kInternalizedTag == 0 && kStringTag == 0);
3701   __ Or(tmp1, tmp1, Operand(tmp2));
3702   __ And(at, tmp1, Operand(kIsNotStringMask | kIsNotInternalizedMask));
3703   __ Branch(&miss, ne, at, Operand(zero_reg));
3704
3705   // Make sure a0 is non-zero. At this point input operands are
3706   // guaranteed to be non-zero.
3707   DCHECK(right.is(a0));
3708   STATIC_ASSERT(EQUAL == 0);
3709   STATIC_ASSERT(kSmiTag == 0);
3710   __ mov(v0, right);
3711   // Internalized strings are compared by identity.
3712   __ Ret(ne, left, Operand(right));
3713   DCHECK(is_int16(EQUAL));
3714   __ Ret(USE_DELAY_SLOT);
3715   __ li(v0, Operand(Smi::FromInt(EQUAL)));
3716
3717   __ bind(&miss);
3718   GenerateMiss(masm);
3719 }
3720
3721
3722 void CompareICStub::GenerateUniqueNames(MacroAssembler* masm) {
3723   DCHECK(state() == CompareICState::UNIQUE_NAME);
3724   DCHECK(GetCondition() == eq);
3725   Label miss;
3726
3727   // Registers containing left and right operands respectively.
3728   Register left = a1;
3729   Register right = a0;
3730   Register tmp1 = a2;
3731   Register tmp2 = a3;
3732
3733   // Check that both operands are heap objects.
3734   __ JumpIfEitherSmi(left, right, &miss);
3735
3736   // Check that both operands are unique names. This leaves the instance
3737   // types loaded in tmp1 and tmp2.
3738   __ lw(tmp1, FieldMemOperand(left, HeapObject::kMapOffset));
3739   __ lw(tmp2, FieldMemOperand(right, HeapObject::kMapOffset));
3740   __ lbu(tmp1, FieldMemOperand(tmp1, Map::kInstanceTypeOffset));
3741   __ lbu(tmp2, FieldMemOperand(tmp2, Map::kInstanceTypeOffset));
3742
3743   __ JumpIfNotUniqueNameInstanceType(tmp1, &miss);
3744   __ JumpIfNotUniqueNameInstanceType(tmp2, &miss);
3745
3746   // Use a0 as result
3747   __ mov(v0, a0);
3748
3749   // Unique names are compared by identity.
3750   Label done;
3751   __ Branch(&done, ne, left, Operand(right));
3752   // Make sure a0 is non-zero. At this point input operands are
3753   // guaranteed to be non-zero.
3754   DCHECK(right.is(a0));
3755   STATIC_ASSERT(EQUAL == 0);
3756   STATIC_ASSERT(kSmiTag == 0);
3757   __ li(v0, Operand(Smi::FromInt(EQUAL)));
3758   __ bind(&done);
3759   __ Ret();
3760
3761   __ bind(&miss);
3762   GenerateMiss(masm);
3763 }
3764
3765
3766 void CompareICStub::GenerateStrings(MacroAssembler* masm) {
3767   DCHECK(state() == CompareICState::STRING);
3768   Label miss;
3769
3770   bool equality = Token::IsEqualityOp(op());
3771
3772   // Registers containing left and right operands respectively.
3773   Register left = a1;
3774   Register right = a0;
3775   Register tmp1 = a2;
3776   Register tmp2 = a3;
3777   Register tmp3 = t0;
3778   Register tmp4 = t1;
3779   Register tmp5 = t2;
3780
3781   // Check that both operands are heap objects.
3782   __ JumpIfEitherSmi(left, right, &miss);
3783
3784   // Check that both operands are strings. This leaves the instance
3785   // types loaded in tmp1 and tmp2.
3786   __ lw(tmp1, FieldMemOperand(left, HeapObject::kMapOffset));
3787   __ lw(tmp2, FieldMemOperand(right, HeapObject::kMapOffset));
3788   __ lbu(tmp1, FieldMemOperand(tmp1, Map::kInstanceTypeOffset));
3789   __ lbu(tmp2, FieldMemOperand(tmp2, Map::kInstanceTypeOffset));
3790   STATIC_ASSERT(kNotStringTag != 0);
3791   __ Or(tmp3, tmp1, tmp2);
3792   __ And(tmp5, tmp3, Operand(kIsNotStringMask));
3793   __ Branch(&miss, ne, tmp5, Operand(zero_reg));
3794
3795   // Fast check for identical strings.
3796   Label left_ne_right;
3797   STATIC_ASSERT(EQUAL == 0);
3798   STATIC_ASSERT(kSmiTag == 0);
3799   __ Branch(&left_ne_right, ne, left, Operand(right));
3800   __ Ret(USE_DELAY_SLOT);
3801   __ mov(v0, zero_reg);  // In the delay slot.
3802   __ bind(&left_ne_right);
3803
3804   // Handle not identical strings.
3805
3806   // Check that both strings are internalized strings. If they are, we're done
3807   // because we already know they are not identical. We know they are both
3808   // strings.
3809   if (equality) {
3810     DCHECK(GetCondition() == eq);
3811     STATIC_ASSERT(kInternalizedTag == 0);
3812     __ Or(tmp3, tmp1, Operand(tmp2));
3813     __ And(tmp5, tmp3, Operand(kIsNotInternalizedMask));
3814     Label is_symbol;
3815     __ Branch(&is_symbol, ne, tmp5, Operand(zero_reg));
3816     // Make sure a0 is non-zero. At this point input operands are
3817     // guaranteed to be non-zero.
3818     DCHECK(right.is(a0));
3819     __ Ret(USE_DELAY_SLOT);
3820     __ mov(v0, a0);  // In the delay slot.
3821     __ bind(&is_symbol);
3822   }
3823
3824   // Check that both strings are sequential one-byte.
3825   Label runtime;
3826   __ JumpIfBothInstanceTypesAreNotSequentialOneByte(tmp1, tmp2, tmp3, tmp4,
3827                                                     &runtime);
3828
3829   // Compare flat one-byte strings. Returns when done.
3830   if (equality) {
3831     StringHelper::GenerateFlatOneByteStringEquals(masm, left, right, tmp1, tmp2,
3832                                                   tmp3);
3833   } else {
3834     StringHelper::GenerateCompareFlatOneByteStrings(masm, left, right, tmp1,
3835                                                     tmp2, tmp3, tmp4);
3836   }
3837
3838   // Handle more complex cases in runtime.
3839   __ bind(&runtime);
3840   __ Push(left, right);
3841   if (equality) {
3842     __ TailCallRuntime(Runtime::kStringEquals, 2, 1);
3843   } else {
3844     __ TailCallRuntime(Runtime::kStringCompare, 2, 1);
3845   }
3846
3847   __ bind(&miss);
3848   GenerateMiss(masm);
3849 }
3850
3851
3852 void CompareICStub::GenerateObjects(MacroAssembler* masm) {
3853   DCHECK(state() == CompareICState::OBJECT);
3854   Label miss;
3855   __ And(a2, a1, Operand(a0));
3856   __ JumpIfSmi(a2, &miss);
3857
3858   __ GetObjectType(a0, a2, a2);
3859   __ Branch(&miss, ne, a2, Operand(JS_OBJECT_TYPE));
3860   __ GetObjectType(a1, a2, a2);
3861   __ Branch(&miss, ne, a2, Operand(JS_OBJECT_TYPE));
3862
3863   DCHECK(GetCondition() == eq);
3864   __ Ret(USE_DELAY_SLOT);
3865   __ subu(v0, a0, a1);
3866
3867   __ bind(&miss);
3868   GenerateMiss(masm);
3869 }
3870
3871
3872 void CompareICStub::GenerateKnownObjects(MacroAssembler* masm) {
3873   Label miss;
3874   Handle<WeakCell> cell = Map::WeakCellForMap(known_map_);
3875   __ And(a2, a1, a0);
3876   __ JumpIfSmi(a2, &miss);
3877   __ GetWeakValue(t0, cell);
3878   __ lw(a2, FieldMemOperand(a0, HeapObject::kMapOffset));
3879   __ lw(a3, FieldMemOperand(a1, HeapObject::kMapOffset));
3880   __ Branch(&miss, ne, a2, Operand(t0));
3881   __ Branch(&miss, ne, a3, Operand(t0));
3882
3883   __ Ret(USE_DELAY_SLOT);
3884   __ subu(v0, a0, a1);
3885
3886   __ bind(&miss);
3887   GenerateMiss(masm);
3888 }
3889
3890
3891 void CompareICStub::GenerateMiss(MacroAssembler* masm) {
3892   {
3893     // Call the runtime system in a fresh internal frame.
3894     FrameScope scope(masm, StackFrame::INTERNAL);
3895     __ Push(a1, a0);
3896     __ Push(ra, a1, a0);
3897     __ li(t0, Operand(Smi::FromInt(op())));
3898     __ addiu(sp, sp, -kPointerSize);
3899     __ CallRuntime(Runtime::kCompareIC_Miss, 3, kDontSaveFPRegs,
3900                    USE_DELAY_SLOT);
3901     __ sw(t0, MemOperand(sp));  // In the delay slot.
3902     // Compute the entry point of the rewritten stub.
3903     __ Addu(a2, v0, Operand(Code::kHeaderSize - kHeapObjectTag));
3904     // Restore registers.
3905     __ Pop(a1, a0, ra);
3906   }
3907   __ Jump(a2);
3908 }
3909
3910
3911 void DirectCEntryStub::Generate(MacroAssembler* masm) {
3912   // Make place for arguments to fit C calling convention. Most of the callers
3913   // of DirectCEntryStub::GenerateCall are using EnterExitFrame/LeaveExitFrame
3914   // so they handle stack restoring and we don't have to do that here.
3915   // Any caller of DirectCEntryStub::GenerateCall must take care of dropping
3916   // kCArgsSlotsSize stack space after the call.
3917   __ Subu(sp, sp, Operand(kCArgsSlotsSize));
3918   // Place the return address on the stack, making the call
3919   // GC safe. The RegExp backend also relies on this.
3920   __ sw(ra, MemOperand(sp, kCArgsSlotsSize));
3921   __ Call(t9);  // Call the C++ function.
3922   __ lw(t9, MemOperand(sp, kCArgsSlotsSize));
3923
3924   if (FLAG_debug_code && FLAG_enable_slow_asserts) {
3925     // In case of an error the return address may point to a memory area
3926     // filled with kZapValue by the GC.
3927     // Dereference the address and check for this.
3928     __ lw(t0, MemOperand(t9));
3929     __ Assert(ne, kReceivedInvalidReturnAddress, t0,
3930         Operand(reinterpret_cast<uint32_t>(kZapValue)));
3931   }
3932   __ Jump(t9);
3933 }
3934
3935
3936 void DirectCEntryStub::GenerateCall(MacroAssembler* masm,
3937                                     Register target) {
3938   intptr_t loc =
3939       reinterpret_cast<intptr_t>(GetCode().location());
3940   __ Move(t9, target);
3941   __ li(at, Operand(loc, RelocInfo::CODE_TARGET), CONSTANT_SIZE);
3942   __ Call(at);
3943 }
3944
3945
3946 void NameDictionaryLookupStub::GenerateNegativeLookup(MacroAssembler* masm,
3947                                                       Label* miss,
3948                                                       Label* done,
3949                                                       Register receiver,
3950                                                       Register properties,
3951                                                       Handle<Name> name,
3952                                                       Register scratch0) {
3953   DCHECK(name->IsUniqueName());
3954   // If names of slots in range from 1 to kProbes - 1 for the hash value are
3955   // not equal to the name and kProbes-th slot is not used (its name is the
3956   // undefined value), it guarantees the hash table doesn't contain the
3957   // property. It's true even if some slots represent deleted properties
3958   // (their names are the hole value).
3959   for (int i = 0; i < kInlinedProbes; i++) {
3960     // scratch0 points to properties hash.
3961     // Compute the masked index: (hash + i + i * i) & mask.
3962     Register index = scratch0;
3963     // Capacity is smi 2^n.
3964     __ lw(index, FieldMemOperand(properties, kCapacityOffset));
3965     __ Subu(index, index, Operand(1));
3966     __ And(index, index, Operand(
3967         Smi::FromInt(name->Hash() + NameDictionary::GetProbeOffset(i))));
3968
3969     // Scale the index by multiplying by the entry size.
3970     STATIC_ASSERT(NameDictionary::kEntrySize == 3);
3971     __ sll(at, index, 1);
3972     __ Addu(index, index, at);
3973
3974     Register entity_name = scratch0;
3975     // Having undefined at this place means the name is not contained.
3976     STATIC_ASSERT(kSmiTagSize == 1);
3977     Register tmp = properties;
3978     __ sll(scratch0, index, 1);
3979     __ Addu(tmp, properties, scratch0);
3980     __ lw(entity_name, FieldMemOperand(tmp, kElementsStartOffset));
3981
3982     DCHECK(!tmp.is(entity_name));
3983     __ LoadRoot(tmp, Heap::kUndefinedValueRootIndex);
3984     __ Branch(done, eq, entity_name, Operand(tmp));
3985
3986     // Load the hole ready for use below:
3987     __ LoadRoot(tmp, Heap::kTheHoleValueRootIndex);
3988
3989     // Stop if found the property.
3990     __ Branch(miss, eq, entity_name, Operand(Handle<Name>(name)));
3991
3992     Label good;
3993     __ Branch(&good, eq, entity_name, Operand(tmp));
3994
3995     // Check if the entry name is not a unique name.
3996     __ lw(entity_name, FieldMemOperand(entity_name, HeapObject::kMapOffset));
3997     __ lbu(entity_name,
3998            FieldMemOperand(entity_name, Map::kInstanceTypeOffset));
3999     __ JumpIfNotUniqueNameInstanceType(entity_name, miss);
4000     __ bind(&good);
4001
4002     // Restore the properties.
4003     __ lw(properties,
4004           FieldMemOperand(receiver, JSObject::kPropertiesOffset));
4005   }
4006
4007   const int spill_mask =
4008       (ra.bit() | t2.bit() | t1.bit() | t0.bit() | a3.bit() |
4009        a2.bit() | a1.bit() | a0.bit() | v0.bit());
4010
4011   __ MultiPush(spill_mask);
4012   __ lw(a0, FieldMemOperand(receiver, JSObject::kPropertiesOffset));
4013   __ li(a1, Operand(Handle<Name>(name)));
4014   NameDictionaryLookupStub stub(masm->isolate(), NEGATIVE_LOOKUP);
4015   __ CallStub(&stub);
4016   __ mov(at, v0);
4017   __ MultiPop(spill_mask);
4018
4019   __ Branch(done, eq, at, Operand(zero_reg));
4020   __ Branch(miss, ne, at, Operand(zero_reg));
4021 }
4022
4023
4024 // Probe the name dictionary in the |elements| register. Jump to the
4025 // |done| label if a property with the given name is found. Jump to
4026 // the |miss| label otherwise.
4027 // If lookup was successful |scratch2| will be equal to elements + 4 * index.
4028 void NameDictionaryLookupStub::GeneratePositiveLookup(MacroAssembler* masm,
4029                                                       Label* miss,
4030                                                       Label* done,
4031                                                       Register elements,
4032                                                       Register name,
4033                                                       Register scratch1,
4034                                                       Register scratch2) {
4035   DCHECK(!elements.is(scratch1));
4036   DCHECK(!elements.is(scratch2));
4037   DCHECK(!name.is(scratch1));
4038   DCHECK(!name.is(scratch2));
4039
4040   __ AssertName(name);
4041
4042   // Compute the capacity mask.
4043   __ lw(scratch1, FieldMemOperand(elements, kCapacityOffset));
4044   __ sra(scratch1, scratch1, kSmiTagSize);  // convert smi to int
4045   __ Subu(scratch1, scratch1, Operand(1));
4046
4047   // Generate an unrolled loop that performs a few probes before
4048   // giving up. Measurements done on Gmail indicate that 2 probes
4049   // cover ~93% of loads from dictionaries.
4050   for (int i = 0; i < kInlinedProbes; i++) {
4051     // Compute the masked index: (hash + i + i * i) & mask.
4052     __ lw(scratch2, FieldMemOperand(name, Name::kHashFieldOffset));
4053     if (i > 0) {
4054       // Add the probe offset (i + i * i) left shifted to avoid right shifting
4055       // the hash in a separate instruction. The value hash + i + i * i is right
4056       // shifted in the following and instruction.
4057       DCHECK(NameDictionary::GetProbeOffset(i) <
4058              1 << (32 - Name::kHashFieldOffset));
4059       __ Addu(scratch2, scratch2, Operand(
4060           NameDictionary::GetProbeOffset(i) << Name::kHashShift));
4061     }
4062     __ srl(scratch2, scratch2, Name::kHashShift);
4063     __ And(scratch2, scratch1, scratch2);
4064
4065     // Scale the index by multiplying by the element size.
4066     STATIC_ASSERT(NameDictionary::kEntrySize == 3);
4067     // scratch2 = scratch2 * 3.
4068
4069     __ sll(at, scratch2, 1);
4070     __ Addu(scratch2, scratch2, at);
4071
4072     // Check if the key is identical to the name.
4073     __ sll(at, scratch2, 2);
4074     __ Addu(scratch2, elements, at);
4075     __ lw(at, FieldMemOperand(scratch2, kElementsStartOffset));
4076     __ Branch(done, eq, name, Operand(at));
4077   }
4078
4079   const int spill_mask =
4080       (ra.bit() | t2.bit() | t1.bit() | t0.bit() |
4081        a3.bit() | a2.bit() | a1.bit() | a0.bit() | v0.bit()) &
4082       ~(scratch1.bit() | scratch2.bit());
4083
4084   __ MultiPush(spill_mask);
4085   if (name.is(a0)) {
4086     DCHECK(!elements.is(a1));
4087     __ Move(a1, name);
4088     __ Move(a0, elements);
4089   } else {
4090     __ Move(a0, elements);
4091     __ Move(a1, name);
4092   }
4093   NameDictionaryLookupStub stub(masm->isolate(), POSITIVE_LOOKUP);
4094   __ CallStub(&stub);
4095   __ mov(scratch2, a2);
4096   __ mov(at, v0);
4097   __ MultiPop(spill_mask);
4098
4099   __ Branch(done, ne, at, Operand(zero_reg));
4100   __ Branch(miss, eq, at, Operand(zero_reg));
4101 }
4102
4103
4104 void NameDictionaryLookupStub::Generate(MacroAssembler* masm) {
4105   // This stub overrides SometimesSetsUpAFrame() to return false.  That means
4106   // we cannot call anything that could cause a GC from this stub.
4107   // Registers:
4108   //  result: NameDictionary to probe
4109   //  a1: key
4110   //  dictionary: NameDictionary to probe.
4111   //  index: will hold an index of entry if lookup is successful.
4112   //         might alias with result_.
4113   // Returns:
4114   //  result_ is zero if lookup failed, non zero otherwise.
4115
4116   Register result = v0;
4117   Register dictionary = a0;
4118   Register key = a1;
4119   Register index = a2;
4120   Register mask = a3;
4121   Register hash = t0;
4122   Register undefined = t1;
4123   Register entry_key = t2;
4124
4125   Label in_dictionary, maybe_in_dictionary, not_in_dictionary;
4126
4127   __ lw(mask, FieldMemOperand(dictionary, kCapacityOffset));
4128   __ sra(mask, mask, kSmiTagSize);
4129   __ Subu(mask, mask, Operand(1));
4130
4131   __ lw(hash, FieldMemOperand(key, Name::kHashFieldOffset));
4132
4133   __ LoadRoot(undefined, Heap::kUndefinedValueRootIndex);
4134
4135   for (int i = kInlinedProbes; i < kTotalProbes; i++) {
4136     // Compute the masked index: (hash + i + i * i) & mask.
4137     // Capacity is smi 2^n.
4138     if (i > 0) {
4139       // Add the probe offset (i + i * i) left shifted to avoid right shifting
4140       // the hash in a separate instruction. The value hash + i + i * i is right
4141       // shifted in the following and instruction.
4142       DCHECK(NameDictionary::GetProbeOffset(i) <
4143              1 << (32 - Name::kHashFieldOffset));
4144       __ Addu(index, hash, Operand(
4145           NameDictionary::GetProbeOffset(i) << Name::kHashShift));
4146     } else {
4147       __ mov(index, hash);
4148     }
4149     __ srl(index, index, Name::kHashShift);
4150     __ And(index, mask, index);
4151
4152     // Scale the index by multiplying by the entry size.
4153     STATIC_ASSERT(NameDictionary::kEntrySize == 3);
4154     // index *= 3.
4155     __ mov(at, index);
4156     __ sll(index, index, 1);
4157     __ Addu(index, index, at);
4158
4159
4160     STATIC_ASSERT(kSmiTagSize == 1);
4161     __ sll(index, index, 2);
4162     __ Addu(index, index, dictionary);
4163     __ lw(entry_key, FieldMemOperand(index, kElementsStartOffset));
4164
4165     // Having undefined at this place means the name is not contained.
4166     __ Branch(&not_in_dictionary, eq, entry_key, Operand(undefined));
4167
4168     // Stop if found the property.
4169     __ Branch(&in_dictionary, eq, entry_key, Operand(key));
4170
4171     if (i != kTotalProbes - 1 && mode() == NEGATIVE_LOOKUP) {
4172       // Check if the entry name is not a unique name.
4173       __ lw(entry_key, FieldMemOperand(entry_key, HeapObject::kMapOffset));
4174       __ lbu(entry_key,
4175              FieldMemOperand(entry_key, Map::kInstanceTypeOffset));
4176       __ JumpIfNotUniqueNameInstanceType(entry_key, &maybe_in_dictionary);
4177     }
4178   }
4179
4180   __ bind(&maybe_in_dictionary);
4181   // If we are doing negative lookup then probing failure should be
4182   // treated as a lookup success. For positive lookup probing failure
4183   // should be treated as lookup failure.
4184   if (mode() == POSITIVE_LOOKUP) {
4185     __ Ret(USE_DELAY_SLOT);
4186     __ mov(result, zero_reg);
4187   }
4188
4189   __ bind(&in_dictionary);
4190   __ Ret(USE_DELAY_SLOT);
4191   __ li(result, 1);
4192
4193   __ bind(&not_in_dictionary);
4194   __ Ret(USE_DELAY_SLOT);
4195   __ mov(result, zero_reg);
4196 }
4197
4198
4199 void StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(
4200     Isolate* isolate) {
4201   StoreBufferOverflowStub stub1(isolate, kDontSaveFPRegs);
4202   stub1.GetCode();
4203   // Hydrogen code stubs need stub2 at snapshot time.
4204   StoreBufferOverflowStub stub2(isolate, kSaveFPRegs);
4205   stub2.GetCode();
4206 }
4207
4208
4209 // Takes the input in 3 registers: address_ value_ and object_.  A pointer to
4210 // the value has just been written into the object, now this stub makes sure
4211 // we keep the GC informed.  The word in the object where the value has been
4212 // written is in the address register.
4213 void RecordWriteStub::Generate(MacroAssembler* masm) {
4214   Label skip_to_incremental_noncompacting;
4215   Label skip_to_incremental_compacting;
4216
4217   // The first two branch+nop instructions are generated with labels so as to
4218   // get the offset fixed up correctly by the bind(Label*) call.  We patch it
4219   // back and forth between a "bne zero_reg, zero_reg, ..." (a nop in this
4220   // position) and the "beq zero_reg, zero_reg, ..." when we start and stop
4221   // incremental heap marking.
4222   // See RecordWriteStub::Patch for details.
4223   __ beq(zero_reg, zero_reg, &skip_to_incremental_noncompacting);
4224   __ nop();
4225   __ beq(zero_reg, zero_reg, &skip_to_incremental_compacting);
4226   __ nop();
4227
4228   if (remembered_set_action() == EMIT_REMEMBERED_SET) {
4229     __ RememberedSetHelper(object(),
4230                            address(),
4231                            value(),
4232                            save_fp_regs_mode(),
4233                            MacroAssembler::kReturnAtEnd);
4234   }
4235   __ Ret();
4236
4237   __ bind(&skip_to_incremental_noncompacting);
4238   GenerateIncremental(masm, INCREMENTAL);
4239
4240   __ bind(&skip_to_incremental_compacting);
4241   GenerateIncremental(masm, INCREMENTAL_COMPACTION);
4242
4243   // Initial mode of the stub is expected to be STORE_BUFFER_ONLY.
4244   // Will be checked in IncrementalMarking::ActivateGeneratedStub.
4245
4246   PatchBranchIntoNop(masm, 0);
4247   PatchBranchIntoNop(masm, 2 * Assembler::kInstrSize);
4248 }
4249
4250
4251 void RecordWriteStub::GenerateIncremental(MacroAssembler* masm, Mode mode) {
4252   regs_.Save(masm);
4253
4254   if (remembered_set_action() == EMIT_REMEMBERED_SET) {
4255     Label dont_need_remembered_set;
4256
4257     __ lw(regs_.scratch0(), MemOperand(regs_.address(), 0));
4258     __ JumpIfNotInNewSpace(regs_.scratch0(),  // Value.
4259                            regs_.scratch0(),
4260                            &dont_need_remembered_set);
4261
4262     __ CheckPageFlag(regs_.object(),
4263                      regs_.scratch0(),
4264                      1 << MemoryChunk::SCAN_ON_SCAVENGE,
4265                      ne,
4266                      &dont_need_remembered_set);
4267
4268     // First notify the incremental marker if necessary, then update the
4269     // remembered set.
4270     CheckNeedsToInformIncrementalMarker(
4271         masm, kUpdateRememberedSetOnNoNeedToInformIncrementalMarker, mode);
4272     InformIncrementalMarker(masm);
4273     regs_.Restore(masm);
4274     __ RememberedSetHelper(object(),
4275                            address(),
4276                            value(),
4277                            save_fp_regs_mode(),
4278                            MacroAssembler::kReturnAtEnd);
4279
4280     __ bind(&dont_need_remembered_set);
4281   }
4282
4283   CheckNeedsToInformIncrementalMarker(
4284       masm, kReturnOnNoNeedToInformIncrementalMarker, mode);
4285   InformIncrementalMarker(masm);
4286   regs_.Restore(masm);
4287   __ Ret();
4288 }
4289
4290
4291 void RecordWriteStub::InformIncrementalMarker(MacroAssembler* masm) {
4292   regs_.SaveCallerSaveRegisters(masm, save_fp_regs_mode());
4293   int argument_count = 3;
4294   __ PrepareCallCFunction(argument_count, regs_.scratch0());
4295   Register address =
4296       a0.is(regs_.address()) ? regs_.scratch0() : regs_.address();
4297   DCHECK(!address.is(regs_.object()));
4298   DCHECK(!address.is(a0));
4299   __ Move(address, regs_.address());
4300   __ Move(a0, regs_.object());
4301   __ Move(a1, address);
4302   __ li(a2, Operand(ExternalReference::isolate_address(isolate())));
4303
4304   AllowExternalCallThatCantCauseGC scope(masm);
4305   __ CallCFunction(
4306       ExternalReference::incremental_marking_record_write_function(isolate()),
4307       argument_count);
4308   regs_.RestoreCallerSaveRegisters(masm, save_fp_regs_mode());
4309 }
4310
4311
4312 void RecordWriteStub::CheckNeedsToInformIncrementalMarker(
4313     MacroAssembler* masm,
4314     OnNoNeedToInformIncrementalMarker on_no_need,
4315     Mode mode) {
4316   Label on_black;
4317   Label need_incremental;
4318   Label need_incremental_pop_scratch;
4319
4320   __ And(regs_.scratch0(), regs_.object(), Operand(~Page::kPageAlignmentMask));
4321   __ lw(regs_.scratch1(),
4322         MemOperand(regs_.scratch0(),
4323                    MemoryChunk::kWriteBarrierCounterOffset));
4324   __ Subu(regs_.scratch1(), regs_.scratch1(), Operand(1));
4325   __ sw(regs_.scratch1(),
4326          MemOperand(regs_.scratch0(),
4327                     MemoryChunk::kWriteBarrierCounterOffset));
4328   __ Branch(&need_incremental, lt, regs_.scratch1(), Operand(zero_reg));
4329
4330   // Let's look at the color of the object:  If it is not black we don't have
4331   // to inform the incremental marker.
4332   __ JumpIfBlack(regs_.object(), regs_.scratch0(), regs_.scratch1(), &on_black);
4333
4334   regs_.Restore(masm);
4335   if (on_no_need == kUpdateRememberedSetOnNoNeedToInformIncrementalMarker) {
4336     __ RememberedSetHelper(object(),
4337                            address(),
4338                            value(),
4339                            save_fp_regs_mode(),
4340                            MacroAssembler::kReturnAtEnd);
4341   } else {
4342     __ Ret();
4343   }
4344
4345   __ bind(&on_black);
4346
4347   // Get the value from the slot.
4348   __ lw(regs_.scratch0(), MemOperand(regs_.address(), 0));
4349
4350   if (mode == INCREMENTAL_COMPACTION) {
4351     Label ensure_not_white;
4352
4353     __ CheckPageFlag(regs_.scratch0(),  // Contains value.
4354                      regs_.scratch1(),  // Scratch.
4355                      MemoryChunk::kEvacuationCandidateMask,
4356                      eq,
4357                      &ensure_not_white);
4358
4359     __ CheckPageFlag(regs_.object(),
4360                      regs_.scratch1(),  // Scratch.
4361                      MemoryChunk::kSkipEvacuationSlotsRecordingMask,
4362                      eq,
4363                      &need_incremental);
4364
4365     __ bind(&ensure_not_white);
4366   }
4367
4368   // We need extra registers for this, so we push the object and the address
4369   // register temporarily.
4370   __ Push(regs_.object(), regs_.address());
4371   __ EnsureNotWhite(regs_.scratch0(),  // The value.
4372                     regs_.scratch1(),  // Scratch.
4373                     regs_.object(),  // Scratch.
4374                     regs_.address(),  // Scratch.
4375                     &need_incremental_pop_scratch);
4376   __ Pop(regs_.object(), regs_.address());
4377
4378   regs_.Restore(masm);
4379   if (on_no_need == kUpdateRememberedSetOnNoNeedToInformIncrementalMarker) {
4380     __ RememberedSetHelper(object(),
4381                            address(),
4382                            value(),
4383                            save_fp_regs_mode(),
4384                            MacroAssembler::kReturnAtEnd);
4385   } else {
4386     __ Ret();
4387   }
4388
4389   __ bind(&need_incremental_pop_scratch);
4390   __ Pop(regs_.object(), regs_.address());
4391
4392   __ bind(&need_incremental);
4393
4394   // Fall through when we need to inform the incremental marker.
4395 }
4396
4397
4398 void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) {
4399   // ----------- S t a t e -------------
4400   //  -- a0    : element value to store
4401   //  -- a3    : element index as smi
4402   //  -- sp[0] : array literal index in function as smi
4403   //  -- sp[4] : array literal
4404   // clobbers a1, a2, t0
4405   // -----------------------------------
4406
4407   Label element_done;
4408   Label double_elements;
4409   Label smi_element;
4410   Label slow_elements;
4411   Label fast_elements;
4412
4413   // Get array literal index, array literal and its map.
4414   __ lw(t0, MemOperand(sp, 0 * kPointerSize));
4415   __ lw(a1, MemOperand(sp, 1 * kPointerSize));
4416   __ lw(a2, FieldMemOperand(a1, JSObject::kMapOffset));
4417
4418   __ CheckFastElements(a2, t1, &double_elements);
4419   // Check for FAST_*_SMI_ELEMENTS or FAST_*_ELEMENTS elements
4420   __ JumpIfSmi(a0, &smi_element);
4421   __ CheckFastSmiElements(a2, t1, &fast_elements);
4422
4423   // Store into the array literal requires a elements transition. Call into
4424   // the runtime.
4425   __ bind(&slow_elements);
4426   // call.
4427   __ Push(a1, a3, a0);
4428   __ lw(t1, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
4429   __ lw(t1, FieldMemOperand(t1, JSFunction::kLiteralsOffset));
4430   __ Push(t1, t0);
4431   __ TailCallRuntime(Runtime::kStoreArrayLiteralElement, 5, 1);
4432
4433   // Array literal has ElementsKind of FAST_*_ELEMENTS and value is an object.
4434   __ bind(&fast_elements);
4435   __ lw(t1, FieldMemOperand(a1, JSObject::kElementsOffset));
4436   __ sll(t2, a3, kPointerSizeLog2 - kSmiTagSize);
4437   __ Addu(t2, t1, t2);
4438   __ Addu(t2, t2, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
4439   __ sw(a0, MemOperand(t2, 0));
4440   // Update the write barrier for the array store.
4441   __ RecordWrite(t1, t2, a0, kRAHasNotBeenSaved, kDontSaveFPRegs,
4442                  EMIT_REMEMBERED_SET, OMIT_SMI_CHECK);
4443   __ Ret(USE_DELAY_SLOT);
4444   __ mov(v0, a0);
4445
4446   // Array literal has ElementsKind of FAST_*_SMI_ELEMENTS or FAST_*_ELEMENTS,
4447   // and value is Smi.
4448   __ bind(&smi_element);
4449   __ lw(t1, FieldMemOperand(a1, JSObject::kElementsOffset));
4450   __ sll(t2, a3, kPointerSizeLog2 - kSmiTagSize);
4451   __ Addu(t2, t1, t2);
4452   __ sw(a0, FieldMemOperand(t2, FixedArray::kHeaderSize));
4453   __ Ret(USE_DELAY_SLOT);
4454   __ mov(v0, a0);
4455
4456   // Array literal has ElementsKind of FAST_*_DOUBLE_ELEMENTS.
4457   __ bind(&double_elements);
4458   __ lw(t1, FieldMemOperand(a1, JSObject::kElementsOffset));
4459   __ StoreNumberToDoubleElements(a0, a3, t1, t3, t5, a2, &slow_elements);
4460   __ Ret(USE_DELAY_SLOT);
4461   __ mov(v0, a0);
4462 }
4463
4464
4465 void StubFailureTrampolineStub::Generate(MacroAssembler* masm) {
4466   CEntryStub ces(isolate(), 1, kSaveFPRegs);
4467   __ Call(ces.GetCode(), RelocInfo::CODE_TARGET);
4468   int parameter_count_offset =
4469       StubFailureTrampolineFrame::kCallerStackParameterCountFrameOffset;
4470   __ lw(a1, MemOperand(fp, parameter_count_offset));
4471   if (function_mode() == JS_FUNCTION_STUB_MODE) {
4472     __ Addu(a1, a1, Operand(1));
4473   }
4474   masm->LeaveFrame(StackFrame::STUB_FAILURE_TRAMPOLINE);
4475   __ sll(a1, a1, kPointerSizeLog2);
4476   __ Ret(USE_DELAY_SLOT);
4477   __ Addu(sp, sp, a1);
4478 }
4479
4480
4481 void LoadICTrampolineStub::Generate(MacroAssembler* masm) {
4482   EmitLoadTypeFeedbackVector(masm, LoadWithVectorDescriptor::VectorRegister());
4483   LoadICStub stub(isolate(), state());
4484   stub.GenerateForTrampoline(masm);
4485 }
4486
4487
4488 void KeyedLoadICTrampolineStub::Generate(MacroAssembler* masm) {
4489   EmitLoadTypeFeedbackVector(masm, LoadWithVectorDescriptor::VectorRegister());
4490   KeyedLoadICStub stub(isolate(), state());
4491   stub.GenerateForTrampoline(masm);
4492 }
4493
4494
4495 void CallICTrampolineStub::Generate(MacroAssembler* masm) {
4496   EmitLoadTypeFeedbackVector(masm, a2);
4497   CallICStub stub(isolate(), state());
4498   __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET);
4499 }
4500
4501
4502 void CallIC_ArrayTrampolineStub::Generate(MacroAssembler* masm) {
4503   EmitLoadTypeFeedbackVector(masm, a2);
4504   CallIC_ArrayStub stub(isolate(), state());
4505   __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET);
4506 }
4507
4508
4509 void LoadICStub::Generate(MacroAssembler* masm) { GenerateImpl(masm, false); }
4510
4511
4512 void LoadICStub::GenerateForTrampoline(MacroAssembler* masm) {
4513   GenerateImpl(masm, true);
4514 }
4515
4516
4517 static void HandleArrayCases(MacroAssembler* masm, Register feedback,
4518                              Register receiver_map, Register scratch1,
4519                              Register scratch2, bool is_polymorphic,
4520                              Label* miss) {
4521   // feedback initially contains the feedback array
4522   Label next_loop, prepare_next;
4523   Label start_polymorphic;
4524
4525   Register cached_map = scratch1;
4526
4527   __ lw(cached_map,
4528         FieldMemOperand(feedback, FixedArray::OffsetOfElementAt(0)));
4529   __ lw(cached_map, FieldMemOperand(cached_map, WeakCell::kValueOffset));
4530   __ Branch(&start_polymorphic, ne, receiver_map, Operand(cached_map));
4531   // found, now call handler.
4532   Register handler = feedback;
4533   __ lw(handler, FieldMemOperand(feedback, FixedArray::OffsetOfElementAt(1)));
4534   __ Addu(t9, handler, Operand(Code::kHeaderSize - kHeapObjectTag));
4535   __ Jump(t9);
4536
4537
4538   Register length = scratch2;
4539   __ bind(&start_polymorphic);
4540   __ lw(length, FieldMemOperand(feedback, FixedArray::kLengthOffset));
4541   if (!is_polymorphic) {
4542     // If the IC could be monomorphic we have to make sure we don't go past the
4543     // end of the feedback array.
4544     __ Branch(miss, eq, length, Operand(Smi::FromInt(2)));
4545   }
4546
4547   Register too_far = length;
4548   Register pointer_reg = feedback;
4549
4550   // +-----+------+------+-----+-----+ ... ----+
4551   // | map | len  | wm0  | h0  | wm1 |      hN |
4552   // +-----+------+------+-----+-----+ ... ----+
4553   //                 0      1     2        len-1
4554   //                              ^              ^
4555   //                              |              |
4556   //                         pointer_reg      too_far
4557   //                         aka feedback     scratch2
4558   // also need receiver_map
4559   // use cached_map (scratch1) to look in the weak map values.
4560   __ sll(at, length, kPointerSizeLog2 - kSmiTagSize);
4561   __ Addu(too_far, feedback, Operand(at));
4562   __ Addu(too_far, too_far, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
4563   __ Addu(pointer_reg, feedback,
4564           Operand(FixedArray::OffsetOfElementAt(2) - kHeapObjectTag));
4565
4566   __ bind(&next_loop);
4567   __ lw(cached_map, MemOperand(pointer_reg));
4568   __ lw(cached_map, FieldMemOperand(cached_map, WeakCell::kValueOffset));
4569   __ Branch(&prepare_next, ne, receiver_map, Operand(cached_map));
4570   __ lw(handler, MemOperand(pointer_reg, kPointerSize));
4571   __ Addu(t9, handler, Operand(Code::kHeaderSize - kHeapObjectTag));
4572   __ Jump(t9);
4573
4574   __ bind(&prepare_next);
4575   __ Addu(pointer_reg, pointer_reg, Operand(kPointerSize * 2));
4576   __ Branch(&next_loop, lt, pointer_reg, Operand(too_far));
4577
4578   // We exhausted our array of map handler pairs.
4579   __ jmp(miss);
4580 }
4581
4582
4583 static void HandleMonomorphicCase(MacroAssembler* masm, Register receiver,
4584                                   Register receiver_map, Register feedback,
4585                                   Register vector, Register slot,
4586                                   Register scratch, Label* compare_map,
4587                                   Label* load_smi_map, Label* try_array) {
4588   __ JumpIfSmi(receiver, load_smi_map);
4589   __ lw(receiver_map, FieldMemOperand(receiver, HeapObject::kMapOffset));
4590   __ bind(compare_map);
4591   Register cached_map = scratch;
4592   // Move the weak map into the weak_cell register.
4593   __ lw(cached_map, FieldMemOperand(feedback, WeakCell::kValueOffset));
4594   __ Branch(try_array, ne, cached_map, Operand(receiver_map));
4595   Register handler = feedback;
4596
4597   __ sll(at, slot, kPointerSizeLog2 - kSmiTagSize);
4598   __ Addu(handler, vector, Operand(at));
4599   __ lw(handler,
4600         FieldMemOperand(handler, FixedArray::kHeaderSize + kPointerSize));
4601   __ Addu(t9, handler, Operand(Code::kHeaderSize - kHeapObjectTag));
4602   __ Jump(t9);
4603 }
4604
4605
4606 void LoadICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) {
4607   Register receiver = LoadWithVectorDescriptor::ReceiverRegister();  // a1
4608   Register name = LoadWithVectorDescriptor::NameRegister();          // a2
4609   Register vector = LoadWithVectorDescriptor::VectorRegister();      // a3
4610   Register slot = LoadWithVectorDescriptor::SlotRegister();          // a0
4611   Register feedback = t0;
4612   Register receiver_map = t1;
4613   Register scratch1 = t4;
4614
4615   __ sll(at, slot, kPointerSizeLog2 - kSmiTagSize);
4616   __ Addu(feedback, vector, Operand(at));
4617   __ lw(feedback, FieldMemOperand(feedback, FixedArray::kHeaderSize));
4618
4619   // Try to quickly handle the monomorphic case without knowing for sure
4620   // if we have a weak cell in feedback. We do know it's safe to look
4621   // at WeakCell::kValueOffset.
4622   Label try_array, load_smi_map, compare_map;
4623   Label not_array, miss;
4624   HandleMonomorphicCase(masm, receiver, receiver_map, feedback, vector, slot,
4625                         scratch1, &compare_map, &load_smi_map, &try_array);
4626
4627   // Is it a fixed array?
4628   __ bind(&try_array);
4629   __ lw(scratch1, FieldMemOperand(feedback, HeapObject::kMapOffset));
4630   __ LoadRoot(at, Heap::kFixedArrayMapRootIndex);
4631   __ Branch(&not_array, ne, at, Operand(scratch1));
4632   HandleArrayCases(masm, feedback, receiver_map, scratch1, t5, true, &miss);
4633
4634   __ bind(&not_array);
4635   __ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex);
4636   __ Branch(&miss, ne, at, Operand(feedback));
4637   Code::Flags code_flags = Code::RemoveTypeAndHolderFromFlags(
4638       Code::ComputeHandlerFlags(Code::LOAD_IC));
4639   masm->isolate()->stub_cache()->GenerateProbe(masm, Code::LOAD_IC, code_flags,
4640                                                receiver, name, feedback,
4641                                                receiver_map, scratch1, t5);
4642
4643   __ bind(&miss);
4644   LoadIC::GenerateMiss(masm);
4645
4646   __ bind(&load_smi_map);
4647   __ LoadRoot(receiver_map, Heap::kHeapNumberMapRootIndex);
4648   __ jmp(&compare_map);
4649 }
4650
4651
4652 void KeyedLoadICStub::Generate(MacroAssembler* masm) {
4653   GenerateImpl(masm, false);
4654 }
4655
4656
4657 void KeyedLoadICStub::GenerateForTrampoline(MacroAssembler* masm) {
4658   GenerateImpl(masm, true);
4659 }
4660
4661
4662 void KeyedLoadICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) {
4663   Register receiver = LoadWithVectorDescriptor::ReceiverRegister();  // a1
4664   Register key = LoadWithVectorDescriptor::NameRegister();           // a2
4665   Register vector = LoadWithVectorDescriptor::VectorRegister();      // a3
4666   Register slot = LoadWithVectorDescriptor::SlotRegister();          // a0
4667   Register feedback = t0;
4668   Register receiver_map = t1;
4669   Register scratch1 = t4;
4670
4671   __ sll(at, slot, kPointerSizeLog2 - kSmiTagSize);
4672   __ Addu(feedback, vector, Operand(at));
4673   __ lw(feedback, FieldMemOperand(feedback, FixedArray::kHeaderSize));
4674
4675   // Try to quickly handle the monomorphic case without knowing for sure
4676   // if we have a weak cell in feedback. We do know it's safe to look
4677   // at WeakCell::kValueOffset.
4678   Label try_array, load_smi_map, compare_map;
4679   Label not_array, miss;
4680   HandleMonomorphicCase(masm, receiver, receiver_map, feedback, vector, slot,
4681                         scratch1, &compare_map, &load_smi_map, &try_array);
4682
4683   __ bind(&try_array);
4684   // Is it a fixed array?
4685   __ lw(scratch1, FieldMemOperand(feedback, HeapObject::kMapOffset));
4686   __ LoadRoot(at, Heap::kFixedArrayMapRootIndex);
4687   __ Branch(&not_array, ne, at, Operand(scratch1));
4688   // We have a polymorphic element handler.
4689   __ JumpIfNotSmi(key, &miss);
4690
4691   Label polymorphic, try_poly_name;
4692   __ bind(&polymorphic);
4693   HandleArrayCases(masm, feedback, receiver_map, scratch1, t5, true, &miss);
4694
4695   __ bind(&not_array);
4696   // Is it generic?
4697   __ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex);
4698   __ Branch(&try_poly_name, ne, at, Operand(feedback));
4699   Handle<Code> megamorphic_stub =
4700       KeyedLoadIC::ChooseMegamorphicStub(masm->isolate(), GetExtraICState());
4701   __ Jump(megamorphic_stub, RelocInfo::CODE_TARGET);
4702
4703   __ bind(&try_poly_name);
4704   // We might have a name in feedback, and a fixed array in the next slot.
4705   __ Branch(&miss, ne, key, Operand(feedback));
4706   // If the name comparison succeeded, we know we have a fixed array with
4707   // at least one map/handler pair.
4708   __ sll(at, slot, kPointerSizeLog2 - kSmiTagSize);
4709   __ Addu(feedback, vector, Operand(at));
4710   __ lw(feedback,
4711         FieldMemOperand(feedback, FixedArray::kHeaderSize + kPointerSize));
4712   HandleArrayCases(masm, feedback, receiver_map, scratch1, t5, false, &miss);
4713
4714   __ bind(&miss);
4715   KeyedLoadIC::GenerateMiss(masm);
4716
4717   __ bind(&load_smi_map);
4718   __ LoadRoot(receiver_map, Heap::kHeapNumberMapRootIndex);
4719   __ jmp(&compare_map);
4720 }
4721
4722
4723 void VectorStoreICTrampolineStub::Generate(MacroAssembler* masm) {
4724   EmitLoadTypeFeedbackVector(masm, VectorStoreICDescriptor::VectorRegister());
4725   VectorStoreICStub stub(isolate(), state());
4726   stub.GenerateForTrampoline(masm);
4727 }
4728
4729
4730 void VectorKeyedStoreICTrampolineStub::Generate(MacroAssembler* masm) {
4731   EmitLoadTypeFeedbackVector(masm, VectorStoreICDescriptor::VectorRegister());
4732   VectorKeyedStoreICStub stub(isolate(), state());
4733   stub.GenerateForTrampoline(masm);
4734 }
4735
4736
4737 void VectorStoreICStub::Generate(MacroAssembler* masm) {
4738   GenerateImpl(masm, false);
4739 }
4740
4741
4742 void VectorStoreICStub::GenerateForTrampoline(MacroAssembler* masm) {
4743   GenerateImpl(masm, true);
4744 }
4745
4746
4747 void VectorStoreICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) {
4748   Register receiver = VectorStoreICDescriptor::ReceiverRegister();  // a1
4749   Register key = VectorStoreICDescriptor::NameRegister();           // a2
4750   Register vector = VectorStoreICDescriptor::VectorRegister();      // a3
4751   Register slot = VectorStoreICDescriptor::SlotRegister();          // t0
4752   DCHECK(VectorStoreICDescriptor::ValueRegister().is(a0));          // a0
4753   Register feedback = t1;
4754   Register receiver_map = t2;
4755   Register scratch1 = t5;
4756
4757   __ sll(scratch1, slot, kPointerSizeLog2 - kSmiTagSize);
4758   __ Addu(feedback, vector, Operand(scratch1));
4759   __ lw(feedback, FieldMemOperand(feedback, FixedArray::kHeaderSize));
4760
4761   // Try to quickly handle the monomorphic case without knowing for sure
4762   // if we have a weak cell in feedback. We do know it's safe to look
4763   // at WeakCell::kValueOffset.
4764   Label try_array, load_smi_map, compare_map;
4765   Label not_array, miss;
4766   HandleMonomorphicCase(masm, receiver, receiver_map, feedback, vector, slot,
4767                         scratch1, &compare_map, &load_smi_map, &try_array);
4768
4769   // Is it a fixed array?
4770   __ bind(&try_array);
4771   __ lw(scratch1, FieldMemOperand(feedback, HeapObject::kMapOffset));
4772   __ LoadRoot(at, Heap::kFixedArrayMapRootIndex);
4773   __ Branch(&not_array, ne, scratch1, Operand(at));
4774
4775   Register scratch2 = t4;
4776   HandleArrayCases(masm, feedback, receiver_map, scratch1, scratch2, true,
4777                    &miss);
4778
4779   __ bind(&not_array);
4780   __ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex);
4781   __ Branch(&miss, ne, feedback, Operand(at));
4782   Code::Flags code_flags = Code::RemoveTypeAndHolderFromFlags(
4783       Code::ComputeHandlerFlags(Code::STORE_IC));
4784   masm->isolate()->stub_cache()->GenerateProbe(
4785       masm, Code::STORE_IC, code_flags, receiver, key, feedback, receiver_map,
4786       scratch1, scratch2);
4787
4788   __ bind(&miss);
4789   StoreIC::GenerateMiss(masm);
4790
4791   __ bind(&load_smi_map);
4792   __ Branch(USE_DELAY_SLOT, &compare_map);
4793   __ LoadRoot(receiver_map, Heap::kHeapNumberMapRootIndex);  // In delay slot.
4794 }
4795
4796
4797 void VectorKeyedStoreICStub::Generate(MacroAssembler* masm) {
4798   GenerateImpl(masm, false);
4799 }
4800
4801
4802 void VectorKeyedStoreICStub::GenerateForTrampoline(MacroAssembler* masm) {
4803   GenerateImpl(masm, true);
4804 }
4805
4806
4807 static void HandlePolymorphicStoreCase(MacroAssembler* masm, Register feedback,
4808                                        Register receiver_map, Register scratch1,
4809                                        Register scratch2, Label* miss) {
4810   // feedback initially contains the feedback array
4811   Label next_loop, prepare_next;
4812   Label start_polymorphic;
4813   Label transition_call;
4814
4815   Register cached_map = scratch1;
4816   Register too_far = scratch2;
4817   Register pointer_reg = feedback;
4818   __ lw(too_far, FieldMemOperand(feedback, FixedArray::kLengthOffset));
4819
4820   // +-----+------+------+-----+-----+-----+ ... ----+
4821   // | map | len  | wm0  | wt0 | h0  | wm1 |      hN |
4822   // +-----+------+------+-----+-----+ ----+ ... ----+
4823   //                 0      1     2              len-1
4824   //                 ^                                 ^
4825   //                 |                                 |
4826   //             pointer_reg                        too_far
4827   //             aka feedback                       scratch2
4828   // also need receiver_map
4829   // use cached_map (scratch1) to look in the weak map values.
4830   __ sll(scratch1, too_far, kPointerSizeLog2 - kSmiTagSize);
4831   __ Addu(too_far, feedback, Operand(scratch1));
4832   __ Addu(too_far, too_far, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
4833   __ Addu(pointer_reg, feedback,
4834           Operand(FixedArray::OffsetOfElementAt(0) - kHeapObjectTag));
4835
4836   __ bind(&next_loop);
4837   __ lw(cached_map, MemOperand(pointer_reg));
4838   __ lw(cached_map, FieldMemOperand(cached_map, WeakCell::kValueOffset));
4839   __ Branch(&prepare_next, ne, receiver_map, Operand(cached_map));
4840   // Is it a transitioning store?
4841   __ lw(too_far, MemOperand(pointer_reg, kPointerSize));
4842   __ LoadRoot(at, Heap::kUndefinedValueRootIndex);
4843   __ Branch(&transition_call, ne, too_far, Operand(at));
4844   __ lw(pointer_reg, MemOperand(pointer_reg, kPointerSize * 2));
4845   __ Addu(t9, pointer_reg, Operand(Code::kHeaderSize - kHeapObjectTag));
4846   __ Jump(t9);
4847
4848   __ bind(&transition_call);
4849   __ lw(too_far, FieldMemOperand(too_far, WeakCell::kValueOffset));
4850   __ JumpIfSmi(too_far, miss);
4851
4852   __ lw(receiver_map, MemOperand(pointer_reg, kPointerSize * 2));
4853
4854   // Load the map into the correct register.
4855   DCHECK(feedback.is(VectorStoreTransitionDescriptor::MapRegister()));
4856   __ mov(feedback, too_far);
4857
4858   __ Addu(t9, receiver_map, Operand(Code::kHeaderSize - kHeapObjectTag));
4859   __ Jump(t9);
4860
4861   __ bind(&prepare_next);
4862   __ Addu(pointer_reg, pointer_reg, Operand(kPointerSize * 3));
4863   __ Branch(&next_loop, lt, pointer_reg, Operand(too_far));
4864
4865   // We exhausted our array of map handler pairs.
4866   __ jmp(miss);
4867 }
4868
4869
4870 void VectorKeyedStoreICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) {
4871   Register receiver = VectorStoreICDescriptor::ReceiverRegister();  // a1
4872   Register key = VectorStoreICDescriptor::NameRegister();           // a2
4873   Register vector = VectorStoreICDescriptor::VectorRegister();      // a3
4874   Register slot = VectorStoreICDescriptor::SlotRegister();          // t0
4875   DCHECK(VectorStoreICDescriptor::ValueRegister().is(a0));          // a0
4876   Register feedback = t1;
4877   Register receiver_map = t2;
4878   Register scratch1 = t5;
4879
4880   __ sll(scratch1, slot, kPointerSizeLog2 - kSmiTagSize);
4881   __ Addu(feedback, vector, Operand(scratch1));
4882   __ lw(feedback, FieldMemOperand(feedback, FixedArray::kHeaderSize));
4883
4884   // Try to quickly handle the monomorphic case without knowing for sure
4885   // if we have a weak cell in feedback. We do know it's safe to look
4886   // at WeakCell::kValueOffset.
4887   Label try_array, load_smi_map, compare_map;
4888   Label not_array, miss;
4889   HandleMonomorphicCase(masm, receiver, receiver_map, feedback, vector, slot,
4890                         scratch1, &compare_map, &load_smi_map, &try_array);
4891
4892   __ bind(&try_array);
4893   // Is it a fixed array?
4894   __ lw(scratch1, FieldMemOperand(feedback, HeapObject::kMapOffset));
4895   __ LoadRoot(at, Heap::kFixedArrayMapRootIndex);
4896   __ Branch(&not_array, ne, scratch1, Operand(at));
4897
4898   // We have a polymorphic element handler.
4899   Label polymorphic, try_poly_name;
4900   __ bind(&polymorphic);
4901
4902   Register scratch2 = t4;
4903
4904   HandlePolymorphicStoreCase(masm, feedback, receiver_map, scratch1, scratch2,
4905                              &miss);
4906
4907   __ bind(&not_array);
4908   // Is it generic?
4909   __ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex);
4910   __ Branch(&try_poly_name, ne, feedback, Operand(at));
4911   Handle<Code> megamorphic_stub =
4912       KeyedStoreIC::ChooseMegamorphicStub(masm->isolate(), GetExtraICState());
4913   __ Jump(megamorphic_stub, RelocInfo::CODE_TARGET);
4914
4915   __ bind(&try_poly_name);
4916   // We might have a name in feedback, and a fixed array in the next slot.
4917   __ Branch(&miss, ne, key, Operand(feedback));
4918   // If the name comparison succeeded, we know we have a fixed array with
4919   // at least one map/handler pair.
4920   __ sll(scratch1, slot, kPointerSizeLog2 - kSmiTagSize);
4921   __ Addu(feedback, vector, Operand(scratch1));
4922   __ lw(feedback,
4923         FieldMemOperand(feedback, FixedArray::kHeaderSize + kPointerSize));
4924   HandleArrayCases(masm, feedback, receiver_map, scratch1, scratch2, false,
4925                    &miss);
4926
4927   __ bind(&miss);
4928   KeyedStoreIC::GenerateMiss(masm);
4929
4930   __ bind(&load_smi_map);
4931   __ Branch(USE_DELAY_SLOT, &compare_map);
4932   __ LoadRoot(receiver_map, Heap::kHeapNumberMapRootIndex);  // In delay slot.
4933 }
4934
4935
4936 void ProfileEntryHookStub::MaybeCallEntryHook(MacroAssembler* masm) {
4937   if (masm->isolate()->function_entry_hook() != NULL) {
4938     ProfileEntryHookStub stub(masm->isolate());
4939     __ push(ra);
4940     __ CallStub(&stub);
4941     __ pop(ra);
4942   }
4943 }
4944
4945
4946 void ProfileEntryHookStub::Generate(MacroAssembler* masm) {
4947   // The entry hook is a "push ra" instruction, followed by a call.
4948   // Note: on MIPS "push" is 2 instruction
4949   const int32_t kReturnAddressDistanceFromFunctionStart =
4950       Assembler::kCallTargetAddressOffset + (2 * Assembler::kInstrSize);
4951
4952   // This should contain all kJSCallerSaved registers.
4953   const RegList kSavedRegs =
4954      kJSCallerSaved |  // Caller saved registers.
4955      s5.bit();         // Saved stack pointer.
4956
4957   // We also save ra, so the count here is one higher than the mask indicates.
4958   const int32_t kNumSavedRegs = kNumJSCallerSaved + 2;
4959
4960   // Save all caller-save registers as this may be called from anywhere.
4961   __ MultiPush(kSavedRegs | ra.bit());
4962
4963   // Compute the function's address for the first argument.
4964   __ Subu(a0, ra, Operand(kReturnAddressDistanceFromFunctionStart));
4965
4966   // The caller's return address is above the saved temporaries.
4967   // Grab that for the second argument to the hook.
4968   __ Addu(a1, sp, Operand(kNumSavedRegs * kPointerSize));
4969
4970   // Align the stack if necessary.
4971   int frame_alignment = masm->ActivationFrameAlignment();
4972   if (frame_alignment > kPointerSize) {
4973     __ mov(s5, sp);
4974     DCHECK(base::bits::IsPowerOfTwo32(frame_alignment));
4975     __ And(sp, sp, Operand(-frame_alignment));
4976   }
4977   __ Subu(sp, sp, kCArgsSlotsSize);
4978 #if defined(V8_HOST_ARCH_MIPS)
4979   int32_t entry_hook =
4980       reinterpret_cast<int32_t>(isolate()->function_entry_hook());
4981   __ li(t9, Operand(entry_hook));
4982 #else
4983   // Under the simulator we need to indirect the entry hook through a
4984   // trampoline function at a known address.
4985   // It additionally takes an isolate as a third parameter.
4986   __ li(a2, Operand(ExternalReference::isolate_address(isolate())));
4987
4988   ApiFunction dispatcher(FUNCTION_ADDR(EntryHookTrampoline));
4989   __ li(t9, Operand(ExternalReference(&dispatcher,
4990                                       ExternalReference::BUILTIN_CALL,
4991                                       isolate())));
4992 #endif
4993   // Call C function through t9 to conform ABI for PIC.
4994   __ Call(t9);
4995
4996   // Restore the stack pointer if needed.
4997   if (frame_alignment > kPointerSize) {
4998     __ mov(sp, s5);
4999   } else {
5000     __ Addu(sp, sp, kCArgsSlotsSize);
5001   }
5002
5003   // Also pop ra to get Ret(0).
5004   __ MultiPop(kSavedRegs | ra.bit());
5005   __ Ret();
5006 }
5007
5008
5009 template<class T>
5010 static void CreateArrayDispatch(MacroAssembler* masm,
5011                                 AllocationSiteOverrideMode mode) {
5012   if (mode == DISABLE_ALLOCATION_SITES) {
5013     T stub(masm->isolate(), GetInitialFastElementsKind(), mode);
5014     __ TailCallStub(&stub);
5015   } else if (mode == DONT_OVERRIDE) {
5016     int last_index = GetSequenceIndexFromFastElementsKind(
5017         TERMINAL_FAST_ELEMENTS_KIND);
5018     for (int i = 0; i <= last_index; ++i) {
5019       ElementsKind kind = GetFastElementsKindFromSequenceIndex(i);
5020       T stub(masm->isolate(), kind);
5021       __ TailCallStub(&stub, eq, a3, Operand(kind));
5022     }
5023
5024     // If we reached this point there is a problem.
5025     __ Abort(kUnexpectedElementsKindInArrayConstructor);
5026   } else {
5027     UNREACHABLE();
5028   }
5029 }
5030
5031
5032 static void CreateArrayDispatchOneArgument(MacroAssembler* masm,
5033                                            AllocationSiteOverrideMode mode) {
5034   // a2 - allocation site (if mode != DISABLE_ALLOCATION_SITES)
5035   // a3 - kind (if mode != DISABLE_ALLOCATION_SITES)
5036   // a0 - number of arguments
5037   // a1 - constructor?
5038   // sp[0] - last argument
5039   Label normal_sequence;
5040   if (mode == DONT_OVERRIDE) {
5041     STATIC_ASSERT(FAST_SMI_ELEMENTS == 0);
5042     STATIC_ASSERT(FAST_HOLEY_SMI_ELEMENTS == 1);
5043     STATIC_ASSERT(FAST_ELEMENTS == 2);
5044     STATIC_ASSERT(FAST_HOLEY_ELEMENTS == 3);
5045     STATIC_ASSERT(FAST_DOUBLE_ELEMENTS == 4);
5046     STATIC_ASSERT(FAST_HOLEY_DOUBLE_ELEMENTS == 5);
5047
5048     // is the low bit set? If so, we are holey and that is good.
5049     __ And(at, a3, Operand(1));
5050     __ Branch(&normal_sequence, ne, at, Operand(zero_reg));
5051   }
5052
5053   // look at the first argument
5054   __ lw(t1, MemOperand(sp, 0));
5055   __ Branch(&normal_sequence, eq, t1, Operand(zero_reg));
5056
5057   if (mode == DISABLE_ALLOCATION_SITES) {
5058     ElementsKind initial = GetInitialFastElementsKind();
5059     ElementsKind holey_initial = GetHoleyElementsKind(initial);
5060
5061     ArraySingleArgumentConstructorStub stub_holey(masm->isolate(),
5062                                                   holey_initial,
5063                                                   DISABLE_ALLOCATION_SITES);
5064     __ TailCallStub(&stub_holey);
5065
5066     __ bind(&normal_sequence);
5067     ArraySingleArgumentConstructorStub stub(masm->isolate(),
5068                                             initial,
5069                                             DISABLE_ALLOCATION_SITES);
5070     __ TailCallStub(&stub);
5071   } else if (mode == DONT_OVERRIDE) {
5072     // We are going to create a holey array, but our kind is non-holey.
5073     // Fix kind and retry (only if we have an allocation site in the slot).
5074     __ Addu(a3, a3, Operand(1));
5075
5076     if (FLAG_debug_code) {
5077       __ lw(t1, FieldMemOperand(a2, 0));
5078       __ LoadRoot(at, Heap::kAllocationSiteMapRootIndex);
5079       __ Assert(eq, kExpectedAllocationSite, t1, Operand(at));
5080     }
5081
5082     // Save the resulting elements kind in type info. We can't just store a3
5083     // in the AllocationSite::transition_info field because elements kind is
5084     // restricted to a portion of the field...upper bits need to be left alone.
5085     STATIC_ASSERT(AllocationSite::ElementsKindBits::kShift == 0);
5086     __ lw(t0, FieldMemOperand(a2, AllocationSite::kTransitionInfoOffset));
5087     __ Addu(t0, t0, Operand(Smi::FromInt(kFastElementsKindPackedToHoley)));
5088     __ sw(t0, FieldMemOperand(a2, AllocationSite::kTransitionInfoOffset));
5089
5090
5091     __ bind(&normal_sequence);
5092     int last_index = GetSequenceIndexFromFastElementsKind(
5093         TERMINAL_FAST_ELEMENTS_KIND);
5094     for (int i = 0; i <= last_index; ++i) {
5095       ElementsKind kind = GetFastElementsKindFromSequenceIndex(i);
5096       ArraySingleArgumentConstructorStub stub(masm->isolate(), kind);
5097       __ TailCallStub(&stub, eq, a3, Operand(kind));
5098     }
5099
5100     // If we reached this point there is a problem.
5101     __ Abort(kUnexpectedElementsKindInArrayConstructor);
5102   } else {
5103     UNREACHABLE();
5104   }
5105 }
5106
5107
5108 template<class T>
5109 static void ArrayConstructorStubAheadOfTimeHelper(Isolate* isolate) {
5110   int to_index = GetSequenceIndexFromFastElementsKind(
5111       TERMINAL_FAST_ELEMENTS_KIND);
5112   for (int i = 0; i <= to_index; ++i) {
5113     ElementsKind kind = GetFastElementsKindFromSequenceIndex(i);
5114     T stub(isolate, kind);
5115     stub.GetCode();
5116     if (AllocationSite::GetMode(kind) != DONT_TRACK_ALLOCATION_SITE) {
5117       T stub1(isolate, kind, DISABLE_ALLOCATION_SITES);
5118       stub1.GetCode();
5119     }
5120   }
5121 }
5122
5123
5124 void ArrayConstructorStubBase::GenerateStubsAheadOfTime(Isolate* isolate) {
5125   ArrayConstructorStubAheadOfTimeHelper<ArrayNoArgumentConstructorStub>(
5126       isolate);
5127   ArrayConstructorStubAheadOfTimeHelper<ArraySingleArgumentConstructorStub>(
5128       isolate);
5129   ArrayConstructorStubAheadOfTimeHelper<ArrayNArgumentsConstructorStub>(
5130       isolate);
5131 }
5132
5133
5134 void InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(
5135     Isolate* isolate) {
5136   ElementsKind kinds[2] = { FAST_ELEMENTS, FAST_HOLEY_ELEMENTS };
5137   for (int i = 0; i < 2; i++) {
5138     // For internal arrays we only need a few things.
5139     InternalArrayNoArgumentConstructorStub stubh1(isolate, kinds[i]);
5140     stubh1.GetCode();
5141     InternalArraySingleArgumentConstructorStub stubh2(isolate, kinds[i]);
5142     stubh2.GetCode();
5143     InternalArrayNArgumentsConstructorStub stubh3(isolate, kinds[i]);
5144     stubh3.GetCode();
5145   }
5146 }
5147
5148
5149 void ArrayConstructorStub::GenerateDispatchToArrayStub(
5150     MacroAssembler* masm,
5151     AllocationSiteOverrideMode mode) {
5152   if (argument_count() == ANY) {
5153     Label not_zero_case, not_one_case;
5154     __ And(at, a0, a0);
5155     __ Branch(&not_zero_case, ne, at, Operand(zero_reg));
5156     CreateArrayDispatch<ArrayNoArgumentConstructorStub>(masm, mode);
5157
5158     __ bind(&not_zero_case);
5159     __ Branch(&not_one_case, gt, a0, Operand(1));
5160     CreateArrayDispatchOneArgument(masm, mode);
5161
5162     __ bind(&not_one_case);
5163     CreateArrayDispatch<ArrayNArgumentsConstructorStub>(masm, mode);
5164   } else if (argument_count() == NONE) {
5165     CreateArrayDispatch<ArrayNoArgumentConstructorStub>(masm, mode);
5166   } else if (argument_count() == ONE) {
5167     CreateArrayDispatchOneArgument(masm, mode);
5168   } else if (argument_count() == MORE_THAN_ONE) {
5169     CreateArrayDispatch<ArrayNArgumentsConstructorStub>(masm, mode);
5170   } else {
5171     UNREACHABLE();
5172   }
5173 }
5174
5175
5176 void ArrayConstructorStub::Generate(MacroAssembler* masm) {
5177   // ----------- S t a t e -------------
5178   //  -- a0 : argc (only if argument_count() is ANY or MORE_THAN_ONE)
5179   //  -- a1 : constructor
5180   //  -- a2 : AllocationSite or undefined
5181   //  -- a3 : Original constructor
5182   //  -- sp[0] : last argument
5183   // -----------------------------------
5184
5185   if (FLAG_debug_code) {
5186     // The array construct code is only set for the global and natives
5187     // builtin Array functions which always have maps.
5188
5189     // Initial map for the builtin Array function should be a map.
5190     __ lw(t0, FieldMemOperand(a1, JSFunction::kPrototypeOrInitialMapOffset));
5191     // Will both indicate a NULL and a Smi.
5192     __ SmiTst(t0, at);
5193     __ Assert(ne, kUnexpectedInitialMapForArrayFunction,
5194         at, Operand(zero_reg));
5195     __ GetObjectType(t0, t0, t1);
5196     __ Assert(eq, kUnexpectedInitialMapForArrayFunction,
5197         t1, Operand(MAP_TYPE));
5198
5199     // We should either have undefined in a2 or a valid AllocationSite
5200     __ AssertUndefinedOrAllocationSite(a2, t0);
5201   }
5202
5203   Label subclassing;
5204   __ Branch(&subclassing, ne, a1, Operand(a3));
5205
5206   Label no_info;
5207   // Get the elements kind and case on that.
5208   __ LoadRoot(at, Heap::kUndefinedValueRootIndex);
5209   __ Branch(&no_info, eq, a2, Operand(at));
5210
5211   __ lw(a3, FieldMemOperand(a2, AllocationSite::kTransitionInfoOffset));
5212   __ SmiUntag(a3);
5213   STATIC_ASSERT(AllocationSite::ElementsKindBits::kShift == 0);
5214   __ And(a3, a3, Operand(AllocationSite::ElementsKindBits::kMask));
5215   GenerateDispatchToArrayStub(masm, DONT_OVERRIDE);
5216
5217   __ bind(&no_info);
5218   GenerateDispatchToArrayStub(masm, DISABLE_ALLOCATION_SITES);
5219
5220   // Subclassing.
5221   __ bind(&subclassing);
5222   __ Push(a1);
5223   __ Push(a3);
5224
5225   // Adjust argc.
5226   switch (argument_count()) {
5227     case ANY:
5228     case MORE_THAN_ONE:
5229       __ li(at, Operand(2));
5230       __ addu(a0, a0, at);
5231       break;
5232     case NONE:
5233       __ li(a0, Operand(2));
5234       break;
5235     case ONE:
5236       __ li(a0, Operand(3));
5237       break;
5238   }
5239
5240   __ JumpToExternalReference(
5241       ExternalReference(Runtime::kArrayConstructorWithSubclassing, isolate()));
5242 }
5243
5244
5245 void InternalArrayConstructorStub::GenerateCase(
5246     MacroAssembler* masm, ElementsKind kind) {
5247
5248   InternalArrayNoArgumentConstructorStub stub0(isolate(), kind);
5249   __ TailCallStub(&stub0, lo, a0, Operand(1));
5250
5251   InternalArrayNArgumentsConstructorStub stubN(isolate(), kind);
5252   __ TailCallStub(&stubN, hi, a0, Operand(1));
5253
5254   if (IsFastPackedElementsKind(kind)) {
5255     // We might need to create a holey array
5256     // look at the first argument.
5257     __ lw(at, MemOperand(sp, 0));
5258
5259     InternalArraySingleArgumentConstructorStub
5260         stub1_holey(isolate(), GetHoleyElementsKind(kind));
5261     __ TailCallStub(&stub1_holey, ne, at, Operand(zero_reg));
5262   }
5263
5264   InternalArraySingleArgumentConstructorStub stub1(isolate(), kind);
5265   __ TailCallStub(&stub1);
5266 }
5267
5268
5269 void InternalArrayConstructorStub::Generate(MacroAssembler* masm) {
5270   // ----------- S t a t e -------------
5271   //  -- a0 : argc
5272   //  -- a1 : constructor
5273   //  -- sp[0] : return address
5274   //  -- sp[4] : last argument
5275   // -----------------------------------
5276
5277   if (FLAG_debug_code) {
5278     // The array construct code is only set for the global and natives
5279     // builtin Array functions which always have maps.
5280
5281     // Initial map for the builtin Array function should be a map.
5282     __ lw(a3, FieldMemOperand(a1, JSFunction::kPrototypeOrInitialMapOffset));
5283     // Will both indicate a NULL and a Smi.
5284     __ SmiTst(a3, at);
5285     __ Assert(ne, kUnexpectedInitialMapForArrayFunction,
5286         at, Operand(zero_reg));
5287     __ GetObjectType(a3, a3, t0);
5288     __ Assert(eq, kUnexpectedInitialMapForArrayFunction,
5289         t0, Operand(MAP_TYPE));
5290   }
5291
5292   // Figure out the right elements kind.
5293   __ lw(a3, FieldMemOperand(a1, JSFunction::kPrototypeOrInitialMapOffset));
5294
5295   // Load the map's "bit field 2" into a3. We only need the first byte,
5296   // but the following bit field extraction takes care of that anyway.
5297   __ lbu(a3, FieldMemOperand(a3, Map::kBitField2Offset));
5298   // Retrieve elements_kind from bit field 2.
5299   __ DecodeField<Map::ElementsKindBits>(a3);
5300
5301   if (FLAG_debug_code) {
5302     Label done;
5303     __ Branch(&done, eq, a3, Operand(FAST_ELEMENTS));
5304     __ Assert(
5305         eq, kInvalidElementsKindForInternalArrayOrInternalPackedArray,
5306         a3, Operand(FAST_HOLEY_ELEMENTS));
5307     __ bind(&done);
5308   }
5309
5310   Label fast_elements_case;
5311   __ Branch(&fast_elements_case, eq, a3, Operand(FAST_ELEMENTS));
5312   GenerateCase(masm, FAST_HOLEY_ELEMENTS);
5313
5314   __ bind(&fast_elements_case);
5315   GenerateCase(masm, FAST_ELEMENTS);
5316 }
5317
5318
5319 void LoadGlobalViaContextStub::Generate(MacroAssembler* masm) {
5320   Register context_reg = cp;
5321   Register slot_reg = a2;
5322   Register result_reg = v0;
5323   Label slow_case;
5324
5325   // Go up context chain to the script context.
5326   for (int i = 0; i < depth(); ++i) {
5327     __ lw(result_reg, ContextOperand(context_reg, Context::PREVIOUS_INDEX));
5328     context_reg = result_reg;
5329   }
5330
5331   // Load the PropertyCell value at the specified slot.
5332   __ sll(at, slot_reg, kPointerSizeLog2);
5333   __ Addu(at, at, Operand(context_reg));
5334   __ lw(result_reg, ContextOperand(at, 0));
5335   __ lw(result_reg, FieldMemOperand(result_reg, PropertyCell::kValueOffset));
5336
5337   // Check that value is not the_hole.
5338   __ LoadRoot(at, Heap::kTheHoleValueRootIndex);
5339   __ Branch(&slow_case, eq, result_reg, Operand(at));
5340   __ Ret();
5341
5342   // Fallback to the runtime.
5343   __ bind(&slow_case);
5344   __ SmiTag(slot_reg);
5345   __ Push(slot_reg);
5346   __ TailCallRuntime(Runtime::kLoadGlobalViaContext, 1, 1);
5347 }
5348
5349
5350 void StoreGlobalViaContextStub::Generate(MacroAssembler* masm) {
5351   Register context_reg = cp;
5352   Register slot_reg = a2;
5353   Register value_reg = a0;
5354   Register cell_reg = t0;
5355   Register cell_value_reg = t1;
5356   Register cell_details_reg = t2;
5357   Label fast_heapobject_case, fast_smi_case, slow_case;
5358
5359   if (FLAG_debug_code) {
5360     __ LoadRoot(at, Heap::kTheHoleValueRootIndex);
5361     __ Check(ne, kUnexpectedValue, value_reg, Operand(at));
5362   }
5363
5364   // Go up context chain to the script context.
5365   for (int i = 0; i < depth(); ++i) {
5366     __ lw(cell_reg, ContextOperand(context_reg, Context::PREVIOUS_INDEX));
5367     context_reg = cell_reg;
5368   }
5369
5370   // Load the PropertyCell at the specified slot.
5371   __ sll(at, slot_reg, kPointerSizeLog2);
5372   __ Addu(at, at, Operand(context_reg));
5373   __ lw(cell_reg, ContextOperand(at, 0));
5374
5375   // Load PropertyDetails for the cell (actually only the cell_type and kind).
5376   __ lw(cell_details_reg,
5377         FieldMemOperand(cell_reg, PropertyCell::kDetailsOffset));
5378   __ SmiUntag(cell_details_reg);
5379   __ And(cell_details_reg, cell_details_reg,
5380          PropertyDetails::PropertyCellTypeField::kMask |
5381              PropertyDetails::KindField::kMask |
5382              PropertyDetails::kAttributesReadOnlyMask);
5383
5384   // Check if PropertyCell holds mutable data.
5385   Label not_mutable_data;
5386   __ Branch(&not_mutable_data, ne, cell_details_reg,
5387             Operand(PropertyDetails::PropertyCellTypeField::encode(
5388                         PropertyCellType::kMutable) |
5389                     PropertyDetails::KindField::encode(kData)));
5390   __ JumpIfSmi(value_reg, &fast_smi_case);
5391   __ bind(&fast_heapobject_case);
5392   __ sw(value_reg, FieldMemOperand(cell_reg, PropertyCell::kValueOffset));
5393   __ RecordWriteField(cell_reg, PropertyCell::kValueOffset, value_reg,
5394                       cell_details_reg, kRAHasNotBeenSaved, kDontSaveFPRegs,
5395                       EMIT_REMEMBERED_SET, OMIT_SMI_CHECK);
5396   // RecordWriteField clobbers the value register, so we need to reload.
5397   __ Ret(USE_DELAY_SLOT);
5398   __ lw(value_reg, FieldMemOperand(cell_reg, PropertyCell::kValueOffset));
5399   __ bind(&not_mutable_data);
5400
5401   // Check if PropertyCell value matches the new value (relevant for Constant,
5402   // ConstantType and Undefined cells).
5403   Label not_same_value;
5404   __ lw(cell_value_reg, FieldMemOperand(cell_reg, PropertyCell::kValueOffset));
5405   __ Branch(&not_same_value, ne, value_reg, Operand(cell_value_reg));
5406   // Make sure the PropertyCell is not marked READ_ONLY.
5407   __ And(at, cell_details_reg, PropertyDetails::kAttributesReadOnlyMask);
5408   __ Branch(&slow_case, ne, at, Operand(zero_reg));
5409   if (FLAG_debug_code) {
5410     Label done;
5411     // This can only be true for Constant, ConstantType and Undefined cells,
5412     // because we never store the_hole via this stub.
5413     __ Branch(&done, eq, cell_details_reg,
5414               Operand(PropertyDetails::PropertyCellTypeField::encode(
5415                           PropertyCellType::kConstant) |
5416                       PropertyDetails::KindField::encode(kData)));
5417     __ Branch(&done, eq, cell_details_reg,
5418               Operand(PropertyDetails::PropertyCellTypeField::encode(
5419                           PropertyCellType::kConstantType) |
5420                       PropertyDetails::KindField::encode(kData)));
5421     __ Check(eq, kUnexpectedValue, cell_details_reg,
5422              Operand(PropertyDetails::PropertyCellTypeField::encode(
5423                          PropertyCellType::kUndefined) |
5424                      PropertyDetails::KindField::encode(kData)));
5425     __ bind(&done);
5426   }
5427   __ Ret();
5428   __ bind(&not_same_value);
5429
5430   // Check if PropertyCell contains data with constant type (and is not
5431   // READ_ONLY).
5432   __ Branch(&slow_case, ne, cell_details_reg,
5433             Operand(PropertyDetails::PropertyCellTypeField::encode(
5434                         PropertyCellType::kConstantType) |
5435                     PropertyDetails::KindField::encode(kData)));
5436
5437   // Now either both old and new values must be SMIs or both must be heap
5438   // objects with same map.
5439   Label value_is_heap_object;
5440   __ JumpIfNotSmi(value_reg, &value_is_heap_object);
5441   __ JumpIfNotSmi(cell_value_reg, &slow_case);
5442   // Old and new values are SMIs, no need for a write barrier here.
5443   __ bind(&fast_smi_case);
5444   __ Ret(USE_DELAY_SLOT);
5445   __ sw(value_reg, FieldMemOperand(cell_reg, PropertyCell::kValueOffset));
5446   __ bind(&value_is_heap_object);
5447   __ JumpIfSmi(cell_value_reg, &slow_case);
5448   Register cell_value_map_reg = cell_value_reg;
5449   __ lw(cell_value_map_reg,
5450         FieldMemOperand(cell_value_reg, HeapObject::kMapOffset));
5451   __ Branch(&fast_heapobject_case, eq, cell_value_map_reg,
5452             FieldMemOperand(value_reg, HeapObject::kMapOffset));
5453
5454   // Fallback to the runtime.
5455   __ bind(&slow_case);
5456   __ SmiTag(slot_reg);
5457   __ Push(slot_reg, value_reg);
5458   __ TailCallRuntime(is_strict(language_mode())
5459                          ? Runtime::kStoreGlobalViaContext_Strict
5460                          : Runtime::kStoreGlobalViaContext_Sloppy,
5461                      2, 1);
5462 }
5463
5464
5465 static int AddressOffset(ExternalReference ref0, ExternalReference ref1) {
5466   return ref0.address() - ref1.address();
5467 }
5468
5469
5470 // Calls an API function.  Allocates HandleScope, extracts returned value
5471 // from handle and propagates exceptions.  Restores context.  stack_space
5472 // - space to be unwound on exit (includes the call JS arguments space and
5473 // the additional space allocated for the fast call).
5474 static void CallApiFunctionAndReturn(
5475     MacroAssembler* masm, Register function_address,
5476     ExternalReference thunk_ref, int stack_space, int32_t stack_space_offset,
5477     MemOperand return_value_operand, MemOperand* context_restore_operand) {
5478   Isolate* isolate = masm->isolate();
5479   ExternalReference next_address =
5480       ExternalReference::handle_scope_next_address(isolate);
5481   const int kNextOffset = 0;
5482   const int kLimitOffset = AddressOffset(
5483       ExternalReference::handle_scope_limit_address(isolate), next_address);
5484   const int kLevelOffset = AddressOffset(
5485       ExternalReference::handle_scope_level_address(isolate), next_address);
5486
5487   DCHECK(function_address.is(a1) || function_address.is(a2));
5488
5489   Label profiler_disabled;
5490   Label end_profiler_check;
5491   __ li(t9, Operand(ExternalReference::is_profiling_address(isolate)));
5492   __ lb(t9, MemOperand(t9, 0));
5493   __ Branch(&profiler_disabled, eq, t9, Operand(zero_reg));
5494
5495   // Additional parameter is the address of the actual callback.
5496   __ li(t9, Operand(thunk_ref));
5497   __ jmp(&end_profiler_check);
5498
5499   __ bind(&profiler_disabled);
5500   __ mov(t9, function_address);
5501   __ bind(&end_profiler_check);
5502
5503   // Allocate HandleScope in callee-save registers.
5504   __ li(s3, Operand(next_address));
5505   __ lw(s0, MemOperand(s3, kNextOffset));
5506   __ lw(s1, MemOperand(s3, kLimitOffset));
5507   __ lw(s2, MemOperand(s3, kLevelOffset));
5508   __ Addu(s2, s2, Operand(1));
5509   __ sw(s2, MemOperand(s3, kLevelOffset));
5510
5511   if (FLAG_log_timer_events) {
5512     FrameScope frame(masm, StackFrame::MANUAL);
5513     __ PushSafepointRegisters();
5514     __ PrepareCallCFunction(1, a0);
5515     __ li(a0, Operand(ExternalReference::isolate_address(isolate)));
5516     __ CallCFunction(ExternalReference::log_enter_external_function(isolate),
5517                      1);
5518     __ PopSafepointRegisters();
5519   }
5520
5521   // Native call returns to the DirectCEntry stub which redirects to the
5522   // return address pushed on stack (could have moved after GC).
5523   // DirectCEntry stub itself is generated early and never moves.
5524   DirectCEntryStub stub(isolate);
5525   stub.GenerateCall(masm, t9);
5526
5527   if (FLAG_log_timer_events) {
5528     FrameScope frame(masm, StackFrame::MANUAL);
5529     __ PushSafepointRegisters();
5530     __ PrepareCallCFunction(1, a0);
5531     __ li(a0, Operand(ExternalReference::isolate_address(isolate)));
5532     __ CallCFunction(ExternalReference::log_leave_external_function(isolate),
5533                      1);
5534     __ PopSafepointRegisters();
5535   }
5536
5537   Label promote_scheduled_exception;
5538   Label delete_allocated_handles;
5539   Label leave_exit_frame;
5540   Label return_value_loaded;
5541
5542   // Load value from ReturnValue.
5543   __ lw(v0, return_value_operand);
5544   __ bind(&return_value_loaded);
5545
5546   // No more valid handles (the result handle was the last one). Restore
5547   // previous handle scope.
5548   __ sw(s0, MemOperand(s3, kNextOffset));
5549   if (__ emit_debug_code()) {
5550     __ lw(a1, MemOperand(s3, kLevelOffset));
5551     __ Check(eq, kUnexpectedLevelAfterReturnFromApiCall, a1, Operand(s2));
5552   }
5553   __ Subu(s2, s2, Operand(1));
5554   __ sw(s2, MemOperand(s3, kLevelOffset));
5555   __ lw(at, MemOperand(s3, kLimitOffset));
5556   __ Branch(&delete_allocated_handles, ne, s1, Operand(at));
5557
5558   // Leave the API exit frame.
5559   __ bind(&leave_exit_frame);
5560
5561   bool restore_context = context_restore_operand != NULL;
5562   if (restore_context) {
5563     __ lw(cp, *context_restore_operand);
5564   }
5565   if (stack_space_offset != kInvalidStackOffset) {
5566     // ExitFrame contains four MIPS argument slots after DirectCEntryStub call
5567     // so this must be accounted for.
5568     __ lw(s0, MemOperand(sp, stack_space_offset + kCArgsSlotsSize));
5569   } else {
5570     __ li(s0, Operand(stack_space));
5571   }
5572   __ LeaveExitFrame(false, s0, !restore_context, NO_EMIT_RETURN,
5573                     stack_space_offset != kInvalidStackOffset);
5574
5575   // Check if the function scheduled an exception.
5576   __ LoadRoot(t0, Heap::kTheHoleValueRootIndex);
5577   __ li(at, Operand(ExternalReference::scheduled_exception_address(isolate)));
5578   __ lw(t1, MemOperand(at));
5579   __ Branch(&promote_scheduled_exception, ne, t0, Operand(t1));
5580
5581   __ Ret();
5582
5583   // Re-throw by promoting a scheduled exception.
5584   __ bind(&promote_scheduled_exception);
5585   __ TailCallRuntime(Runtime::kPromoteScheduledException, 0, 1);
5586
5587   // HandleScope limit has changed. Delete allocated extensions.
5588   __ bind(&delete_allocated_handles);
5589   __ sw(s1, MemOperand(s3, kLimitOffset));
5590   __ mov(s0, v0);
5591   __ mov(a0, v0);
5592   __ PrepareCallCFunction(1, s1);
5593   __ li(a0, Operand(ExternalReference::isolate_address(isolate)));
5594   __ CallCFunction(ExternalReference::delete_handle_scope_extensions(isolate),
5595                    1);
5596   __ mov(v0, s0);
5597   __ jmp(&leave_exit_frame);
5598 }
5599
5600
5601 static void CallApiFunctionStubHelper(MacroAssembler* masm,
5602                                       const ParameterCount& argc,
5603                                       bool return_first_arg,
5604                                       bool call_data_undefined) {
5605   // ----------- S t a t e -------------
5606   //  -- a0                  : callee
5607   //  -- t0                  : call_data
5608   //  -- a2                  : holder
5609   //  -- a1                  : api_function_address
5610   //  -- a3                  : number of arguments if argc is a register
5611   //  -- cp                  : context
5612   //  --
5613   //  -- sp[0]               : last argument
5614   //  -- ...
5615   //  -- sp[(argc - 1)* 4]   : first argument
5616   //  -- sp[argc * 4]        : receiver
5617   // -----------------------------------
5618
5619   Register callee = a0;
5620   Register call_data = t0;
5621   Register holder = a2;
5622   Register api_function_address = a1;
5623   Register context = cp;
5624
5625   typedef FunctionCallbackArguments FCA;
5626
5627   STATIC_ASSERT(FCA::kContextSaveIndex == 6);
5628   STATIC_ASSERT(FCA::kCalleeIndex == 5);
5629   STATIC_ASSERT(FCA::kDataIndex == 4);
5630   STATIC_ASSERT(FCA::kReturnValueOffset == 3);
5631   STATIC_ASSERT(FCA::kReturnValueDefaultValueIndex == 2);
5632   STATIC_ASSERT(FCA::kIsolateIndex == 1);
5633   STATIC_ASSERT(FCA::kHolderIndex == 0);
5634   STATIC_ASSERT(FCA::kArgsLength == 7);
5635
5636   DCHECK(argc.is_immediate() || a3.is(argc.reg()));
5637
5638   // Save context, callee and call data.
5639   __ Push(context, callee, call_data);
5640   // Load context from callee.
5641   __ lw(context, FieldMemOperand(callee, JSFunction::kContextOffset));
5642
5643   Register scratch = call_data;
5644   if (!call_data_undefined) {
5645     __ LoadRoot(scratch, Heap::kUndefinedValueRootIndex);
5646   }
5647   // Push return value and default return value.
5648   __ Push(scratch, scratch);
5649   __ li(scratch, Operand(ExternalReference::isolate_address(masm->isolate())));
5650   // Push isolate and holder.
5651   __ Push(scratch, holder);
5652
5653   // Prepare arguments.
5654   __ mov(scratch, sp);
5655
5656   // Allocate the v8::Arguments structure in the arguments' space since
5657   // it's not controlled by GC.
5658   const int kApiStackSpace = 4;
5659
5660   FrameScope frame_scope(masm, StackFrame::MANUAL);
5661   __ EnterExitFrame(false, kApiStackSpace);
5662
5663   DCHECK(!api_function_address.is(a0) && !scratch.is(a0));
5664   // a0 = FunctionCallbackInfo&
5665   // Arguments is after the return address.
5666   __ Addu(a0, sp, Operand(1 * kPointerSize));
5667   // FunctionCallbackInfo::implicit_args_
5668   __ sw(scratch, MemOperand(a0, 0 * kPointerSize));
5669   if (argc.is_immediate()) {
5670     // FunctionCallbackInfo::values_
5671     __ Addu(at, scratch,
5672             Operand((FCA::kArgsLength - 1 + argc.immediate()) * kPointerSize));
5673     __ sw(at, MemOperand(a0, 1 * kPointerSize));
5674     // FunctionCallbackInfo::length_ = argc
5675     __ li(at, Operand(argc.immediate()));
5676     __ sw(at, MemOperand(a0, 2 * kPointerSize));
5677     // FunctionCallbackInfo::is_construct_call_ = 0
5678     __ sw(zero_reg, MemOperand(a0, 3 * kPointerSize));
5679   } else {
5680     // FunctionCallbackInfo::values_
5681     __ sll(at, argc.reg(), kPointerSizeLog2);
5682     __ Addu(at, at, scratch);
5683     __ Addu(at, at, Operand((FCA::kArgsLength - 1) * kPointerSize));
5684     __ sw(at, MemOperand(a0, 1 * kPointerSize));
5685     // FunctionCallbackInfo::length_ = argc
5686     __ sw(argc.reg(), MemOperand(a0, 2 * kPointerSize));
5687     // FunctionCallbackInfo::is_construct_call_
5688     __ Addu(argc.reg(), argc.reg(), Operand(FCA::kArgsLength + 1));
5689     __ sll(at, argc.reg(), kPointerSizeLog2);
5690     __ sw(at, MemOperand(a0, 3 * kPointerSize));
5691   }
5692
5693   ExternalReference thunk_ref =
5694       ExternalReference::invoke_function_callback(masm->isolate());
5695
5696   AllowExternalCallThatCantCauseGC scope(masm);
5697   MemOperand context_restore_operand(
5698       fp, (2 + FCA::kContextSaveIndex) * kPointerSize);
5699   // Stores return the first js argument.
5700   int return_value_offset = 0;
5701   if (return_first_arg) {
5702     return_value_offset = 2 + FCA::kArgsLength;
5703   } else {
5704     return_value_offset = 2 + FCA::kReturnValueOffset;
5705   }
5706   MemOperand return_value_operand(fp, return_value_offset * kPointerSize);
5707   int stack_space = 0;
5708   int32_t stack_space_offset = 4 * kPointerSize;
5709   if (argc.is_immediate()) {
5710     stack_space = argc.immediate() + FCA::kArgsLength + 1;
5711     stack_space_offset = kInvalidStackOffset;
5712   }
5713   CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, stack_space,
5714                            stack_space_offset, return_value_operand,
5715                            &context_restore_operand);
5716 }
5717
5718
5719 void CallApiFunctionStub::Generate(MacroAssembler* masm) {
5720   bool call_data_undefined = this->call_data_undefined();
5721   CallApiFunctionStubHelper(masm, ParameterCount(a3), false,
5722                             call_data_undefined);
5723 }
5724
5725
5726 void CallApiAccessorStub::Generate(MacroAssembler* masm) {
5727   bool is_store = this->is_store();
5728   int argc = this->argc();
5729   bool call_data_undefined = this->call_data_undefined();
5730   CallApiFunctionStubHelper(masm, ParameterCount(argc), is_store,
5731                             call_data_undefined);
5732 }
5733
5734
5735 void CallApiGetterStub::Generate(MacroAssembler* masm) {
5736   // ----------- S t a t e -------------
5737   //  -- sp[0]                  : name
5738   //  -- sp[4 - kArgsLength*4]  : PropertyCallbackArguments object
5739   //  -- ...
5740   //  -- a2                     : api_function_address
5741   // -----------------------------------
5742
5743   Register api_function_address = ApiGetterDescriptor::function_address();
5744   DCHECK(api_function_address.is(a2));
5745
5746   __ mov(a0, sp);  // a0 = Handle<Name>
5747   __ Addu(a1, a0, Operand(1 * kPointerSize));  // a1 = PCA
5748
5749   const int kApiStackSpace = 1;
5750   FrameScope frame_scope(masm, StackFrame::MANUAL);
5751   __ EnterExitFrame(false, kApiStackSpace);
5752
5753   // Create PropertyAccessorInfo instance on the stack above the exit frame with
5754   // a1 (internal::Object** args_) as the data.
5755   __ sw(a1, MemOperand(sp, 1 * kPointerSize));
5756   __ Addu(a1, sp, Operand(1 * kPointerSize));  // a1 = AccessorInfo&
5757
5758   const int kStackUnwindSpace = PropertyCallbackArguments::kArgsLength + 1;
5759
5760   ExternalReference thunk_ref =
5761       ExternalReference::invoke_accessor_getter_callback(isolate());
5762   CallApiFunctionAndReturn(masm, api_function_address, thunk_ref,
5763                            kStackUnwindSpace, kInvalidStackOffset,
5764                            MemOperand(fp, 6 * kPointerSize), NULL);
5765 }
5766
5767
5768 #undef __
5769
5770 }  // namespace internal
5771 }  // namespace v8
5772
5773 #endif  // V8_TARGET_ARCH_MIPS