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