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