quick_entrypoints_arm64.S revision 4808846b2a8647a448aaa05d561a4f60b190196b
1/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "asm_support_arm64.S"
18
19#include "arch/quick_alloc_entrypoints.S"
20
21
22    /*
23     * Macro that sets up the callee save frame to conform with
24     * Runtime::CreateCalleeSaveMethod(kSaveAll)
25     */
26.macro SETUP_SAVE_ALL_CALLEE_SAVE_FRAME
27    adrp xIP0, :got:_ZN3art7Runtime9instance_E
28    ldr xIP0, [xIP0, #:got_lo12:_ZN3art7Runtime9instance_E]
29
30    // Our registers aren't intermixed - just spill in order.
31    ldr xIP0, [xIP0]  // xIP0 = & (art::Runtime * art::Runtime.instance_) .
32
33    // xIP0 = (ArtMethod*) Runtime.instance_.callee_save_methods[kRefAndArgs]  .
34    THIS_LOAD_REQUIRES_READ_BARRIER
35    ldr xIP0, [xIP0, RUNTIME_SAVE_ALL_CALLEE_SAVE_FRAME_OFFSET ]
36
37    sub sp, sp, #176
38    .cfi_adjust_cfa_offset 176
39
40    // Ugly compile-time check, but we only have the preprocessor.
41#if (FRAME_SIZE_SAVE_ALL_CALLEE_SAVE != 176)
42#error "SAVE_ALL_CALLEE_SAVE_FRAME(ARM64) size not as expected."
43#endif
44
45    // FP callee-saves
46    stp d8, d9,   [sp, #8]
47    stp d10, d11, [sp, #24]
48    stp d12, d13, [sp, #40]
49    stp d14, d15, [sp, #56]
50
51    // Reserved registers
52    stp xSELF, xSUSPEND, [sp, #72]
53    .cfi_rel_offset x18, 72
54    .cfi_rel_offset x19, 80
55
56    // callee-saves
57    stp x20, x21, [sp, #88]
58    .cfi_rel_offset x20, 88
59    .cfi_rel_offset x21, 96
60
61    stp x22, x23, [sp, #104]
62    .cfi_rel_offset x22, 104
63    .cfi_rel_offset x23, 112
64
65    stp x24, x25, [sp, #120]
66    .cfi_rel_offset x24, 120
67    .cfi_rel_offset x25, 128
68
69    stp x26, x27, [sp, #136]
70    .cfi_rel_offset x26, 136
71    .cfi_rel_offset x27, 144
72
73    stp x28, x29, [sp, #152]
74    .cfi_rel_offset x28, 152
75    .cfi_rel_offset x29, 160
76
77    str xLR, [sp, #168]
78    .cfi_rel_offset x30, 168
79
80    // Loads appropriate callee-save-method
81    str xIP0, [sp]    // Store ArtMethod* Runtime::callee_save_methods_[kRefsAndArgs]
82    // Place sp in Thread::Current()->top_quick_frame.
83    mov xIP0, sp
84    str xIP0, [xSELF, # THREAD_TOP_QUICK_FRAME_OFFSET]
85.endm
86
87    /*
88     * Macro that sets up the callee save frame to conform with
89     * Runtime::CreateCalleeSaveMethod(kRefsOnly).
90     */
91.macro SETUP_REFS_ONLY_CALLEE_SAVE_FRAME
92    adrp xIP0, :got:_ZN3art7Runtime9instance_E
93    ldr xIP0, [xIP0, #:got_lo12:_ZN3art7Runtime9instance_E]
94
95    // Our registers aren't intermixed - just spill in order.
96    ldr xIP0, [xIP0]  // xIP0 = & (art::Runtime * art::Runtime.instance_) .
97
98    // xIP0 = (ArtMethod*) Runtime.instance_.callee_save_methods[kRefAndArgs]  .
99    THIS_LOAD_REQUIRES_READ_BARRIER
100    ldr xIP0, [xIP0, RUNTIME_REFS_ONLY_CALLEE_SAVE_FRAME_OFFSET ]
101
102    sub sp, sp, #96
103    .cfi_adjust_cfa_offset 96
104
105    // Ugly compile-time check, but we only have the preprocessor.
106#if (FRAME_SIZE_REFS_ONLY_CALLEE_SAVE != 96)
107#error "REFS_ONLY_CALLEE_SAVE_FRAME(ARM64) size not as expected."
108#endif
109
110    // Callee-saves
111    stp x20, x21,  [sp, #8]
112    .cfi_rel_offset x20, 8
113    .cfi_rel_offset x21, 16
114
115    stp x22, x23, [sp, #24]
116    .cfi_rel_offset x22, 24
117    .cfi_rel_offset x23, 32
118
119    stp x24, x25, [sp, #40]
120    .cfi_rel_offset x24, 40
121    .cfi_rel_offset x25, 48
122
123    stp x26, x27, [sp, #56]
124    .cfi_rel_offset x26, 56
125    .cfi_rel_offset x27, 64
126
127    stp x28, x29, [sp, #72]
128    .cfi_rel_offset x28, 72
129    .cfi_rel_offset x29, 80
130
131    // LR
132    str xLR, [sp, #88]
133    .cfi_rel_offset x30, 88
134
135    // Save xSELF to xETR.
136    mov xETR, xSELF
137
138    // Loads appropriate callee-save-method
139    str xIP0, [sp]    // Store ArtMethod* Runtime::callee_save_methods_[kRefsOnly]
140    // Place sp in Thread::Current()->top_quick_frame.
141    mov xIP0, sp
142    str xIP0, [xSELF, # THREAD_TOP_QUICK_FRAME_OFFSET]
143.endm
144
145// TODO: Probably no need to restore registers preserved by aapcs64.
146.macro RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
147    // Restore xSELF.
148    mov xSELF, xETR
149
150    // Callee-saves
151    ldp x20, x21,  [sp, #8]
152    .cfi_restore x20
153    .cfi_restore x21
154
155    ldp x22, x23, [sp, #24]
156    .cfi_restore x22
157    .cfi_restore x23
158
159    ldp x24, x25, [sp, #40]
160    .cfi_restore x24
161    .cfi_restore x25
162
163    ldp x26, x27, [sp, #56]
164    .cfi_restore x26
165    .cfi_restore x27
166
167    ldp x28, x29, [sp, #72]
168    .cfi_restore x28
169    .cfi_restore x29
170
171    // LR
172    ldr xLR, [sp, #88]
173    .cfi_restore x30
174
175    add sp, sp, #96
176    .cfi_adjust_cfa_offset -96
177.endm
178
179.macro POP_REFS_ONLY_CALLEE_SAVE_FRAME
180    // Restore xSELF as it might be scratched.
181    mov xSELF, xETR
182    // ETR
183    ldr xETR, [sp, #16]
184    .cfi_restore x21
185
186    add sp, sp, #96
187    .cfi_adjust_cfa_offset -96
188.endm
189
190.macro RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME_AND_RETURN
191    RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
192    ret
193.endm
194
195
196.macro SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_INTERNAL
197    sub sp, sp, #224
198    .cfi_adjust_cfa_offset 224
199
200    // Ugly compile-time check, but we only have the preprocessor.
201#if (FRAME_SIZE_REFS_AND_ARGS_CALLEE_SAVE != 224)
202#error "REFS_AND_ARGS_CALLEE_SAVE_FRAME(ARM64) size not as expected."
203#endif
204
205    // FP args
206    stp d0, d1, [sp, #16]
207    stp d2, d3, [sp, #32]
208    stp d4, d5, [sp, #48]
209    stp d6, d7, [sp, #64]
210
211    // args and x20(callee-save)
212    stp x1,  x2, [sp, #80]
213    .cfi_rel_offset x1, 80
214    .cfi_rel_offset x2, 88
215
216    stp x3,  x4, [sp, #96]
217    .cfi_rel_offset x3, 96
218    .cfi_rel_offset x4, 104
219
220    stp x5,  x6, [sp, #112]
221    .cfi_rel_offset x5, 112
222    .cfi_rel_offset x6, 120
223
224    stp x7, x20, [sp, #128]
225    .cfi_rel_offset x7, 128
226    .cfi_rel_offset x20, 136
227
228    // Callee-saves.
229    stp x21, x22, [sp, #144]
230    .cfi_rel_offset x21, 144
231    .cfi_rel_offset x22, 152
232
233    stp x23, x24, [sp, #160]
234    .cfi_rel_offset x23, 160
235    .cfi_rel_offset x24, 168
236
237    stp x25, x26, [sp, #176]
238    .cfi_rel_offset x25, 176
239    .cfi_rel_offset x26, 184
240
241    stp x27, x28, [sp, #192]
242    .cfi_rel_offset x27, 192
243    .cfi_rel_offset x28, 200
244
245    // x29(callee-save) and LR
246    stp x29, xLR, [sp, #208]
247    .cfi_rel_offset x29, 208
248    .cfi_rel_offset x30, 216
249
250    // Save xSELF to xETR.
251    mov xETR, xSELF
252.endm
253
254    /*
255     * Macro that sets up the callee save frame to conform with
256     * Runtime::CreateCalleeSaveMethod(kRefsAndArgs).
257     *
258     * TODO This is probably too conservative - saving FP & LR.
259     */
260.macro SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME
261    adrp xIP0, :got:_ZN3art7Runtime9instance_E
262    ldr xIP0, [xIP0, #:got_lo12:_ZN3art7Runtime9instance_E]
263
264    // Our registers aren't intermixed - just spill in order.
265    ldr xIP0, [xIP0]  // xIP0 = & (art::Runtime * art::Runtime.instance_) .
266
267    // xIP0 = (ArtMethod*) Runtime.instance_.callee_save_methods[kRefAndArgs]  .
268    THIS_LOAD_REQUIRES_READ_BARRIER
269    ldr xIP0, [xIP0, RUNTIME_REFS_AND_ARGS_CALLEE_SAVE_FRAME_OFFSET ]
270
271    SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_INTERNAL
272
273    str xIP0, [sp]    // Store ArtMethod* Runtime::callee_save_methods_[kRefsAndArgs]
274    // Place sp in Thread::Current()->top_quick_frame.
275    mov xIP0, sp
276    str xIP0, [xSELF, # THREAD_TOP_QUICK_FRAME_OFFSET]
277.endm
278
279.macro SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_WITH_METHOD_IN_X0
280    SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_INTERNAL
281    str x0, [sp, #0]  // Store ArtMethod* to bottom of stack.
282    // Place sp in Thread::Current()->top_quick_frame.
283    mov xIP0, sp
284    str xIP0, [xSELF, # THREAD_TOP_QUICK_FRAME_OFFSET]
285.endm
286
287// TODO: Probably no need to restore registers preserved by aapcs64.
288.macro RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
289    // Restore xSELF.
290    mov xSELF, xETR
291
292    // FP args
293    ldp d0, d1, [sp, #16]
294    ldp d2, d3, [sp, #32]
295    ldp d4, d5, [sp, #48]
296    ldp d6, d7, [sp, #64]
297
298    // args and x20(callee-save)
299    ldp x1,  x2, [sp, #80]
300    .cfi_restore x1
301    .cfi_restore x2
302
303    ldp x3,  x4, [sp, #96]
304    .cfi_restore x3
305    .cfi_restore x4
306
307    ldp x5,  x6, [sp, #112]
308    .cfi_restore x5
309    .cfi_restore x6
310
311    ldp x7, x20, [sp, #128]
312    .cfi_restore x7
313    .cfi_restore x20
314
315    // Callee-saves.
316    ldp x21, x22, [sp, #144]
317    .cfi_restore x21
318    .cfi_restore x22
319
320    ldp x23, x24, [sp, #160]
321    .cfi_restore x23
322    .cfi_restore x24
323
324    ldp x25, x26, [sp, #176]
325    .cfi_restore x25
326    .cfi_restore x26
327
328    ldp x27, x28, [sp, #192]
329    .cfi_restore x27
330    .cfi_restore x28
331
332    // x29(callee-save) and LR
333    ldp x29, xLR, [sp, #208]
334    .cfi_restore x29
335    .cfi_restore x30
336
337    add sp, sp, #224
338    .cfi_adjust_cfa_offset -224
339.endm
340
341.macro RETURN_IF_RESULT_IS_ZERO
342    cbnz x0, 1f                // result non-zero branch over
343    ret                        // return
3441:
345.endm
346
347.macro RETURN_IF_RESULT_IS_NON_ZERO
348    cbz x0, 1f                 // result zero branch over
349    ret                        // return
3501:
351.endm
352
353    /*
354     * Macro that set calls through to artDeliverPendingExceptionFromCode, where the pending
355     * exception is Thread::Current()->exception_
356     */
357.macro DELIVER_PENDING_EXCEPTION
358    SETUP_SAVE_ALL_CALLEE_SAVE_FRAME
359    mov x0, xSELF
360
361    // Point of no return.
362    b artDeliverPendingExceptionFromCode  // artDeliverPendingExceptionFromCode(Thread*)
363    brk 0  // Unreached
364.endm
365
366.macro RETURN_OR_DELIVER_PENDING_EXCEPTION_REG reg
367    ldr \reg, [xSELF, # THREAD_EXCEPTION_OFFSET]   // Get exception field.
368    cbnz \reg, 1f
369    ret
3701:
371    DELIVER_PENDING_EXCEPTION
372.endm
373
374.macro RETURN_OR_DELIVER_PENDING_EXCEPTION
375    RETURN_OR_DELIVER_PENDING_EXCEPTION_REG xIP0
376.endm
377
378// Same as above with x1. This is helpful in stubs that want to avoid clobbering another register.
379.macro RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
380    RETURN_OR_DELIVER_PENDING_EXCEPTION_REG x1
381.endm
382
383.macro RETURN_IF_W0_IS_ZERO_OR_DELIVER
384    cbnz w0, 1f                // result non-zero branch over
385    ret                        // return
3861:
387    DELIVER_PENDING_EXCEPTION
388.endm
389
390.macro NO_ARG_RUNTIME_EXCEPTION c_name, cxx_name
391    .extern \cxx_name
392ENTRY \c_name
393    SETUP_SAVE_ALL_CALLEE_SAVE_FRAME  // save all registers as basis for long jump context
394    mov x0, xSELF                     // pass Thread::Current
395    b   \cxx_name                     // \cxx_name(Thread*)
396END \c_name
397.endm
398
399.macro ONE_ARG_RUNTIME_EXCEPTION c_name, cxx_name
400    .extern \cxx_name
401ENTRY \c_name
402    SETUP_SAVE_ALL_CALLEE_SAVE_FRAME  // save all registers as basis for long jump context.
403    mov x1, xSELF                     // pass Thread::Current.
404    b   \cxx_name                     // \cxx_name(arg, Thread*).
405    brk 0
406END \c_name
407.endm
408
409.macro TWO_ARG_RUNTIME_EXCEPTION c_name, cxx_name
410    .extern \cxx_name
411ENTRY \c_name
412    SETUP_SAVE_ALL_CALLEE_SAVE_FRAME  // save all registers as basis for long jump context
413    mov x2, xSELF                     // pass Thread::Current
414    b   \cxx_name                     // \cxx_name(arg1, arg2, Thread*)
415    brk 0
416END \c_name
417.endm
418
419    /*
420     * Called by managed code, saves callee saves and then calls artThrowException
421     * that will place a mock Method* at the bottom of the stack. Arg1 holds the exception.
422     */
423ONE_ARG_RUNTIME_EXCEPTION art_quick_deliver_exception, artDeliverExceptionFromCode
424
425    /*
426     * Called by managed code to create and deliver a NullPointerException.
427     */
428NO_ARG_RUNTIME_EXCEPTION art_quick_throw_null_pointer_exception, artThrowNullPointerExceptionFromCode
429
430    /*
431     * Called by managed code to create and deliver an ArithmeticException.
432     */
433NO_ARG_RUNTIME_EXCEPTION art_quick_throw_div_zero, artThrowDivZeroFromCode
434
435    /*
436     * Called by managed code to create and deliver an ArrayIndexOutOfBoundsException. Arg1 holds
437     * index, arg2 holds limit.
438     */
439TWO_ARG_RUNTIME_EXCEPTION art_quick_throw_array_bounds, artThrowArrayBoundsFromCode
440
441    /*
442     * Called by managed code to create and deliver a StackOverflowError.
443     */
444NO_ARG_RUNTIME_EXCEPTION art_quick_throw_stack_overflow, artThrowStackOverflowFromCode
445
446    /*
447     * Called by managed code to create and deliver a NoSuchMethodError.
448     */
449ONE_ARG_RUNTIME_EXCEPTION art_quick_throw_no_such_method, artThrowNoSuchMethodFromCode
450
451    /*
452     * All generated callsites for interface invokes and invocation slow paths will load arguments
453     * as usual - except instead of loading arg0/x0 with the target Method*, arg0/x0 will contain
454     * the method_idx.  This wrapper will save arg1-arg3, load the caller's Method*, align the
455     * stack and call the appropriate C helper.
456     * NOTE: "this" is first visible argument of the target, and so can be found in arg1/x1.
457     *
458     * The helper will attempt to locate the target and return a 128-bit result in x0/x1 consisting
459     * of the target Method* in x0 and method->code_ in x1.
460     *
461     * If unsuccessful, the helper will return NULL/????. There will be a pending exception in the
462     * thread and we branch to another stub to deliver it.
463     *
464     * On success this wrapper will restore arguments and *jump* to the target, leaving the lr
465     * pointing back to the original caller.
466     *
467     * Adapted from ARM32 code.
468     *
469     * Clobbers xIP0.
470     */
471.macro INVOKE_TRAMPOLINE c_name, cxx_name
472    .extern \cxx_name
473ENTRY \c_name
474    SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME  // save callee saves in case allocation triggers GC
475    // Helper signature is always
476    // (method_idx, *this_object, *caller_method, *self, sp)
477
478    ldr    w2, [sp, #FRAME_SIZE_REFS_AND_ARGS_CALLEE_SAVE]  // pass caller Method*
479    mov    x3, xSELF                      // pass Thread::Current
480    mov    x4, sp
481    bl     \cxx_name                      // (method_idx, this, caller, Thread*, SP)
482    mov    xIP0, x1                       // save Method*->code_
483    RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
484    cbz    x0, 1f                         // did we find the target? if not go to exception delivery
485    br     xIP0                           // tail call to target
4861:
487    DELIVER_PENDING_EXCEPTION
488END \c_name
489.endm
490
491INVOKE_TRAMPOLINE art_quick_invoke_interface_trampoline, artInvokeInterfaceTrampoline
492INVOKE_TRAMPOLINE art_quick_invoke_interface_trampoline_with_access_check, artInvokeInterfaceTrampolineWithAccessCheck
493
494INVOKE_TRAMPOLINE art_quick_invoke_static_trampoline_with_access_check, artInvokeStaticTrampolineWithAccessCheck
495INVOKE_TRAMPOLINE art_quick_invoke_direct_trampoline_with_access_check, artInvokeDirectTrampolineWithAccessCheck
496INVOKE_TRAMPOLINE art_quick_invoke_super_trampoline_with_access_check, artInvokeSuperTrampolineWithAccessCheck
497INVOKE_TRAMPOLINE art_quick_invoke_virtual_trampoline_with_access_check, artInvokeVirtualTrampolineWithAccessCheck
498
499
500.macro INVOKE_STUB_CREATE_FRAME
501
502SAVE_SIZE=15*8   // x4, x5, x20, x21, x22, x23, x24, x25, x26, x27, x28, xSUSPEND, SP, LR, FP saved.
503SAVE_SIZE_AND_METHOD=SAVE_SIZE+STACK_REFERENCE_SIZE
504
505
506    mov x9, sp                             // Save stack pointer.
507    .cfi_register sp,x9
508
509    add x10, x2, # SAVE_SIZE_AND_METHOD    // calculate size of frame.
510    sub x10, sp, x10                       // Calculate SP position - saves + ArtMethod* +  args
511    and x10, x10, # ~0xf                   // Enforce 16 byte stack alignment.
512    mov sp, x10                            // Set new SP.
513
514    sub x10, x9, #SAVE_SIZE                // Calculate new FP (later). Done here as we must move SP
515    .cfi_def_cfa_register x10              // before this.
516    .cfi_adjust_cfa_offset SAVE_SIZE
517
518    str x28, [x10, #112]
519    .cfi_rel_offset x28, 112
520
521    stp x26, x27, [x10, #96]
522    .cfi_rel_offset x26, 96
523    .cfi_rel_offset x27, 104
524
525    stp x24, x25, [x10, #80]
526    .cfi_rel_offset x24, 80
527    .cfi_rel_offset x25, 88
528
529    stp x22, x23, [x10, #64]
530    .cfi_rel_offset x22, 64
531    .cfi_rel_offset x23, 72
532
533    stp x20, x21, [x10, #48]
534    .cfi_rel_offset x20, 48
535    .cfi_rel_offset x21, 56
536
537    stp x9, xSUSPEND, [x10, #32]           // Save old stack pointer and xSUSPEND
538    .cfi_rel_offset sp, 32
539    .cfi_rel_offset x19, 40
540
541    stp x4, x5, [x10, #16]                 // Save result and shorty addresses.
542    .cfi_rel_offset x4, 16
543    .cfi_rel_offset x5, 24
544
545    stp xFP, xLR, [x10]                    // Store LR & FP.
546    .cfi_rel_offset x29, 0
547    .cfi_rel_offset x30, 8
548
549    mov xFP, x10                           // Use xFP now, as it's callee-saved.
550    .cfi_def_cfa_register x29
551    mov xSELF, x3                          // Move thread pointer into SELF register.
552    mov wSUSPEND, #SUSPEND_CHECK_INTERVAL  // reset wSUSPEND to suspend check interval
553
554    // Copy arguments into stack frame.
555    // Use simple copy routine for now.
556    // 4 bytes per slot.
557    // X1 - source address
558    // W2 - args length
559    // X9 - destination address.
560    // W10 - temporary
561    add x9, sp, #4                         // Destination address is bottom of stack + NULL.
562
563    // Use \@ to differentiate between macro invocations.
564.LcopyParams\@:
565    cmp w2, #0
566    beq .LendCopyParams\@
567    sub w2, w2, #4      // Need 65536 bytes of range.
568    ldr w10, [x1, x2]
569    str w10, [x9, x2]
570
571    b .LcopyParams\@
572
573.LendCopyParams\@:
574
575    // Store NULL into StackReference<Method>* at bottom of frame.
576    str wzr, [sp]
577
578#if (STACK_REFERENCE_SIZE != 4)
579#error "STACK_REFERENCE_SIZE(ARM64) size not as expected."
580#endif
581.endm
582
583.macro INVOKE_STUB_CALL_AND_RETURN
584
585    // load method-> METHOD_QUICK_CODE_OFFSET
586    ldr x9, [x0 , #MIRROR_ART_METHOD_QUICK_CODE_OFFSET_64]
587    // Branch to method.
588    blr x9
589
590    // Restore return value address and shorty address.
591    ldp x4,x5, [xFP, #16]
592    .cfi_restore x4
593    .cfi_restore x5
594
595    ldr x28, [xFP, #112]
596    .cfi_restore x28
597
598    ldp x26, x27, [xFP, #96]
599    .cfi_restore x26
600    .cfi_restore x27
601
602    ldp x24, x25, [xFP, #80]
603    .cfi_restore x24
604    .cfi_restore x25
605
606    ldp x22, x23, [xFP, #64]
607    .cfi_restore x22
608    .cfi_restore x23
609
610    ldp x20, x21, [xFP, #48]
611    .cfi_restore x20
612    .cfi_restore x21
613
614    // Store result (w0/x0/s0/d0) appropriately, depending on resultType.
615    ldrb w10, [x5]
616
617    // Don't set anything for a void type.
618    cmp w10, #'V'
619    beq .Lexit_art_quick_invoke_stub\@
620
621    cmp w10, #'D'
622    bne .Lreturn_is_float\@
623    str d0, [x4]
624    b .Lexit_art_quick_invoke_stub\@
625
626.Lreturn_is_float\@:
627    cmp w10, #'F'
628    bne .Lreturn_is_int\@
629    str s0, [x4]
630    b .Lexit_art_quick_invoke_stub\@
631
632    // Just store x0. Doesn't matter if it is 64 or 32 bits.
633.Lreturn_is_int\@:
634    str x0, [x4]
635
636.Lexit_art_quick_invoke_stub\@:
637    ldp x2, xSUSPEND, [xFP, #32]   // Restore stack pointer and xSUSPEND.
638    .cfi_restore x19
639    mov sp, x2
640    .cfi_restore sp
641
642    ldp xFP, xLR, [xFP]    // Restore old frame pointer and link register.
643    .cfi_restore x29
644    .cfi_restore x30
645
646    ret
647
648.endm
649
650
651/*
652 *  extern"C" void art_quick_invoke_stub(ArtMethod *method,   x0
653 *                                       uint32_t  *args,     x1
654 *                                       uint32_t argsize,    w2
655 *                                       Thread *self,        x3
656 *                                       JValue *result,      x4
657 *                                       char   *shorty);     x5
658 *  +----------------------+
659 *  |                      |
660 *  |  C/C++ frame         |
661 *  |       LR''           |
662 *  |       FP''           | <- SP'
663 *  +----------------------+
664 *  +----------------------+
665 *  |        x19           | <- Used as wSUSPEND, won't be restored by managed code.
666 *  |        SP'           |
667 *  |        X5            |
668 *  |        X4            |        Saved registers
669 *  |        LR'           |
670 *  |        FP'           | <- FP
671 *  +----------------------+
672 *  | uint32_t out[n-1]    |
673 *  |    :      :          |        Outs
674 *  | uint32_t out[0]      |
675 *  | StackRef<ArtMethod>  | <- SP  value=null
676 *  +----------------------+
677 *
678 * Outgoing registers:
679 *  x0    - Method*
680 *  x1-x7 - integer parameters.
681 *  d0-d7 - Floating point parameters.
682 *  xSELF = self
683 *  wSUSPEND = suspend count
684 *  SP = & of ArtMethod*
685 *  x1 = "this" pointer.
686 *
687 */
688ENTRY art_quick_invoke_stub
689    // Spill registers as per AACPS64 calling convention.
690    INVOKE_STUB_CREATE_FRAME
691
692    // Fill registers x/w1 to x/w7 and s/d0 to s/d7 with parameters.
693    // Parse the passed shorty to determine which register to load.
694    // Load addresses for routines that load WXSD registers.
695    adr  x11, .LstoreW2
696    adr  x12, .LstoreX2
697    adr  x13, .LstoreS0
698    adr  x14, .LstoreD0
699
700    // Initialize routine offsets to 0 for integers and floats.
701    // x8 for integers, x15 for floating point.
702    mov x8, #0
703    mov x15, #0
704
705    add x10, x5, #1         // Load shorty address, plus one to skip return value.
706    ldr w1, [x9],#4         // Load "this" parameter, and increment arg pointer.
707
708    // Loop to fill registers.
709.LfillRegisters:
710    ldrb w17, [x10], #1       // Load next character in signature, and increment.
711    cbz w17, .LcallFunction   // Exit at end of signature. Shorty 0 terminated.
712
713    cmp  w17, #'F' // is this a float?
714    bne .LisDouble
715
716    cmp x15, # 8*12         // Skip this load if all registers full.
717    beq .Ladvance4
718
719    add x17, x13, x15       // Calculate subroutine to jump to.
720    br  x17
721
722.LisDouble:
723    cmp w17, #'D'           // is this a double?
724    bne .LisLong
725
726    cmp x15, # 8*12         // Skip this load if all registers full.
727    beq .Ladvance8
728
729    add x17, x14, x15       // Calculate subroutine to jump to.
730    br x17
731
732.LisLong:
733    cmp w17, #'J'           // is this a long?
734    bne .LisOther
735
736    cmp x8, # 6*12          // Skip this load if all registers full.
737    beq .Ladvance8
738
739    add x17, x12, x8        // Calculate subroutine to jump to.
740    br x17
741
742.LisOther:                  // Everything else takes one vReg.
743    cmp x8, # 6*12          // Skip this load if all registers full.
744    beq .Ladvance4
745
746    add x17, x11, x8        // Calculate subroutine to jump to.
747    br x17
748
749.Ladvance4:
750    add x9, x9, #4
751    b .LfillRegisters
752
753.Ladvance8:
754    add x9, x9, #8
755    b .LfillRegisters
756
757// Macro for loading a parameter into a register.
758//  counter - the register with offset into these tables
759//  size - the size of the register - 4 or 8 bytes.
760//  register - the name of the register to be loaded.
761.macro LOADREG counter size register return
762    ldr \register , [x9], #\size
763    add \counter, \counter, 12
764    b \return
765.endm
766
767// Store ints.
768.LstoreW2:
769    LOADREG x8 4 w2 .LfillRegisters
770    LOADREG x8 4 w3 .LfillRegisters
771    LOADREG x8 4 w4 .LfillRegisters
772    LOADREG x8 4 w5 .LfillRegisters
773    LOADREG x8 4 w6 .LfillRegisters
774    LOADREG x8 4 w7 .LfillRegisters
775
776// Store longs.
777.LstoreX2:
778    LOADREG x8 8 x2 .LfillRegisters
779    LOADREG x8 8 x3 .LfillRegisters
780    LOADREG x8 8 x4 .LfillRegisters
781    LOADREG x8 8 x5 .LfillRegisters
782    LOADREG x8 8 x6 .LfillRegisters
783    LOADREG x8 8 x7 .LfillRegisters
784
785// Store singles.
786.LstoreS0:
787    LOADREG x15 4 s0 .LfillRegisters
788    LOADREG x15 4 s1 .LfillRegisters
789    LOADREG x15 4 s2 .LfillRegisters
790    LOADREG x15 4 s3 .LfillRegisters
791    LOADREG x15 4 s4 .LfillRegisters
792    LOADREG x15 4 s5 .LfillRegisters
793    LOADREG x15 4 s6 .LfillRegisters
794    LOADREG x15 4 s7 .LfillRegisters
795
796// Store doubles.
797.LstoreD0:
798    LOADREG x15 8 d0 .LfillRegisters
799    LOADREG x15 8 d1 .LfillRegisters
800    LOADREG x15 8 d2 .LfillRegisters
801    LOADREG x15 8 d3 .LfillRegisters
802    LOADREG x15 8 d4 .LfillRegisters
803    LOADREG x15 8 d5 .LfillRegisters
804    LOADREG x15 8 d6 .LfillRegisters
805    LOADREG x15 8 d7 .LfillRegisters
806
807
808.LcallFunction:
809
810    INVOKE_STUB_CALL_AND_RETURN
811
812END art_quick_invoke_stub
813
814/*  extern"C"
815 *     void art_quick_invoke_static_stub(ArtMethod *method,   x0
816 *                                       uint32_t  *args,     x1
817 *                                       uint32_t argsize,    w2
818 *                                       Thread *self,        x3
819 *                                       JValue *result,      x4
820 *                                       char   *shorty);     x5
821 */
822ENTRY art_quick_invoke_static_stub
823    // Spill registers as per AACPS64 calling convention.
824    INVOKE_STUB_CREATE_FRAME
825
826    // Fill registers x/w1 to x/w7 and s/d0 to s/d7 with parameters.
827    // Parse the passed shorty to determine which register to load.
828    // Load addresses for routines that load WXSD registers.
829    adr  x11, .LstoreW1_2
830    adr  x12, .LstoreX1_2
831    adr  x13, .LstoreS0_2
832    adr  x14, .LstoreD0_2
833
834    // Initialize routine offsets to 0 for integers and floats.
835    // x8 for integers, x15 for floating point.
836    mov x8, #0
837    mov x15, #0
838
839    add x10, x5, #1     // Load shorty address, plus one to skip return value.
840
841    // Loop to fill registers.
842.LfillRegisters2:
843    ldrb w17, [x10], #1         // Load next character in signature, and increment.
844    cbz w17, .LcallFunction2    // Exit at end of signature. Shorty 0 terminated.
845
846    cmp  w17, #'F'          // is this a float?
847    bne .LisDouble2
848
849    cmp x15, # 8*12         // Skip this load if all registers full.
850    beq .Ladvance4_2
851
852    add x17, x13, x15       // Calculate subroutine to jump to.
853    br  x17
854
855.LisDouble2:
856    cmp w17, #'D'           // is this a double?
857    bne .LisLong2
858
859    cmp x15, # 8*12         // Skip this load if all registers full.
860    beq .Ladvance8_2
861
862    add x17, x14, x15       // Calculate subroutine to jump to.
863    br x17
864
865.LisLong2:
866    cmp w17, #'J'           // is this a long?
867    bne .LisOther2
868
869    cmp x8, # 7*12          // Skip this load if all registers full.
870    beq .Ladvance8_2
871
872    add x17, x12, x8        // Calculate subroutine to jump to.
873    br x17
874
875.LisOther2:                 // Everything else takes one vReg.
876    cmp x8, # 7*12          // Skip this load if all registers full.
877    beq .Ladvance4_2
878
879    add x17, x11, x8        // Calculate subroutine to jump to.
880    br x17
881
882.Ladvance4_2:
883    add x9, x9, #4
884    b .LfillRegisters2
885
886.Ladvance8_2:
887    add x9, x9, #8
888    b .LfillRegisters2
889
890// Store ints.
891.LstoreW1_2:
892    LOADREG x8 4 w1 .LfillRegisters2
893    LOADREG x8 4 w2 .LfillRegisters2
894    LOADREG x8 4 w3 .LfillRegisters2
895    LOADREG x8 4 w4 .LfillRegisters2
896    LOADREG x8 4 w5 .LfillRegisters2
897    LOADREG x8 4 w6 .LfillRegisters2
898    LOADREG x8 4 w7 .LfillRegisters2
899
900// Store longs.
901.LstoreX1_2:
902    LOADREG x8 8 x1 .LfillRegisters2
903    LOADREG x8 8 x2 .LfillRegisters2
904    LOADREG x8 8 x3 .LfillRegisters2
905    LOADREG x8 8 x4 .LfillRegisters2
906    LOADREG x8 8 x5 .LfillRegisters2
907    LOADREG x8 8 x6 .LfillRegisters2
908    LOADREG x8 8 x7 .LfillRegisters2
909
910// Store singles.
911.LstoreS0_2:
912    LOADREG x15 4 s0 .LfillRegisters2
913    LOADREG x15 4 s1 .LfillRegisters2
914    LOADREG x15 4 s2 .LfillRegisters2
915    LOADREG x15 4 s3 .LfillRegisters2
916    LOADREG x15 4 s4 .LfillRegisters2
917    LOADREG x15 4 s5 .LfillRegisters2
918    LOADREG x15 4 s6 .LfillRegisters2
919    LOADREG x15 4 s7 .LfillRegisters2
920
921// Store doubles.
922.LstoreD0_2:
923    LOADREG x15 8 d0 .LfillRegisters2
924    LOADREG x15 8 d1 .LfillRegisters2
925    LOADREG x15 8 d2 .LfillRegisters2
926    LOADREG x15 8 d3 .LfillRegisters2
927    LOADREG x15 8 d4 .LfillRegisters2
928    LOADREG x15 8 d5 .LfillRegisters2
929    LOADREG x15 8 d6 .LfillRegisters2
930    LOADREG x15 8 d7 .LfillRegisters2
931
932
933.LcallFunction2:
934
935    INVOKE_STUB_CALL_AND_RETURN
936
937END art_quick_invoke_static_stub
938
939
940
941    /*
942     * On entry x0 is uintptr_t* gprs_ and x1 is uint64_t* fprs_
943     */
944
945ENTRY art_quick_do_long_jump
946    // Load FPRs
947    ldp d0, d1, [x1], #16
948    ldp d2, d3, [x1], #16
949    ldp d4, d5, [x1], #16
950    ldp d6, d7, [x1], #16
951    ldp d8, d9, [x1], #16
952    ldp d10, d11, [x1], #16
953    ldp d12, d13, [x1], #16
954    ldp d14, d15, [x1], #16
955    ldp d16, d17, [x1], #16
956    ldp d18, d19, [x1], #16
957    ldp d20, d21, [x1], #16
958    ldp d22, d23, [x1], #16
959    ldp d24, d25, [x1], #16
960    ldp d26, d27, [x1], #16
961    ldp d28, d29, [x1], #16
962    ldp d30, d31, [x1]
963
964    // Load GPRs
965    // TODO: lots of those are smashed, could optimize.
966    add x0, x0, #30*8
967    ldp x30, x1, [x0], #-16
968    ldp x28, x29, [x0], #-16
969    ldp x26, x27, [x0], #-16
970    ldp x24, x25, [x0], #-16
971    ldp x22, x23, [x0], #-16
972    ldp x20, x21, [x0], #-16
973    ldp x18, x19, [x0], #-16
974    ldp x16, x17, [x0], #-16
975    ldp x14, x15, [x0], #-16
976    ldp x12, x13, [x0], #-16
977    ldp x10, x11, [x0], #-16
978    ldp x8, x9, [x0], #-16
979    ldp x6, x7, [x0], #-16
980    ldp x4, x5, [x0], #-16
981    ldp x2, x3, [x0], #-16
982    mov sp, x1
983
984    // TODO: Is it really OK to use LR for the target PC?
985    mov x0, #0
986    mov x1, #0
987    br  xLR
988END art_quick_do_long_jump
989
990    /*
991     * Entry from managed code that calls artLockObjectFromCode, may block for GC. x0 holds the
992     * possibly null object to lock.
993     *
994     * Derived from arm32 code.
995     */
996    .extern artLockObjectFromCode
997ENTRY art_quick_lock_object
998    cbz    w0, .Lslow_lock
999    add    x4, x0, #MIRROR_OBJECT_LOCK_WORD_OFFSET  // exclusive load/store has no immediate anymore
1000.Lretry_lock:
1001    ldr    w2, [xSELF, #THREAD_ID_OFFSET] // TODO: Can the thread ID really change during the loop?
1002    ldxr   w1, [x4]
1003    cbnz   w1, .Lnot_unlocked         // already thin locked
1004    stxr   w3, w2, [x4]
1005    cbnz   w3, .Lstrex_fail           // store failed, retry
1006    dmb    ishld                      // full (LoadLoad|LoadStore) memory barrier
1007    ret
1008.Lstrex_fail:
1009    b .Lretry_lock                    // unlikely forward branch, need to reload and recheck r1/r2
1010.Lnot_unlocked:
1011    lsr    w3, w1, 30
1012    cbnz   w3, .Lslow_lock            // if either of the top two bits are set, go slow path
1013    eor    w2, w1, w2                 // lock_word.ThreadId() ^ self->ThreadId()
1014    uxth   w2, w2                     // zero top 16 bits
1015    cbnz   w2, .Lslow_lock            // lock word and self thread id's match -> recursive lock
1016                                      // else contention, go to slow path
1017    add    w2, w1, #65536             // increment count in lock word placing in w2 for storing
1018    lsr    w1, w2, 30                 // if either of the top two bits are set, we overflowed.
1019    cbnz   w1, .Lslow_lock            // if we overflow the count go slow path
1020    str    w2, [x0, #MIRROR_OBJECT_LOCK_WORD_OFFSET]  // no need for stxr as we hold the lock
1021    ret
1022.Lslow_lock:
1023    SETUP_REFS_ONLY_CALLEE_SAVE_FRAME  // save callee saves in case we block
1024    mov    x1, xSELF                  // pass Thread::Current
1025    bl     artLockObjectFromCode      // (Object* obj, Thread*)
1026    RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
1027    RETURN_IF_W0_IS_ZERO_OR_DELIVER
1028END art_quick_lock_object
1029
1030    /*
1031     * Entry from managed code that calls artUnlockObjectFromCode and delivers exception on failure.
1032     * x0 holds the possibly null object to lock.
1033     *
1034     * Derived from arm32 code.
1035     */
1036    .extern artUnlockObjectFromCode
1037ENTRY art_quick_unlock_object
1038    cbz    x0, .Lslow_unlock
1039    ldr    w1, [x0, #MIRROR_OBJECT_LOCK_WORD_OFFSET]
1040    lsr    w2, w1, 30
1041    cbnz   w2, .Lslow_unlock          // if either of the top two bits are set, go slow path
1042    ldr    w2, [xSELF, #THREAD_ID_OFFSET]
1043    eor    w3, w1, w2                 // lock_word.ThreadId() ^ self->ThreadId()
1044    uxth   w3, w3                     // zero top 16 bits
1045    cbnz   w3, .Lslow_unlock          // do lock word and self thread id's match?
1046    cmp    w1, #65536
1047    bpl    .Lrecursive_thin_unlock
1048    // transition to unlocked, w3 holds 0
1049    dmb    ish                        // full (LoadStore|StoreStore) memory barrier
1050    str    w3, [x0, #MIRROR_OBJECT_LOCK_WORD_OFFSET]
1051    ret
1052.Lrecursive_thin_unlock:
1053    sub    w1, w1, #65536
1054    str    w1, [x0, #MIRROR_OBJECT_LOCK_WORD_OFFSET]
1055    ret
1056.Lslow_unlock:
1057    SETUP_REFS_ONLY_CALLEE_SAVE_FRAME  // save callee saves in case exception allocation triggers GC
1058    mov    x1, xSELF                  // pass Thread::Current
1059    bl     artUnlockObjectFromCode    // (Object* obj, Thread*)
1060    RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
1061    RETURN_IF_W0_IS_ZERO_OR_DELIVER
1062END art_quick_unlock_object
1063
1064    /*
1065     * Entry from managed code that calls artIsAssignableFromCode and on failure calls
1066     * artThrowClassCastException.
1067     */
1068    .extern artThrowClassCastException
1069ENTRY art_quick_check_cast
1070    // Store arguments and link register
1071    sub sp, sp, #32                     // Stack needs to be 16b aligned on calls
1072    .cfi_adjust_cfa_offset 32
1073    stp x0, x1, [sp]
1074    .cfi_rel_offset x0, 0
1075    .cfi_rel_offset x1, 8
1076    stp xSELF, xLR, [sp, #16]
1077    .cfi_rel_offset x18, 16
1078    .cfi_rel_offset x30, 24
1079
1080    // Call runtime code
1081    bl artIsAssignableFromCode
1082
1083    // Check for exception
1084    cbz x0, .Lthrow_class_cast_exception
1085
1086    // Restore and return
1087    ldp x0, x1, [sp]
1088    .cfi_restore x0
1089    .cfi_restore x1
1090    ldp xSELF, xLR, [sp, #16]
1091    .cfi_restore x18
1092    .cfi_restore x30
1093    add sp, sp, #32
1094    .cfi_adjust_cfa_offset -32
1095    ret
1096
1097.Lthrow_class_cast_exception:
1098    // Restore
1099    ldp x0, x1, [sp]
1100    .cfi_restore x0
1101    .cfi_restore x1
1102    ldp xSELF, xLR, [sp, #16]
1103    .cfi_restore x18
1104    .cfi_restore x30
1105    add sp, sp, #32
1106    .cfi_adjust_cfa_offset -32
1107
1108    SETUP_SAVE_ALL_CALLEE_SAVE_FRAME  // save all registers as basis for long jump context
1109    mov x2, xSELF                     // pass Thread::Current
1110    b artThrowClassCastException      // (Class*, Class*, Thread*)
1111    brk 0                             // We should not return here...
1112END art_quick_check_cast
1113
1114    /*
1115     * Entry from managed code for array put operations of objects where the value being stored
1116     * needs to be checked for compatibility.
1117     * x0 = array, x1 = index, x2 = value
1118     *
1119     * Currently all values should fit into w0/w1/w2, and w1 always will as indices are 32b. We
1120     * assume, though, that the upper 32b are zeroed out. At least for x1/w1 we can do better by
1121     * using index-zero-extension in load/stores.
1122     *
1123     * Temporaries: x3, x4
1124     * TODO: x4 OK? ip seems wrong here.
1125     */
1126ENTRY art_quick_aput_obj_with_null_and_bound_check
1127    tst x0, x0
1128    bne art_quick_aput_obj_with_bound_check
1129    b art_quick_throw_null_pointer_exception
1130END art_quick_aput_obj_with_null_and_bound_check
1131
1132ENTRY art_quick_aput_obj_with_bound_check
1133    ldr w3, [x0, #MIRROR_ARRAY_LENGTH_OFFSET]
1134    cmp w3, w1
1135    bhi art_quick_aput_obj
1136    mov x0, x1
1137    mov x1, x3
1138    b art_quick_throw_array_bounds
1139END art_quick_aput_obj_with_bound_check
1140
1141ENTRY art_quick_aput_obj
1142    cbz x2, .Ldo_aput_null
1143    ldr w3, [x0, #MIRROR_OBJECT_CLASS_OFFSET]            // Heap reference = 32b
1144                                                         // This also zero-extends to x3
1145    ldr w4, [x2, #MIRROR_OBJECT_CLASS_OFFSET]            // Heap reference = 32b
1146                                                         // This also zero-extends to x4
1147    ldr w3, [x3, #MIRROR_CLASS_COMPONENT_TYPE_OFFSET]    // Heap reference = 32b
1148                                                         // This also zero-extends to x3
1149    cmp w3, w4  // value's type == array's component type - trivial assignability
1150    bne .Lcheck_assignability
1151.Ldo_aput:
1152    add x3, x0, #MIRROR_OBJECT_ARRAY_DATA_OFFSET
1153                                                         // "Compress" = do nothing
1154    str w2, [x3, x1, lsl #2]                             // Heap reference = 32b
1155    ldr x3, [xSELF, #THREAD_CARD_TABLE_OFFSET]
1156    lsr x0, x0, #7
1157    strb w3, [x3, x0]
1158    ret
1159.Ldo_aput_null:
1160    add x3, x0, #MIRROR_OBJECT_ARRAY_DATA_OFFSET
1161                                                         // "Compress" = do nothing
1162    str w2, [x3, x1, lsl #2]                             // Heap reference = 32b
1163    ret
1164.Lcheck_assignability:
1165    // Store arguments and link register
1166    sub sp, sp, #48                     // Stack needs to be 16b aligned on calls
1167    .cfi_adjust_cfa_offset 48
1168    stp x0, x1, [sp]
1169    .cfi_rel_offset x0, 0
1170    .cfi_rel_offset x1, 8
1171    stp x2, xSELF, [sp, #16]
1172    .cfi_rel_offset x2, 16
1173    .cfi_rel_offset x18, 24
1174    str xLR, [sp, #32]
1175    .cfi_rel_offset x30, 32
1176
1177    // Call runtime code
1178    mov x0, x3              // Heap reference, 32b, "uncompress" = do nothing, already zero-extended
1179    mov x1, x4              // Heap reference, 32b, "uncompress" = do nothing, already zero-extended
1180    bl artIsAssignableFromCode
1181
1182    // Check for exception
1183    cbz x0, .Lthrow_array_store_exception
1184
1185    // Restore
1186    ldp x0, x1, [sp]
1187    .cfi_restore x0
1188    .cfi_restore x1
1189    ldp x2, xSELF, [sp, #16]
1190    .cfi_restore x2
1191    .cfi_restore x18
1192    ldr xLR, [sp, #32]
1193    .cfi_restore x30
1194    add sp, sp, #48
1195    .cfi_adjust_cfa_offset -48
1196
1197    add x3, x0, #MIRROR_OBJECT_ARRAY_DATA_OFFSET
1198                                                          // "Compress" = do nothing
1199    str w2, [x3, x1, lsl #2]                              // Heap reference = 32b
1200    ldr x3, [xSELF, #THREAD_CARD_TABLE_OFFSET]
1201    lsr x0, x0, #7
1202    strb w3, [x3, x0]
1203    ret
1204.Lthrow_array_store_exception:
1205    ldp x0, x1, [sp]
1206    .cfi_restore x0
1207    .cfi_restore x1
1208    ldp x2, xSELF, [sp, #16]
1209    .cfi_restore x2
1210    .cfi_restore x18
1211    ldr xLR, [sp, #32]
1212    .cfi_restore x30
1213    add sp, sp, #48
1214    .cfi_adjust_cfa_offset -48
1215
1216    SETUP_SAVE_ALL_CALLEE_SAVE_FRAME
1217    mov x1, x2                    // Pass value.
1218    mov x2, xSELF                 // Pass Thread::Current.
1219    b artThrowArrayStoreException // (Object*, Object*, Thread*).
1220    brk 0                         // Unreached.
1221END art_quick_aput_obj
1222
1223// Macro to facilitate adding new allocation entrypoints.
1224.macro TWO_ARG_DOWNCALL name, entrypoint, return
1225    .extern \entrypoint
1226ENTRY \name
1227    SETUP_REFS_ONLY_CALLEE_SAVE_FRAME  // save callee saves in case of GC
1228    mov    x2, xSELF                  // pass Thread::Current
1229    bl     \entrypoint                // (uint32_t type_idx, Method* method, Thread*)
1230    RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
1231    \return
1232    DELIVER_PENDING_EXCEPTION
1233END \name
1234.endm
1235
1236// Macro to facilitate adding new array allocation entrypoints.
1237.macro THREE_ARG_DOWNCALL name, entrypoint, return
1238    .extern \entrypoint
1239ENTRY \name
1240    SETUP_REFS_ONLY_CALLEE_SAVE_FRAME  // save callee saves in case of GC
1241    mov    x3, xSELF                  // pass Thread::Current
1242    bl     \entrypoint
1243    RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
1244    \return
1245    DELIVER_PENDING_EXCEPTION
1246END \name
1247.endm
1248
1249// Macros taking opportunity of code similarities for downcalls with referrer.
1250.macro ONE_ARG_REF_DOWNCALL name, entrypoint, return
1251    .extern \entrypoint
1252ENTRY \name
1253    SETUP_REFS_ONLY_CALLEE_SAVE_FRAME  // save callee saves in case of GC
1254    ldr    w1, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
1255    mov    x2, xSELF                  // pass Thread::Current
1256    bl     \entrypoint                // (uint32_t type_idx, Method* method, Thread*, SP)
1257    RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
1258    \return
1259END \name
1260.endm
1261
1262.macro TWO_ARG_REF_DOWNCALL name, entrypoint, return
1263    .extern \entrypoint
1264ENTRY \name
1265    SETUP_REFS_ONLY_CALLEE_SAVE_FRAME  // save callee saves in case of GC
1266    ldr    w2, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
1267    mov    x3, xSELF                  // pass Thread::Current
1268    bl     \entrypoint
1269    RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
1270    \return
1271END \name
1272.endm
1273
1274.macro THREE_ARG_REF_DOWNCALL name, entrypoint, return
1275    .extern \entrypoint
1276ENTRY \name
1277    SETUP_REFS_ONLY_CALLEE_SAVE_FRAME  // save callee saves in case of GC
1278    ldr    w3, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
1279    mov    x4, xSELF                  // pass Thread::Current
1280    bl     \entrypoint
1281    RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
1282    \return
1283END \name
1284.endm
1285
1286    /*
1287     * Entry from managed code that calls artHandleFillArrayDataFromCode and delivers exception on
1288     * failure.
1289     */
1290TWO_ARG_REF_DOWNCALL art_quick_handle_fill_data, artHandleFillArrayDataFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1291
1292    /*
1293     * Entry from managed code when uninitialized static storage, this stub will run the class
1294     * initializer and deliver the exception on error. On success the static storage base is
1295     * returned.
1296     */
1297TWO_ARG_DOWNCALL art_quick_initialize_static_storage, artInitializeStaticStorageFromCode, RETURN_IF_RESULT_IS_NON_ZERO
1298
1299TWO_ARG_DOWNCALL art_quick_initialize_type, artInitializeTypeFromCode, RETURN_IF_RESULT_IS_NON_ZERO
1300TWO_ARG_DOWNCALL art_quick_initialize_type_and_verify_access, artInitializeTypeAndVerifyAccessFromCode, RETURN_IF_RESULT_IS_NON_ZERO
1301
1302ONE_ARG_REF_DOWNCALL art_quick_get_boolean_static, artGetBooleanStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1303ONE_ARG_REF_DOWNCALL art_quick_get_byte_static, artGetByteStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1304ONE_ARG_REF_DOWNCALL art_quick_get_char_static, artGetCharStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1305ONE_ARG_REF_DOWNCALL art_quick_get_short_static, artGetShortStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1306ONE_ARG_REF_DOWNCALL art_quick_get32_static, artGet32StaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1307ONE_ARG_REF_DOWNCALL art_quick_get64_static, artGet64StaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1308ONE_ARG_REF_DOWNCALL art_quick_get_obj_static, artGetObjStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1309
1310TWO_ARG_REF_DOWNCALL art_quick_get_boolean_instance, artGetBooleanInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1311TWO_ARG_REF_DOWNCALL art_quick_get_byte_instance, artGetByteInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1312TWO_ARG_REF_DOWNCALL art_quick_get_char_instance, artGetCharInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1313TWO_ARG_REF_DOWNCALL art_quick_get_short_instance, artGetShortInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1314TWO_ARG_REF_DOWNCALL art_quick_get32_instance, artGet32InstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1315TWO_ARG_REF_DOWNCALL art_quick_get64_instance, artGet64InstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1316TWO_ARG_REF_DOWNCALL art_quick_get_obj_instance, artGetObjInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1317
1318TWO_ARG_REF_DOWNCALL art_quick_set8_static, artSet8StaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1319TWO_ARG_REF_DOWNCALL art_quick_set16_static, artSet16StaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1320TWO_ARG_REF_DOWNCALL art_quick_set32_static, artSet32StaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1321TWO_ARG_REF_DOWNCALL art_quick_set_obj_static, artSetObjStaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1322
1323THREE_ARG_REF_DOWNCALL art_quick_set8_instance, artSet8InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1324THREE_ARG_REF_DOWNCALL art_quick_set16_instance, artSet16InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1325THREE_ARG_REF_DOWNCALL art_quick_set32_instance, artSet32InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1326THREE_ARG_REF_DOWNCALL art_quick_set64_instance, artSet64InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1327THREE_ARG_REF_DOWNCALL art_quick_set_obj_instance, artSetObjInstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1328
1329// This is separated out as the argument order is different.
1330    .extern artSet64StaticFromCode
1331ENTRY art_quick_set64_static
1332    SETUP_REFS_ONLY_CALLEE_SAVE_FRAME  // save callee saves in case of GC
1333    mov    x3, x1                     // Store value
1334    ldr    w1, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
1335    mov    x2, x3                     // Put value param
1336    mov    x3, xSELF                  // pass Thread::Current
1337    bl     artSet64StaticFromCode
1338    RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
1339    RETURN_IF_W0_IS_ZERO_OR_DELIVER
1340END art_quick_set64_static
1341
1342    /*
1343     * Entry from managed code to resolve a string, this stub will allocate a String and deliver an
1344     * exception on error. On success the String is returned. x0 holds the referring method,
1345     * w1 holds the string index. The fast path check for hit in strings cache has already been
1346     * performed.
1347     */
1348TWO_ARG_DOWNCALL art_quick_resolve_string, artResolveStringFromCode, RETURN_IF_RESULT_IS_NON_ZERO
1349
1350// Generate the allocation entrypoints for each allocator.
1351GENERATE_ALL_ALLOC_ENTRYPOINTS
1352
1353    /*
1354     * Called by managed code when the value in wSUSPEND has been decremented to 0.
1355     */
1356    .extern artTestSuspendFromCode
1357ENTRY art_quick_test_suspend
1358    ldrh   w0, [xSELF, #THREAD_FLAGS_OFFSET]  // get xSELF->state_and_flags.as_struct.flags
1359    mov    wSUSPEND, #SUSPEND_CHECK_INTERVAL  // reset wSUSPEND to SUSPEND_CHECK_INTERVAL
1360    cbnz   w0, .Lneed_suspend                 // check flags == 0
1361    ret                                       // return if flags == 0
1362.Lneed_suspend:
1363    mov    x0, xSELF
1364    SETUP_REFS_ONLY_CALLEE_SAVE_FRAME          // save callee saves for stack crawl
1365    bl     artTestSuspendFromCode             // (Thread*)
1366    RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME_AND_RETURN
1367END art_quick_test_suspend
1368
1369ENTRY art_quick_implicit_suspend
1370    mov    x0, xSELF
1371    SETUP_REFS_ONLY_CALLEE_SAVE_FRAME          // save callee saves for stack crawl
1372    bl     artTestSuspendFromCode             // (Thread*)
1373    RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME_AND_RETURN
1374END art_quick_implicit_suspend
1375
1376     /*
1377     * Called by managed code that is attempting to call a method on a proxy class. On entry
1378     * x0 holds the proxy method and x1 holds the receiver; The frame size of the invoked proxy
1379     * method agrees with a ref and args callee save frame.
1380     */
1381     .extern artQuickProxyInvokeHandler
1382ENTRY art_quick_proxy_invoke_handler
1383    SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_WITH_METHOD_IN_X0
1384    mov     x2, xSELF                   // pass Thread::Current
1385    mov     x3, sp                      // pass SP
1386    bl      artQuickProxyInvokeHandler  // (Method* proxy method, receiver, Thread*, SP)
1387    // Use xETR as xSELF might be scratched by native function above.
1388    ldr     x2, [xETR, THREAD_EXCEPTION_OFFSET]
1389    cbnz    x2, .Lexception_in_proxy    // success if no exception is pending
1390    RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME // Restore frame
1391    fmov    d0, x0                      // Store result in d0 in case it was float or double
1392    ret                                 // return on success
1393.Lexception_in_proxy:
1394    RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
1395    DELIVER_PENDING_EXCEPTION
1396END art_quick_proxy_invoke_handler
1397
1398    /*
1399     * Called to resolve an imt conflict. xIP1 is a hidden argument that holds the target method's
1400     * dex method index.
1401     */
1402ENTRY art_quick_imt_conflict_trampoline
1403    ldr    w0, [sp, #0]                                // load caller Method*
1404    ldr    w0, [x0, #MIRROR_ART_METHOD_DEX_CACHE_METHODS_OFFSET]  // load dex_cache_resolved_methods
1405    add    x0, x0, #MIRROR_OBJECT_ARRAY_DATA_OFFSET    // get starting address of data
1406    ldr    w0, [x0, xIP1, lsl 2]                       // load the target method
1407    b art_quick_invoke_interface_trampoline
1408END art_quick_imt_conflict_trampoline
1409
1410ENTRY art_quick_resolution_trampoline
1411    SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME
1412    mov x2, xSELF
1413    mov x3, sp
1414    bl artQuickResolutionTrampoline  // (called, receiver, Thread*, SP)
1415    cbz x0, 1f
1416    mov xIP0, x0            // Remember returned code pointer in xIP0.
1417    ldr w0, [sp, #0]        // artQuickResolutionTrampoline puts called method in *SP.
1418    RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
1419    br xIP0
14201:
1421    RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
1422    DELIVER_PENDING_EXCEPTION
1423END art_quick_resolution_trampoline
1424
1425/*
1426 * Generic JNI frame layout:
1427 *
1428 * #-------------------#
1429 * |                   |
1430 * | caller method...  |
1431 * #-------------------#    <--- SP on entry
1432 * | Return X30/LR     |
1433 * | X29/FP            |    callee save
1434 * | X28               |    callee save
1435 * | X27               |    callee save
1436 * | X26               |    callee save
1437 * | X25               |    callee save
1438 * | X24               |    callee save
1439 * | X23               |    callee save
1440 * | X22               |    callee save
1441 * | X21               |    callee save
1442 * | X20               |    callee save
1443 * | X7                |    arg7
1444 * | X6                |    arg6
1445 * | X5                |    arg5
1446 * | X4                |    arg4
1447 * | X3                |    arg3
1448 * | X2                |    arg2
1449 * | X1                |    arg1
1450 * | D7                |    float arg 8
1451 * | D6                |    float arg 7
1452 * | D5                |    float arg 6
1453 * | D4                |    float arg 5
1454 * | D3                |    float arg 4
1455 * | D2                |    float arg 3
1456 * | D1                |    float arg 2
1457 * | D0                |    float arg 1
1458 * | Method*           | <- X0
1459 * #-------------------#
1460 * | local ref cookie  | // 4B
1461 * | handle scope size | // 4B
1462 * #-------------------#
1463 * | JNI Call Stack    |
1464 * #-------------------#    <--- SP on native call
1465 * |                   |
1466 * | Stack for Regs    |    The trampoline assembly will pop these values
1467 * |                   |    into registers for native call
1468 * #-------------------#
1469 * | Native code ptr   |
1470 * #-------------------#
1471 * | Free scratch      |
1472 * #-------------------#
1473 * | Ptr to (1)        |    <--- SP
1474 * #-------------------#
1475 */
1476    /*
1477     * Called to do a generic JNI down-call
1478     */
1479ENTRY art_quick_generic_jni_trampoline
1480    SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_WITH_METHOD_IN_X0
1481
1482    // Save SP , so we can have static CFI info.
1483    mov x28, sp
1484    .cfi_def_cfa_register x28
1485
1486    // This looks the same, but is different: this will be updated to point to the bottom
1487    // of the frame when the handle scope is inserted.
1488    mov xFP, sp
1489
1490    mov xIP0, #5120
1491    sub sp, sp, xIP0
1492
1493    // prepare for artQuickGenericJniTrampoline call
1494    // (Thread*,  SP)
1495    //    x0      x1   <= C calling convention
1496    //   xSELF    xFP  <= where they are
1497
1498    mov x0, xSELF   // Thread*
1499    mov x1, xFP
1500    bl artQuickGenericJniTrampoline  // (Thread*, sp)
1501
1502    // The C call will have registered the complete save-frame on success.
1503    // The result of the call is:
1504    // x0: pointer to native code, 0 on error.
1505    // x1: pointer to the bottom of the used area of the alloca, can restore stack till there.
1506
1507    // Check for error = 0.
1508    cbz x0, .Lentry_error
1509
1510    // Release part of the alloca.
1511    mov sp, x1
1512
1513    // Save the code pointer
1514    mov xIP0, x0
1515
1516    // Load parameters from frame into registers.
1517    // TODO Check with artQuickGenericJniTrampoline.
1518    //      Also, check again APPCS64 - the stack arguments are interleaved.
1519    ldp x0, x1, [sp]
1520    ldp x2, x3, [sp, #16]
1521    ldp x4, x5, [sp, #32]
1522    ldp x6, x7, [sp, #48]
1523
1524    ldp d0, d1, [sp, #64]
1525    ldp d2, d3, [sp, #80]
1526    ldp d4, d5, [sp, #96]
1527    ldp d6, d7, [sp, #112]
1528
1529    add sp, sp, #128
1530
1531    blr xIP0        // native call.
1532
1533    // result sign extension is handled in C code
1534    // prepare for artQuickGenericJniEndTrampoline call
1535    // (Thread*, result, result_f)
1536    //    x0       x1       x2        <= C calling convention
1537    mov x1, x0      // Result (from saved)
1538    mov x0, xETR    // Thread register, original xSELF might be scratched by native code.
1539    fmov x2, d0     // d0 will contain floating point result, but needs to go into x2
1540
1541    bl artQuickGenericJniEndTrampoline
1542
1543    // Tear down the alloca.
1544    mov sp, x28
1545    .cfi_def_cfa_register sp
1546
1547    // Pending exceptions possible.
1548    // Use xETR as xSELF might be scratched by native code
1549    ldr x1, [xETR, THREAD_EXCEPTION_OFFSET]
1550    cbnz x1, .Lexception_in_native
1551
1552    // Tear down the callee-save frame.
1553    RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
1554
1555    // store into fpr, for when it's a fpr return...
1556    fmov d0, x0
1557    ret
1558
1559.Lentry_error:
1560    mov sp, x28
1561    .cfi_def_cfa_register sp
1562.Lexception_in_native:
1563    RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
1564    DELIVER_PENDING_EXCEPTION
1565
1566END art_quick_generic_jni_trampoline
1567
1568/*
1569 * Called to bridge from the quick to interpreter ABI. On entry the arguments match those
1570 * of a quick call:
1571 * x0 = method being called/to bridge to.
1572 * x1..x7, d0..d7 = arguments to that method.
1573 */
1574ENTRY art_quick_to_interpreter_bridge
1575    SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME   // Set up frame and save arguments.
1576
1577    //  x0 will contain mirror::ArtMethod* method.
1578    mov x1, xSELF                          // How to get Thread::Current() ???
1579    mov x2, sp
1580
1581    // uint64_t artQuickToInterpreterBridge(mirror::ArtMethod* method, Thread* self,
1582    //                                      mirror::ArtMethod** sp)
1583    bl   artQuickToInterpreterBridge
1584
1585    RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME  // TODO: no need to restore arguments in this case.
1586
1587    fmov d0, x0
1588
1589    RETURN_OR_DELIVER_PENDING_EXCEPTION
1590END art_quick_to_interpreter_bridge
1591
1592
1593//
1594// Instrumentation-related stubs
1595//
1596    .extern artInstrumentationMethodEntryFromCode
1597ENTRY art_quick_instrumentation_entry
1598    SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME
1599
1600    mov   x20, x0             // Preserve method reference in a callee-save.
1601
1602    mov   x2, xSELF
1603    mov   x3, xLR
1604    bl    artInstrumentationMethodEntryFromCode  // (Method*, Object*, Thread*, LR)
1605
1606    mov   xIP0, x0            // x0 = result of call.
1607    mov   x0, x20             // Reload method reference.
1608
1609    RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME  // Note: will restore xSELF
1610    adr   xLR, art_quick_instrumentation_exit
1611    br    xIP0                // Tail-call method with lr set to art_quick_instrumentation_exit.
1612END art_quick_instrumentation_entry
1613
1614    .extern artInstrumentationMethodExitFromCode
1615ENTRY art_quick_instrumentation_exit
1616    mov   xLR, #0             // Clobber LR for later checks.
1617
1618    SETUP_REFS_ONLY_CALLEE_SAVE_FRAME
1619
1620    // We need to save x0 and d0. We could use a callee-save from SETUP_REF_ONLY, but then
1621    // we would need to fully restore it. As there are a lot of callee-save registers, it seems
1622    // easier to have an extra small stack area.
1623
1624    str x0, [sp, #-16]!       // Save integer result.
1625    .cfi_adjust_cfa_offset 16
1626    str d0,  [sp, #8]         // Save floating-point result.
1627
1628    add   x1, sp, #16         // Pass SP.
1629    mov   x2, x0              // Pass integer result.
1630    fmov  x3, d0              // Pass floating-point result.
1631    mov   x0, xSELF           // Pass Thread.
1632    bl   artInstrumentationMethodExitFromCode    // (Thread*, SP, gpr_res, fpr_res)
1633
1634    mov   xIP0, x0            // Return address from instrumentation call.
1635    mov   xLR, x1             // r1 is holding link register if we're to bounce to deoptimize
1636
1637    ldr   d0, [sp, #8]        // Restore floating-point result.
1638    ldr   x0, [sp], 16        // Restore integer result, and drop stack area.
1639    .cfi_adjust_cfa_offset 16
1640
1641    POP_REFS_ONLY_CALLEE_SAVE_FRAME
1642
1643    br    xIP0                // Tail-call out.
1644END art_quick_instrumentation_exit
1645
1646    /*
1647     * Instrumentation has requested that we deoptimize into the interpreter. The deoptimization
1648     * will long jump to the upcall with a special exception of -1.
1649     */
1650    .extern artDeoptimize
1651ENTRY art_quick_deoptimize
1652    SETUP_SAVE_ALL_CALLEE_SAVE_FRAME
1653    mov    x0, xSELF          // Pass thread.
1654    bl     artDeoptimize      // artDeoptimize(Thread*)
1655    brk 0
1656END art_quick_deoptimize
1657
1658
1659    /*
1660     * String's indexOf.
1661     *
1662     * TODO: Not very optimized.
1663     * On entry:
1664     *    x0:   string object (known non-null)
1665     *    w1:   char to match (known <= 0xFFFF)
1666     *    w2:   Starting offset in string data
1667     */
1668ENTRY art_quick_indexof
1669    ldr   w3, [x0, #MIRROR_STRING_COUNT_OFFSET]
1670    ldr   w4, [x0, #MIRROR_STRING_OFFSET_OFFSET]
1671    ldr   w0, [x0, #MIRROR_STRING_VALUE_OFFSET] // x0 ?
1672
1673    /* Clamp start to [0..count] */
1674    cmp   w2, #0
1675    csel  w2, wzr, w2, lt
1676    cmp   w2, w3
1677    csel  w2, w3, w2, gt
1678
1679    /* Build a pointer to the start of the string data */
1680    add   x0, x0, #MIRROR_CHAR_ARRAY_DATA_OFFSET
1681    add   x0, x0, x4, lsl #1
1682
1683    /* Save a copy to compute result */
1684    mov   x5, x0
1685
1686    /* Build pointer to start of data to compare and pre-bias */
1687    add   x0, x0, x2, lsl #1
1688    sub   x0, x0, #2
1689
1690    /* Compute iteration count */
1691    sub   w2, w3, w2
1692
1693    /*
1694     * At this point we have:
1695     *  x0: start of the data to test
1696     *  w1: char to compare
1697     *  w2: iteration count
1698     *  x5: original start of string data
1699     */
1700
1701    subs  w2, w2, #4
1702    b.lt  .Lindexof_remainder
1703
1704.Lindexof_loop4:
1705    ldrh  w6, [x0, #2]!
1706    ldrh  w7, [x0, #2]!
1707    ldrh  wIP0, [x0, #2]!
1708    ldrh  wIP1, [x0, #2]!
1709    cmp   w6, w1
1710    b.eq  .Lmatch_0
1711    cmp   w7, w1
1712    b.eq  .Lmatch_1
1713    cmp   wIP0, w1
1714    b.eq  .Lmatch_2
1715    cmp   wIP1, w1
1716    b.eq  .Lmatch_3
1717    subs  w2, w2, #4
1718    b.ge  .Lindexof_loop4
1719
1720.Lindexof_remainder:
1721    adds  w2, w2, #4
1722    b.eq  .Lindexof_nomatch
1723
1724.Lindexof_loop1:
1725    ldrh  w6, [x0, #2]!
1726    cmp   w6, w1
1727    b.eq  .Lmatch_3
1728    subs  w2, w2, #1
1729    b.ne  .Lindexof_loop1
1730
1731.Lindexof_nomatch:
1732    mov   x0, #-1
1733    ret
1734
1735.Lmatch_0:
1736    sub   x0, x0, #6
1737    sub   x0, x0, x5
1738    asr   x0, x0, #1
1739    ret
1740.Lmatch_1:
1741    sub   x0, x0, #4
1742    sub   x0, x0, x5
1743    asr   x0, x0, #1
1744    ret
1745.Lmatch_2:
1746    sub   x0, x0, #2
1747    sub   x0, x0, x5
1748    asr   x0, x0, #1
1749    ret
1750.Lmatch_3:
1751    sub   x0, x0, x5
1752    asr   x0, x0, #1
1753    ret
1754END art_quick_indexof
1755
1756   /*
1757     * String's compareTo.
1758     *
1759     * TODO: Not very optimized.
1760     *
1761     * On entry:
1762     *    x0:   this object pointer
1763     *    x1:   comp object pointer
1764     *
1765     */
1766    .extern __memcmp16
1767ENTRY art_quick_string_compareto
1768    mov    x2, x0         // x0 is return, use x2 for first input.
1769    sub    x0, x2, x1     // Same string object?
1770    cbnz   x0,1f
1771    ret
17721:                        // Different string objects.
1773
1774    ldr    w6, [x2, #MIRROR_STRING_OFFSET_OFFSET]
1775    ldr    w5, [x1, #MIRROR_STRING_OFFSET_OFFSET]
1776    ldr    w4, [x2, #MIRROR_STRING_COUNT_OFFSET]
1777    ldr    w3, [x1, #MIRROR_STRING_COUNT_OFFSET]
1778    ldr    w2, [x2, #MIRROR_STRING_VALUE_OFFSET]
1779    ldr    w1, [x1, #MIRROR_STRING_VALUE_OFFSET]
1780
1781    /*
1782     * Now:           CharArray*    Offset   Count
1783     *    first arg      x2          w6        w4
1784     *   second arg      x1          w5        w3
1785     */
1786
1787    // x0 := str1.length(w4) - str2.length(w3). ldr zero-extended w3/w4 into x3/x4.
1788    subs x0, x4, x3
1789    // Min(count1, count2) into w3.
1790    csel x3, x3, x4, ge
1791
1792    // Build pointer into string data.
1793
1794    // Add offset in array (substr etc.) (sign extend and << 1).
1795    add x2, x2, w6, sxtw #1
1796    add x1, x1, w5, sxtw #1
1797
1798    // Add offset in CharArray to array.
1799    add x2, x2, #MIRROR_CHAR_ARRAY_DATA_OFFSET
1800    add x1, x1, #MIRROR_CHAR_ARRAY_DATA_OFFSET
1801
1802    // TODO: Tune this value.
1803    // Check for long string, do memcmp16 for them.
1804    cmp w3, #28  // Constant from arm32.
1805    bgt .Ldo_memcmp16
1806
1807    /*
1808     * Now:
1809     *   x2: *first string data
1810     *   x1: *second string data
1811     *   w3: iteration count
1812     *   x0: return value if comparison equal
1813     *   x4, x5, x6, x7: free
1814     */
1815
1816    // Do a simple unrolled loop.
1817.Lloop:
1818    // At least two more elements?
1819    subs w3, w3, #2
1820    b.lt .Lremainder_or_done
1821
1822    ldrh w4, [x2], #2
1823    ldrh w5, [x1], #2
1824
1825    ldrh w6, [x2], #2
1826    ldrh w7, [x1], #2
1827
1828    subs w4, w4, w5
1829    b.ne .Lw4_result
1830
1831    subs w6, w6, w7
1832    b.ne .Lw6_result
1833
1834    b .Lloop
1835
1836.Lremainder_or_done:
1837    adds w3, w3, #1
1838    b.eq .Lremainder
1839    ret
1840
1841.Lremainder:
1842    ldrh w4, [x2], #2
1843    ldrh w5, [x1], #2
1844    subs w4, w4, w5
1845    b.ne .Lw4_result
1846    ret
1847
1848// Result is in w4
1849.Lw4_result:
1850    sxtw x0, w4
1851    ret
1852
1853// Result is in w6
1854.Lw6_result:
1855    sxtw x0, w6
1856    ret
1857
1858.Ldo_memcmp16:
1859    mov x14, x0                  // Save x0 and LR. __memcmp16 does not use these temps.
1860    mov x15, xLR                 //                 TODO: Codify and check that?
1861
1862    mov x0, x2
1863    uxtw x2, w3
1864    bl __memcmp16
1865
1866    mov xLR, x15                 // Restore LR.
1867
1868    cmp x0, #0                   // Check the memcmp difference.
1869    csel x0, x0, x14, ne         // x0 := x0 != 0 ? x14(prev x0=length diff) : x1.
1870    ret
1871END art_quick_string_compareto
1872
1873// Macro to facilitate adding new entrypoints which call to native function directly.
1874// Currently, xSELF is the only thing we need to take care of between managed code and AAPCS.
1875// But we might introduce more differences.
1876.macro NATIVE_DOWNCALL name, entrypoint
1877    .extern \entrypoint
1878ENTRY \name
1879    stp    xSELF, xLR, [sp, #-16]!
1880    bl     \entrypoint
1881    ldp    xSELF, xLR, [sp], #16
1882    ret
1883END \name
1884.endm
1885
1886NATIVE_DOWNCALL art_quick_fmod fmod
1887NATIVE_DOWNCALL art_quick_fmodf fmodf
1888NATIVE_DOWNCALL art_quick_memcpy memcpy
1889NATIVE_DOWNCALL art_quick_assignable_from_code artIsAssignableFromCode
1890