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