blob: 606816a181f5705e72b84332cf5d4b8725667e59 [file] [log] [blame]
Stuart Monteithb95a5342014-03-12 13:32:32 +00001/*
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
Zheng Xub551fdc2014-07-25 11:49:42 +080027 adrp xIP0, :got:_ZN3art7Runtime9instance_E
28 ldr xIP0, [xIP0, #:got_lo12:_ZN3art7Runtime9instance_E]
Stuart Monteithb95a5342014-03-12 13:32:32 +000029
30 // Our registers aren't intermixed - just spill in order.
Zheng Xub551fdc2014-07-25 11:49:42 +080031 ldr xIP0, [xIP0] // xIP0 = & (art::Runtime * art::Runtime.instance_) .
Stuart Monteithb95a5342014-03-12 13:32:32 +000032
Zheng Xub551fdc2014-07-25 11:49:42 +080033 // xIP0 = (ArtMethod*) Runtime.instance_.callee_save_methods[kRefAndArgs] .
Hiroshi Yamauchiab088112014-07-14 13:00:14 -070034 THIS_LOAD_REQUIRES_READ_BARRIER
Zheng Xub551fdc2014-07-25 11:49:42 +080035 ldr xIP0, [xIP0, RUNTIME_SAVE_ALL_CALLEE_SAVE_FRAME_OFFSET ]
Andreas Gampe5c1e4352014-04-21 19:28:24 -070036
37 sub sp, sp, #176
38 .cfi_adjust_cfa_offset 176
39
40 // Ugly compile-time check, but we only have the preprocessor.
Zheng Xub551fdc2014-07-25 11:49:42 +080041#if (FRAME_SIZE_SAVE_ALL_CALLEE_SAVE != 176)
42#error "SAVE_ALL_CALLEE_SAVE_FRAME(ARM64) size not as expected."
Andreas Gampe5c1e4352014-04-21 19:28:24 -070043#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
Zheng Xub551fdc2014-07-25 11:49:42 +080051 // Reserved registers
52 stp xSELF, xSUSPEND, [sp, #72]
Andreas Gampe5c1e4352014-04-21 19:28:24 -070053 .cfi_rel_offset x18, 72
54 .cfi_rel_offset x19, 80
55
Zheng Xub551fdc2014-07-25 11:49:42 +080056 // callee-saves
Andreas Gampe5c1e4352014-04-21 19:28:24 -070057 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
Zheng Xub551fdc2014-07-25 11:49:42 +080073 stp x28, x29, [sp, #152]
Andreas Gampe5c1e4352014-04-21 19:28:24 -070074 .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
Zheng Xub551fdc2014-07-25 11:49:42 +080081 str xIP0, [sp] // Store ArtMethod* Runtime::callee_save_methods_[kRefsAndArgs]
Stuart Monteithb95a5342014-03-12 13:32:32 +000082.endm
83
Zheng Xub551fdc2014-07-25 11:49:42 +080084 /*
85 * Macro that sets up the callee save frame to conform with
86 * Runtime::CreateCalleeSaveMethod(kRefsOnly).
87 */
88.macro SETUP_REF_ONLY_CALLEE_SAVE_FRAME
89 adrp xIP0, :got:_ZN3art7Runtime9instance_E
90 ldr xIP0, [xIP0, #:got_lo12:_ZN3art7Runtime9instance_E]
91
92 // Our registers aren't intermixed - just spill in order.
93 ldr xIP0, [xIP0] // xIP0 = & (art::Runtime * art::Runtime.instance_) .
94
95 // xIP0 = (ArtMethod*) Runtime.instance_.callee_save_methods[kRefAndArgs] .
96 THIS_LOAD_REQUIRES_READ_BARRIER
97 ldr xIP0, [xIP0, RUNTIME_REFS_ONLY_CALLEE_SAVE_FRAME_OFFSET ]
98
99 sub sp, sp, #96
100 .cfi_adjust_cfa_offset 96
101
102 // Ugly compile-time check, but we only have the preprocessor.
103#if (FRAME_SIZE_REFS_ONLY_CALLEE_SAVE != 96)
104#error "REFS_ONLY_CALLEE_SAVE_FRAME(ARM64) size not as expected."
105#endif
106
107 // Callee-saves
108 stp x20, x21, [sp, #8]
109 .cfi_rel_offset x20, 8
110 .cfi_rel_offset x21, 16
111
112 stp x22, x23, [sp, #24]
113 .cfi_rel_offset x22, 24
114 .cfi_rel_offset x23, 32
115
116 stp x24, x25, [sp, #40]
117 .cfi_rel_offset x24, 40
118 .cfi_rel_offset x25, 48
119
120 stp x26, x27, [sp, #56]
121 .cfi_rel_offset x26, 56
122 .cfi_rel_offset x27, 64
123
124 stp x28, x29, [sp, #72]
125 .cfi_rel_offset x28, 72
126 .cfi_rel_offset x29, 80
127
128 // LR
129 str xLR, [sp, #88]
130 .cfi_rel_offset x30, 88
131
132 // Save xSELF to xETR.
133 mov xETR, xSELF
134
135 // Loads appropriate callee-save-method
136 str xIP0, [sp] // Store ArtMethod* Runtime::callee_save_methods_[kRefsAndArgs]
137.endm
138
139// TODO: Probably no need to restore registers preserved by aapcs64.
Stuart Monteithb95a5342014-03-12 13:32:32 +0000140.macro RESTORE_REF_ONLY_CALLEE_SAVE_FRAME
Zheng Xub551fdc2014-07-25 11:49:42 +0800141 // Restore xSELF.
142 mov xSELF, xETR
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700143
Zheng Xub551fdc2014-07-25 11:49:42 +0800144 // Callee-saves
145 ldp x20, x21, [sp, #8]
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700146 .cfi_restore x20
147 .cfi_restore x21
148
Zheng Xub551fdc2014-07-25 11:49:42 +0800149 ldp x22, x23, [sp, #24]
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700150 .cfi_restore x22
151 .cfi_restore x23
152
Zheng Xub551fdc2014-07-25 11:49:42 +0800153 ldp x24, x25, [sp, #40]
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700154 .cfi_restore x24
155 .cfi_restore x25
156
Zheng Xub551fdc2014-07-25 11:49:42 +0800157 ldp x26, x27, [sp, #56]
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700158 .cfi_restore x26
159 .cfi_restore x27
160
Zheng Xub551fdc2014-07-25 11:49:42 +0800161 ldp x28, x29, [sp, #72]
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700162 .cfi_restore x28
163 .cfi_restore x29
164
Zheng Xub551fdc2014-07-25 11:49:42 +0800165 // LR
166 ldr xLR, [sp, #88]
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700167 .cfi_restore x30
168
Zheng Xub551fdc2014-07-25 11:49:42 +0800169 add sp, sp, #96
170 .cfi_adjust_cfa_offset -96
Stuart Monteithb95a5342014-03-12 13:32:32 +0000171.endm
172
Andreas Gamped58342c2014-06-05 14:18:08 -0700173.macro POP_REF_ONLY_CALLEE_SAVE_FRAME
Zheng Xub551fdc2014-07-25 11:49:42 +0800174 // Restore xSELF as it might be scratched.
175 mov xSELF, xETR
176 // ETR
177 ldr xETR, [sp, #16]
178 .cfi_restore x21
179
180 add sp, sp, #96
181 .cfi_adjust_cfa_offset -96
Andreas Gamped58342c2014-06-05 14:18:08 -0700182.endm
183
Stuart Monteithb95a5342014-03-12 13:32:32 +0000184.macro RESTORE_REF_ONLY_CALLEE_SAVE_FRAME_AND_RETURN
Zheng Xu48241e72014-05-23 11:52:42 +0800185 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME
186 ret
Stuart Monteithb95a5342014-03-12 13:32:32 +0000187.endm
188
189
190.macro SETUP_REF_AND_ARGS_CALLEE_SAVE_FRAME_INTERNAL
Zheng Xub551fdc2014-07-25 11:49:42 +0800191 sub sp, sp, #224
192 .cfi_adjust_cfa_offset 224
Stuart Monteithb95a5342014-03-12 13:32:32 +0000193
Andreas Gampe5c1e4352014-04-21 19:28:24 -0700194 // Ugly compile-time check, but we only have the preprocessor.
Zheng Xub551fdc2014-07-25 11:49:42 +0800195#if (FRAME_SIZE_REFS_AND_ARGS_CALLEE_SAVE != 224)
Andreas Gampe5c1e4352014-04-21 19:28:24 -0700196#error "REFS_AND_ARGS_CALLEE_SAVE_FRAME(ARM64) size not as expected."
197#endif
198
Zheng Xub551fdc2014-07-25 11:49:42 +0800199 // FP args
200 stp d0, d1, [sp, #16]
201 stp d2, d3, [sp, #32]
202 stp d4, d5, [sp, #48]
203 stp d6, d7, [sp, #64]
Stuart Monteithb95a5342014-03-12 13:32:32 +0000204
Zheng Xub551fdc2014-07-25 11:49:42 +0800205 // args and x20(callee-save)
206 stp x1, x2, [sp, #80]
207 .cfi_rel_offset x1, 80
208 .cfi_rel_offset x2, 88
Stuart Monteithb95a5342014-03-12 13:32:32 +0000209
Zheng Xub551fdc2014-07-25 11:49:42 +0800210 stp x3, x4, [sp, #96]
211 .cfi_rel_offset x3, 96
212 .cfi_rel_offset x4, 104
Andreas Gampe03906cf2014-04-07 12:08:28 -0700213
Zheng Xub551fdc2014-07-25 11:49:42 +0800214 stp x5, x6, [sp, #112]
215 .cfi_rel_offset x5, 112
216 .cfi_rel_offset x6, 120
Andreas Gampe03906cf2014-04-07 12:08:28 -0700217
Zheng Xub551fdc2014-07-25 11:49:42 +0800218 stp x7, x20, [sp, #128]
219 .cfi_rel_offset x7, 128
220 .cfi_rel_offset x20, 136
Andreas Gampe03906cf2014-04-07 12:08:28 -0700221
Zheng Xub551fdc2014-07-25 11:49:42 +0800222 // Callee-saves.
223 stp x21, x22, [sp, #144]
224 .cfi_rel_offset x21, 144
225 .cfi_rel_offset x22, 152
Andreas Gampe03906cf2014-04-07 12:08:28 -0700226
Zheng Xub551fdc2014-07-25 11:49:42 +0800227 stp x23, x24, [sp, #160]
228 .cfi_rel_offset x23, 160
229 .cfi_rel_offset x24, 168
Andreas Gampe03906cf2014-04-07 12:08:28 -0700230
Zheng Xub551fdc2014-07-25 11:49:42 +0800231 stp x25, x26, [sp, #176]
232 .cfi_rel_offset x25, 176
233 .cfi_rel_offset x26, 184
Andreas Gampe03906cf2014-04-07 12:08:28 -0700234
Zheng Xub551fdc2014-07-25 11:49:42 +0800235 stp x27, x28, [sp, #192]
236 .cfi_rel_offset x27, 192
237 .cfi_rel_offset x28, 200
Andreas Gampe03906cf2014-04-07 12:08:28 -0700238
Zheng Xub551fdc2014-07-25 11:49:42 +0800239 // x29(callee-save) and LR
240 stp x29, xLR, [sp, #208]
241 .cfi_rel_offset x29, 208
242 .cfi_rel_offset x30, 216
Andreas Gampe03906cf2014-04-07 12:08:28 -0700243
Zheng Xub551fdc2014-07-25 11:49:42 +0800244 // Save xSELF to xETR.
245 mov xETR, xSELF
Stuart Monteithb95a5342014-03-12 13:32:32 +0000246.endm
247
248 /*
249 * Macro that sets up the callee save frame to conform with
250 * Runtime::CreateCalleeSaveMethod(kRefsAndArgs).
251 *
252 * TODO This is probably too conservative - saving FP & LR.
253 */
254.macro SETUP_REF_AND_ARGS_CALLEE_SAVE_FRAME
Zheng Xub551fdc2014-07-25 11:49:42 +0800255 adrp xIP0, :got:_ZN3art7Runtime9instance_E
256 ldr xIP0, [xIP0, #:got_lo12:_ZN3art7Runtime9instance_E]
Stuart Monteithb95a5342014-03-12 13:32:32 +0000257
258 // Our registers aren't intermixed - just spill in order.
Zheng Xub551fdc2014-07-25 11:49:42 +0800259 ldr xIP0, [xIP0] // xIP0 = & (art::Runtime * art::Runtime.instance_) .
Stuart Monteithb95a5342014-03-12 13:32:32 +0000260
Zheng Xub551fdc2014-07-25 11:49:42 +0800261 // xIP0 = (ArtMethod*) Runtime.instance_.callee_save_methods[kRefAndArgs] .
Hiroshi Yamauchiab088112014-07-14 13:00:14 -0700262 THIS_LOAD_REQUIRES_READ_BARRIER
Zheng Xub551fdc2014-07-25 11:49:42 +0800263 ldr xIP0, [xIP0, RUNTIME_REF_AND_ARGS_CALLEE_SAVE_FRAME_OFFSET ]
Stuart Monteithb95a5342014-03-12 13:32:32 +0000264
265 SETUP_REF_AND_ARGS_CALLEE_SAVE_FRAME_INTERNAL
266
Zheng Xub551fdc2014-07-25 11:49:42 +0800267 str xIP0, [sp] // Store ArtMethod* Runtime::callee_save_methods_[kRefsAndArgs]
Stuart Monteithb95a5342014-03-12 13:32:32 +0000268.endm
269
Zheng Xub551fdc2014-07-25 11:49:42 +0800270// TODO: Probably no need to restore registers preserved by aapcs64.
Stuart Monteithb95a5342014-03-12 13:32:32 +0000271.macro RESTORE_REF_AND_ARGS_CALLEE_SAVE_FRAME
Zheng Xub551fdc2014-07-25 11:49:42 +0800272 // Restore xSELF.
273 mov xSELF, xETR
Stuart Monteithb95a5342014-03-12 13:32:32 +0000274
Zheng Xub551fdc2014-07-25 11:49:42 +0800275 // FP args
276 ldp d0, d1, [sp, #16]
277 ldp d2, d3, [sp, #32]
278 ldp d4, d5, [sp, #48]
279 ldp d6, d7, [sp, #64]
Stuart Monteithb95a5342014-03-12 13:32:32 +0000280
Zheng Xub551fdc2014-07-25 11:49:42 +0800281 // args and x20(callee-save)
282 ldp x1, x2, [sp, #80]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700283 .cfi_restore x1
284 .cfi_restore x2
285
Zheng Xub551fdc2014-07-25 11:49:42 +0800286 ldp x3, x4, [sp, #96]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700287 .cfi_restore x3
288 .cfi_restore x4
289
Zheng Xub551fdc2014-07-25 11:49:42 +0800290 ldp x5, x6, [sp, #112]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700291 .cfi_restore x5
292 .cfi_restore x6
293
Zheng Xub551fdc2014-07-25 11:49:42 +0800294 ldp x7, x20, [sp, #128]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700295 .cfi_restore x7
Andreas Gampe03906cf2014-04-07 12:08:28 -0700296 .cfi_restore x20
297
Zheng Xub551fdc2014-07-25 11:49:42 +0800298 // Callee-saves.
299 ldp x21, x22, [sp, #144]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700300 .cfi_restore x21
301 .cfi_restore x22
302
Zheng Xub551fdc2014-07-25 11:49:42 +0800303 ldp x23, x24, [sp, #160]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700304 .cfi_restore x23
305 .cfi_restore x24
306
Zheng Xub551fdc2014-07-25 11:49:42 +0800307 ldp x25, x26, [sp, #176]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700308 .cfi_restore x25
309 .cfi_restore x26
310
Zheng Xub551fdc2014-07-25 11:49:42 +0800311 ldp x27, x28, [sp, #192]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700312 .cfi_restore x27
313 .cfi_restore x28
314
Zheng Xub551fdc2014-07-25 11:49:42 +0800315 // x29(callee-save) and LR
316 ldp x29, xLR, [sp, #208]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700317 .cfi_restore x29
318 .cfi_restore x30
Stuart Monteithb95a5342014-03-12 13:32:32 +0000319
Zheng Xub551fdc2014-07-25 11:49:42 +0800320 add sp, sp, #224
321 .cfi_adjust_cfa_offset -224
Stuart Monteithb95a5342014-03-12 13:32:32 +0000322.endm
323
324.macro RETURN_IF_RESULT_IS_ZERO
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700325 cbnz x0, 1f // result non-zero branch over
326 ret // return
3271:
Stuart Monteithb95a5342014-03-12 13:32:32 +0000328.endm
329
330.macro RETURN_IF_RESULT_IS_NON_ZERO
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700331 cbz x0, 1f // result zero branch over
332 ret // return
3331:
Stuart Monteithb95a5342014-03-12 13:32:32 +0000334.endm
335
336 /*
337 * Macro that set calls through to artDeliverPendingExceptionFromCode, where the pending
338 * exception is Thread::Current()->exception_
339 */
340.macro DELIVER_PENDING_EXCEPTION
341 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME
342 mov x0, xSELF
343 mov x1, sp
344
345 // Point of no return.
346 b artDeliverPendingExceptionFromCode // artDeliverPendingExceptionFromCode(Thread*, SP)
347 brk 0 // Unreached
348.endm
349
Andreas Gampe6e4e59c2014-05-05 20:11:02 -0700350.macro RETURN_OR_DELIVER_PENDING_EXCEPTION_REG reg
351 ldr \reg, [xSELF, # THREAD_EXCEPTION_OFFSET] // Get exception field.
352 cbnz \reg, 1f
Stuart Monteithb95a5342014-03-12 13:32:32 +0000353 ret
3541:
355 DELIVER_PENDING_EXCEPTION
356.endm
357
Andreas Gampe6e4e59c2014-05-05 20:11:02 -0700358.macro RETURN_OR_DELIVER_PENDING_EXCEPTION
Zheng Xub551fdc2014-07-25 11:49:42 +0800359 RETURN_OR_DELIVER_PENDING_EXCEPTION_REG xIP0
Andreas Gampe6e4e59c2014-05-05 20:11:02 -0700360.endm
361
362// Same as above with x1. This is helpful in stubs that want to avoid clobbering another register.
363.macro RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
364 RETURN_OR_DELIVER_PENDING_EXCEPTION_REG x1
365.endm
366
367.macro RETURN_IF_W0_IS_ZERO_OR_DELIVER
368 cbnz w0, 1f // result non-zero branch over
369 ret // return
3701:
371 DELIVER_PENDING_EXCEPTION
372.endm
373
Stuart Monteithb95a5342014-03-12 13:32:32 +0000374.macro NO_ARG_RUNTIME_EXCEPTION c_name, cxx_name
375 .extern \cxx_name
376ENTRY \c_name
Andreas Gampe5c1e4352014-04-21 19:28:24 -0700377 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME // save all registers as basis for long jump context
Zheng Xub551fdc2014-07-25 11:49:42 +0800378 mov x0, xSELF // pass Thread::Current
Andreas Gampe5c1e4352014-04-21 19:28:24 -0700379 mov x1, sp // pass SP
380 b \cxx_name // \cxx_name(Thread*, SP)
Stuart Monteithb95a5342014-03-12 13:32:32 +0000381END \c_name
382.endm
383
384.macro ONE_ARG_RUNTIME_EXCEPTION c_name, cxx_name
385 .extern \cxx_name
386ENTRY \c_name
Serban Constantinescu75b91132014-04-09 18:39:10 +0100387 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME // save all registers as basis for long jump context.
Zheng Xub551fdc2014-07-25 11:49:42 +0800388 mov x1, xSELF // pass Thread::Current.
Serban Constantinescu75b91132014-04-09 18:39:10 +0100389 mov x2, sp // pass SP.
Andreas Gampe5c1e4352014-04-21 19:28:24 -0700390 b \cxx_name // \cxx_name(arg, Thread*, SP).
Stuart Monteithb95a5342014-03-12 13:32:32 +0000391 brk 0
392END \c_name
393.endm
394
395.macro TWO_ARG_RUNTIME_EXCEPTION c_name, cxx_name
396 .extern \cxx_name
397ENTRY \c_name
398 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME // save all registers as basis for long jump context
Zheng Xub551fdc2014-07-25 11:49:42 +0800399 mov x2, xSELF // pass Thread::Current
Andreas Gampe5c1e4352014-04-21 19:28:24 -0700400 mov x3, sp // pass SP
401 b \cxx_name // \cxx_name(arg1, arg2, Thread*, SP)
Stuart Monteithb95a5342014-03-12 13:32:32 +0000402 brk 0
403END \c_name
404.endm
405
406 /*
407 * Called by managed code, saves callee saves and then calls artThrowException
408 * that will place a mock Method* at the bottom of the stack. Arg1 holds the exception.
409 */
410ONE_ARG_RUNTIME_EXCEPTION art_quick_deliver_exception, artDeliverExceptionFromCode
411
412 /*
413 * Called by managed code to create and deliver a NullPointerException.
414 */
415NO_ARG_RUNTIME_EXCEPTION art_quick_throw_null_pointer_exception, artThrowNullPointerExceptionFromCode
416
417 /*
418 * Called by managed code to create and deliver an ArithmeticException.
419 */
420NO_ARG_RUNTIME_EXCEPTION art_quick_throw_div_zero, artThrowDivZeroFromCode
421
422 /*
423 * Called by managed code to create and deliver an ArrayIndexOutOfBoundsException. Arg1 holds
424 * index, arg2 holds limit.
425 */
426TWO_ARG_RUNTIME_EXCEPTION art_quick_throw_array_bounds, artThrowArrayBoundsFromCode
427
428 /*
429 * Called by managed code to create and deliver a StackOverflowError.
430 */
431NO_ARG_RUNTIME_EXCEPTION art_quick_throw_stack_overflow, artThrowStackOverflowFromCode
432
433 /*
434 * Called by managed code to create and deliver a NoSuchMethodError.
435 */
436ONE_ARG_RUNTIME_EXCEPTION art_quick_throw_no_such_method, artThrowNoSuchMethodFromCode
437
438 /*
Stuart Monteithb95a5342014-03-12 13:32:32 +0000439 * All generated callsites for interface invokes and invocation slow paths will load arguments
Andreas Gampe51f76352014-05-21 08:28:48 -0700440 * as usual - except instead of loading arg0/x0 with the target Method*, arg0/x0 will contain
441 * the method_idx. This wrapper will save arg1-arg3, load the caller's Method*, align the
Stuart Monteithb95a5342014-03-12 13:32:32 +0000442 * stack and call the appropriate C helper.
Andreas Gampe51f76352014-05-21 08:28:48 -0700443 * NOTE: "this" is first visible argument of the target, and so can be found in arg1/x1.
Stuart Monteithb95a5342014-03-12 13:32:32 +0000444 *
Andreas Gampe51f76352014-05-21 08:28:48 -0700445 * The helper will attempt to locate the target and return a 128-bit result in x0/x1 consisting
Stuart Monteithb95a5342014-03-12 13:32:32 +0000446 * of the target Method* in x0 and method->code_ in x1.
447 *
Andreas Gampe51f76352014-05-21 08:28:48 -0700448 * If unsuccessful, the helper will return NULL/????. There will be a pending exception in the
Stuart Monteithb95a5342014-03-12 13:32:32 +0000449 * thread and we branch to another stub to deliver it.
450 *
451 * On success this wrapper will restore arguments and *jump* to the target, leaving the lr
452 * pointing back to the original caller.
Andreas Gampe51f76352014-05-21 08:28:48 -0700453 *
454 * Adapted from ARM32 code.
455 *
Zheng Xub551fdc2014-07-25 11:49:42 +0800456 * Clobbers xIP0.
Stuart Monteithb95a5342014-03-12 13:32:32 +0000457 */
458.macro INVOKE_TRAMPOLINE c_name, cxx_name
459 .extern \cxx_name
460ENTRY \c_name
Andreas Gampe51f76352014-05-21 08:28:48 -0700461 SETUP_REF_AND_ARGS_CALLEE_SAVE_FRAME // save callee saves in case allocation triggers GC
462 // Helper signature is always
463 // (method_idx, *this_object, *caller_method, *self, sp)
464
Alexei Zavjalov41c507a2014-05-15 16:02:46 +0700465 ldr w2, [sp, #FRAME_SIZE_REFS_AND_ARGS_CALLEE_SAVE] // pass caller Method*
Andreas Gampe51f76352014-05-21 08:28:48 -0700466 mov x3, xSELF // pass Thread::Current
467 mov x4, sp
468 bl \cxx_name // (method_idx, this, caller, Thread*, SP)
Zheng Xub551fdc2014-07-25 11:49:42 +0800469 mov xIP0, x1 // save Method*->code_
Andreas Gampe51f76352014-05-21 08:28:48 -0700470 RESTORE_REF_AND_ARGS_CALLEE_SAVE_FRAME
471 cbz x0, 1f // did we find the target? if not go to exception delivery
Zheng Xub551fdc2014-07-25 11:49:42 +0800472 br xIP0 // tail call to target
Andreas Gampe51f76352014-05-21 08:28:48 -07004731:
474 DELIVER_PENDING_EXCEPTION
Stuart Monteithb95a5342014-03-12 13:32:32 +0000475END \c_name
476.endm
477
478INVOKE_TRAMPOLINE art_quick_invoke_interface_trampoline, artInvokeInterfaceTrampoline
479INVOKE_TRAMPOLINE art_quick_invoke_interface_trampoline_with_access_check, artInvokeInterfaceTrampolineWithAccessCheck
480
481INVOKE_TRAMPOLINE art_quick_invoke_static_trampoline_with_access_check, artInvokeStaticTrampolineWithAccessCheck
482INVOKE_TRAMPOLINE art_quick_invoke_direct_trampoline_with_access_check, artInvokeDirectTrampolineWithAccessCheck
483INVOKE_TRAMPOLINE art_quick_invoke_super_trampoline_with_access_check, artInvokeSuperTrampolineWithAccessCheck
484INVOKE_TRAMPOLINE art_quick_invoke_virtual_trampoline_with_access_check, artInvokeVirtualTrampolineWithAccessCheck
485
Andreas Gampe03906cf2014-04-07 12:08:28 -0700486
487.macro INVOKE_STUB_CREATE_FRAME
488
Zheng Xub551fdc2014-07-25 11:49:42 +0800489SAVE_SIZE=6*8 // x4, x5, xSUSPEND, SP, LR & FP saved.
Andreas Gampecf4035a2014-05-28 22:43:01 -0700490SAVE_SIZE_AND_METHOD=SAVE_SIZE+STACK_REFERENCE_SIZE
491
Andreas Gampe03906cf2014-04-07 12:08:28 -0700492
Zheng Xu48241e72014-05-23 11:52:42 +0800493 mov x9, sp // Save stack pointer.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700494 .cfi_register sp,x9
495
Zheng Xu48241e72014-05-23 11:52:42 +0800496 add x10, x2, # SAVE_SIZE_AND_METHOD // calculate size of frame.
497 sub x10, sp, x10 // Calculate SP position - saves + ArtMethod* + args
498 and x10, x10, # ~0xf // Enforce 16 byte stack alignment.
499 mov sp, x10 // Set new SP.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700500
Zheng Xu48241e72014-05-23 11:52:42 +0800501 sub x10, x9, #SAVE_SIZE // Calculate new FP (later). Done here as we must move SP
502 .cfi_def_cfa_register x10 // before this.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700503 .cfi_adjust_cfa_offset SAVE_SIZE
504
Zheng Xub551fdc2014-07-25 11:49:42 +0800505 stp x9, xSUSPEND, [x10, #32] // Save old stack pointer and xSUSPEND
Andreas Gampe03906cf2014-04-07 12:08:28 -0700506 .cfi_rel_offset sp, 32
Andreas Gampecf4035a2014-05-28 22:43:01 -0700507 .cfi_rel_offset x19, 40
Andreas Gampe03906cf2014-04-07 12:08:28 -0700508
Zheng Xu48241e72014-05-23 11:52:42 +0800509 stp x4, x5, [x10, #16] // Save result and shorty addresses.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700510 .cfi_rel_offset x4, 16
511 .cfi_rel_offset x5, 24
512
Zheng Xu48241e72014-05-23 11:52:42 +0800513 stp xFP, xLR, [x10] // Store LR & FP.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700514 .cfi_rel_offset x29, 0
515 .cfi_rel_offset x30, 8
516
Zheng Xu48241e72014-05-23 11:52:42 +0800517 mov xFP, x10 // Use xFP now, as it's callee-saved.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700518 .cfi_def_cfa_register x29
Zheng Xu48241e72014-05-23 11:52:42 +0800519 mov xSELF, x3 // Move thread pointer into SELF register.
520 mov wSUSPEND, #SUSPEND_CHECK_INTERVAL // reset wSUSPEND to suspend check interval
Andreas Gampe03906cf2014-04-07 12:08:28 -0700521
522 // Copy arguments into stack frame.
523 // Use simple copy routine for now.
524 // 4 bytes per slot.
525 // X1 - source address
526 // W2 - args length
527 // X9 - destination address.
528 // W10 - temporary
Andreas Gampecf4035a2014-05-28 22:43:01 -0700529 add x9, sp, #4 // Destination address is bottom of stack + NULL.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700530
531 // Use \@ to differentiate between macro invocations.
532.LcopyParams\@:
533 cmp w2, #0
534 beq .LendCopyParams\@
535 sub w2, w2, #4 // Need 65536 bytes of range.
536 ldr w10, [x1, x2]
537 str w10, [x9, x2]
538
539 b .LcopyParams\@
540
541.LendCopyParams\@:
542
Andreas Gampecf4035a2014-05-28 22:43:01 -0700543 // Store NULL into StackReference<Method>* at bottom of frame.
544 str wzr, [sp]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700545
Andreas Gampecf4035a2014-05-28 22:43:01 -0700546#if (STACK_REFERENCE_SIZE != 4)
547#error "STACK_REFERENCE_SIZE(ARM64) size not as expected."
548#endif
Andreas Gampe03906cf2014-04-07 12:08:28 -0700549.endm
550
551.macro INVOKE_STUB_CALL_AND_RETURN
552
553 // load method-> METHOD_QUICK_CODE_OFFSET
554 ldr x9, [x0 , #METHOD_QUICK_CODE_OFFSET]
555 // Branch to method.
556 blr x9
557
558 // Restore return value address and shorty address.
559 ldp x4,x5, [xFP, #16]
560 .cfi_restore x4
561 .cfi_restore x5
562
563 // Store result (w0/x0/s0/d0) appropriately, depending on resultType.
564 ldrb w10, [x5]
565
566 // Don't set anything for a void type.
567 cmp w10, #'V'
568 beq .Lexit_art_quick_invoke_stub\@
569
570 cmp w10, #'D'
571 bne .Lreturn_is_float\@
572 str d0, [x4]
573 b .Lexit_art_quick_invoke_stub\@
574
575.Lreturn_is_float\@:
576 cmp w10, #'F'
577 bne .Lreturn_is_int\@
578 str s0, [x4]
579 b .Lexit_art_quick_invoke_stub\@
580
581 // Just store x0. Doesn't matter if it is 64 or 32 bits.
582.Lreturn_is_int\@:
583 str x0, [x4]
584
585.Lexit_art_quick_invoke_stub\@:
Zheng Xub551fdc2014-07-25 11:49:42 +0800586 ldp x2, xSUSPEND, [xFP, #32] // Restore stack pointer and xSUSPEND.
Andreas Gampecf4035a2014-05-28 22:43:01 -0700587 .cfi_restore x19
Andreas Gampe03906cf2014-04-07 12:08:28 -0700588 mov sp, x2
589 .cfi_restore sp
590
Andreas Gamped58342c2014-06-05 14:18:08 -0700591 ldp xFP, xLR, [xFP] // Restore old frame pointer and link register.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700592 .cfi_restore x29
593 .cfi_restore x30
594
595 ret
596
597.endm
598
599
Stuart Monteithb95a5342014-03-12 13:32:32 +0000600/*
601 * extern"C" void art_quick_invoke_stub(ArtMethod *method, x0
602 * uint32_t *args, x1
603 * uint32_t argsize, w2
604 * Thread *self, x3
605 * JValue *result, x4
606 * char *shorty); x5
607 * +----------------------+
608 * | |
609 * | C/C++ frame |
610 * | LR'' |
611 * | FP'' | <- SP'
612 * +----------------------+
613 * +----------------------+
Zheng Xub551fdc2014-07-25 11:49:42 +0800614 * | x19 | <- Used as wSUSPEND, won't be restored by managed code.
Stuart Monteithb95a5342014-03-12 13:32:32 +0000615 * | SP' |
616 * | X5 |
617 * | X4 | Saved registers
618 * | LR' |
619 * | FP' | <- FP
620 * +----------------------+
621 * | uint32_t out[n-1] |
622 * | : : | Outs
623 * | uint32_t out[0] |
Andreas Gampecf4035a2014-05-28 22:43:01 -0700624 * | StackRef<ArtMethod> | <- SP value=null
Stuart Monteithb95a5342014-03-12 13:32:32 +0000625 * +----------------------+
626 *
627 * Outgoing registers:
628 * x0 - Method*
629 * x1-x7 - integer parameters.
630 * d0-d7 - Floating point parameters.
631 * xSELF = self
Zheng Xu48241e72014-05-23 11:52:42 +0800632 * wSUSPEND = suspend count
Stuart Monteithb95a5342014-03-12 13:32:32 +0000633 * SP = & of ArtMethod*
634 * x1 = "this" pointer.
635 *
636 */
637ENTRY art_quick_invoke_stub
638 // Spill registers as per AACPS64 calling convention.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700639 INVOKE_STUB_CREATE_FRAME
Stuart Monteithb95a5342014-03-12 13:32:32 +0000640
641 // Fill registers x/w1 to x/w7 and s/d0 to s/d7 with parameters.
642 // Parse the passed shorty to determine which register to load.
643 // Load addresses for routines that load WXSD registers.
644 adr x11, .LstoreW2
645 adr x12, .LstoreX2
646 adr x13, .LstoreS0
647 adr x14, .LstoreD0
648
649 // Initialize routine offsets to 0 for integers and floats.
650 // x8 for integers, x15 for floating point.
651 mov x8, #0
652 mov x15, #0
653
654 add x10, x5, #1 // Load shorty address, plus one to skip return value.
655 ldr w1, [x9],#4 // Load "this" parameter, and increment arg pointer.
656
657 // Loop to fill registers.
658.LfillRegisters:
659 ldrb w17, [x10], #1 // Load next character in signature, and increment.
660 cbz w17, .LcallFunction // Exit at end of signature. Shorty 0 terminated.
661
662 cmp w17, #'F' // is this a float?
663 bne .LisDouble
664
665 cmp x15, # 8*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700666 beq .Ladvance4
Stuart Monteithb95a5342014-03-12 13:32:32 +0000667
668 add x17, x13, x15 // Calculate subroutine to jump to.
669 br x17
670
671.LisDouble:
672 cmp w17, #'D' // is this a double?
673 bne .LisLong
674
675 cmp x15, # 8*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700676 beq .Ladvance8
Stuart Monteithb95a5342014-03-12 13:32:32 +0000677
678 add x17, x14, x15 // Calculate subroutine to jump to.
679 br x17
680
681.LisLong:
682 cmp w17, #'J' // is this a long?
683 bne .LisOther
684
Andreas Gampe9de65ff2014-03-21 17:25:57 -0700685 cmp x8, # 6*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700686 beq .Ladvance8
Stuart Monteithb95a5342014-03-12 13:32:32 +0000687
688 add x17, x12, x8 // Calculate subroutine to jump to.
689 br x17
690
Stuart Monteithb95a5342014-03-12 13:32:32 +0000691.LisOther: // Everything else takes one vReg.
Andreas Gampe9de65ff2014-03-21 17:25:57 -0700692 cmp x8, # 6*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700693 beq .Ladvance4
694
Stuart Monteithb95a5342014-03-12 13:32:32 +0000695 add x17, x11, x8 // Calculate subroutine to jump to.
696 br x17
697
Andreas Gampe03906cf2014-04-07 12:08:28 -0700698.Ladvance4:
699 add x9, x9, #4
700 b .LfillRegisters
701
702.Ladvance8:
703 add x9, x9, #8
704 b .LfillRegisters
705
Stuart Monteithb95a5342014-03-12 13:32:32 +0000706// Macro for loading a parameter into a register.
707// counter - the register with offset into these tables
708// size - the size of the register - 4 or 8 bytes.
709// register - the name of the register to be loaded.
710.macro LOADREG counter size register return
711 ldr \register , [x9], #\size
712 add \counter, \counter, 12
713 b \return
714.endm
715
716// Store ints.
717.LstoreW2:
718 LOADREG x8 4 w2 .LfillRegisters
719 LOADREG x8 4 w3 .LfillRegisters
720 LOADREG x8 4 w4 .LfillRegisters
721 LOADREG x8 4 w5 .LfillRegisters
722 LOADREG x8 4 w6 .LfillRegisters
723 LOADREG x8 4 w7 .LfillRegisters
724
725// Store longs.
726.LstoreX2:
727 LOADREG x8 8 x2 .LfillRegisters
728 LOADREG x8 8 x3 .LfillRegisters
729 LOADREG x8 8 x4 .LfillRegisters
730 LOADREG x8 8 x5 .LfillRegisters
731 LOADREG x8 8 x6 .LfillRegisters
732 LOADREG x8 8 x7 .LfillRegisters
733
734// Store singles.
735.LstoreS0:
736 LOADREG x15 4 s0 .LfillRegisters
737 LOADREG x15 4 s1 .LfillRegisters
738 LOADREG x15 4 s2 .LfillRegisters
739 LOADREG x15 4 s3 .LfillRegisters
740 LOADREG x15 4 s4 .LfillRegisters
741 LOADREG x15 4 s5 .LfillRegisters
742 LOADREG x15 4 s6 .LfillRegisters
743 LOADREG x15 4 s7 .LfillRegisters
744
745// Store doubles.
746.LstoreD0:
747 LOADREG x15 8 d0 .LfillRegisters
748 LOADREG x15 8 d1 .LfillRegisters
749 LOADREG x15 8 d2 .LfillRegisters
750 LOADREG x15 8 d3 .LfillRegisters
751 LOADREG x15 8 d4 .LfillRegisters
752 LOADREG x15 8 d5 .LfillRegisters
753 LOADREG x15 8 d6 .LfillRegisters
754 LOADREG x15 8 d7 .LfillRegisters
755
756
757.LcallFunction:
758
Andreas Gampe03906cf2014-04-07 12:08:28 -0700759 INVOKE_STUB_CALL_AND_RETURN
Stuart Monteithb95a5342014-03-12 13:32:32 +0000760
Stuart Monteithb95a5342014-03-12 13:32:32 +0000761END art_quick_invoke_stub
762
763/* extern"C"
764 * void art_quick_invoke_static_stub(ArtMethod *method, x0
765 * uint32_t *args, x1
766 * uint32_t argsize, w2
767 * Thread *self, x3
768 * JValue *result, x4
769 * char *shorty); x5
770 */
771ENTRY art_quick_invoke_static_stub
772 // Spill registers as per AACPS64 calling convention.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700773 INVOKE_STUB_CREATE_FRAME
Stuart Monteithb95a5342014-03-12 13:32:32 +0000774
775 // Fill registers x/w1 to x/w7 and s/d0 to s/d7 with parameters.
776 // Parse the passed shorty to determine which register to load.
777 // Load addresses for routines that load WXSD registers.
778 adr x11, .LstoreW1_2
779 adr x12, .LstoreX1_2
780 adr x13, .LstoreS0_2
781 adr x14, .LstoreD0_2
782
783 // Initialize routine offsets to 0 for integers and floats.
784 // x8 for integers, x15 for floating point.
785 mov x8, #0
786 mov x15, #0
787
788 add x10, x5, #1 // Load shorty address, plus one to skip return value.
789
790 // Loop to fill registers.
791.LfillRegisters2:
792 ldrb w17, [x10], #1 // Load next character in signature, and increment.
793 cbz w17, .LcallFunction2 // Exit at end of signature. Shorty 0 terminated.
794
795 cmp w17, #'F' // is this a float?
796 bne .LisDouble2
797
798 cmp x15, # 8*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700799 beq .Ladvance4_2
Stuart Monteithb95a5342014-03-12 13:32:32 +0000800
801 add x17, x13, x15 // Calculate subroutine to jump to.
802 br x17
803
804.LisDouble2:
805 cmp w17, #'D' // is this a double?
806 bne .LisLong2
807
808 cmp x15, # 8*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700809 beq .Ladvance8_2
Stuart Monteithb95a5342014-03-12 13:32:32 +0000810
811 add x17, x14, x15 // Calculate subroutine to jump to.
812 br x17
813
814.LisLong2:
815 cmp w17, #'J' // is this a long?
816 bne .LisOther2
817
818 cmp x8, # 7*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700819 beq .Ladvance8_2
Stuart Monteithb95a5342014-03-12 13:32:32 +0000820
821 add x17, x12, x8 // Calculate subroutine to jump to.
822 br x17
823
Stuart Monteithb95a5342014-03-12 13:32:32 +0000824.LisOther2: // Everything else takes one vReg.
825 cmp x8, # 7*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700826 beq .Ladvance4_2
827
Stuart Monteithb95a5342014-03-12 13:32:32 +0000828 add x17, x11, x8 // Calculate subroutine to jump to.
829 br x17
830
Andreas Gampe03906cf2014-04-07 12:08:28 -0700831.Ladvance4_2:
832 add x9, x9, #4
833 b .LfillRegisters2
834
835.Ladvance8_2:
836 add x9, x9, #8
837 b .LfillRegisters2
838
Stuart Monteithb95a5342014-03-12 13:32:32 +0000839// Store ints.
840.LstoreW1_2:
841 LOADREG x8 4 w1 .LfillRegisters2
842 LOADREG x8 4 w2 .LfillRegisters2
843 LOADREG x8 4 w3 .LfillRegisters2
844 LOADREG x8 4 w4 .LfillRegisters2
845 LOADREG x8 4 w5 .LfillRegisters2
846 LOADREG x8 4 w6 .LfillRegisters2
847 LOADREG x8 4 w7 .LfillRegisters2
848
849// Store longs.
850.LstoreX1_2:
851 LOADREG x8 8 x1 .LfillRegisters2
852 LOADREG x8 8 x2 .LfillRegisters2
853 LOADREG x8 8 x3 .LfillRegisters2
854 LOADREG x8 8 x4 .LfillRegisters2
855 LOADREG x8 8 x5 .LfillRegisters2
856 LOADREG x8 8 x6 .LfillRegisters2
857 LOADREG x8 8 x7 .LfillRegisters2
858
859// Store singles.
860.LstoreS0_2:
861 LOADREG x15 4 s0 .LfillRegisters2
862 LOADREG x15 4 s1 .LfillRegisters2
863 LOADREG x15 4 s2 .LfillRegisters2
864 LOADREG x15 4 s3 .LfillRegisters2
865 LOADREG x15 4 s4 .LfillRegisters2
866 LOADREG x15 4 s5 .LfillRegisters2
867 LOADREG x15 4 s6 .LfillRegisters2
868 LOADREG x15 4 s7 .LfillRegisters2
869
870// Store doubles.
871.LstoreD0_2:
872 LOADREG x15 8 d0 .LfillRegisters2
873 LOADREG x15 8 d1 .LfillRegisters2
874 LOADREG x15 8 d2 .LfillRegisters2
875 LOADREG x15 8 d3 .LfillRegisters2
876 LOADREG x15 8 d4 .LfillRegisters2
877 LOADREG x15 8 d5 .LfillRegisters2
878 LOADREG x15 8 d6 .LfillRegisters2
879 LOADREG x15 8 d7 .LfillRegisters2
880
881
882.LcallFunction2:
883
Andreas Gampe03906cf2014-04-07 12:08:28 -0700884 INVOKE_STUB_CALL_AND_RETURN
Stuart Monteithb95a5342014-03-12 13:32:32 +0000885
Stuart Monteithb95a5342014-03-12 13:32:32 +0000886END art_quick_invoke_static_stub
887
Andreas Gampe03906cf2014-04-07 12:08:28 -0700888
Stuart Monteithb95a5342014-03-12 13:32:32 +0000889
890 /*
891 * On entry x0 is uintptr_t* gprs_ and x1 is uint64_t* fprs_
892 */
893
894ENTRY art_quick_do_long_jump
895 // Load FPRs
896 ldp d0, d1, [x1], #16
897 ldp d2, d3, [x1], #16
898 ldp d4, d5, [x1], #16
899 ldp d6, d7, [x1], #16
900 ldp d8, d9, [x1], #16
901 ldp d10, d11, [x1], #16
902 ldp d12, d13, [x1], #16
903 ldp d14, d15, [x1], #16
904 ldp d16, d17, [x1], #16
905 ldp d18, d19, [x1], #16
906 ldp d20, d21, [x1], #16
907 ldp d22, d23, [x1], #16
908 ldp d24, d25, [x1], #16
909 ldp d26, d27, [x1], #16
910 ldp d28, d29, [x1], #16
911 ldp d30, d31, [x1]
912
913 // Load GPRs
914 // TODO: lots of those are smashed, could optimize.
915 add x0, x0, #30*8
916 ldp x30, x1, [x0], #-16
917 ldp x28, x29, [x0], #-16
918 ldp x26, x27, [x0], #-16
919 ldp x24, x25, [x0], #-16
920 ldp x22, x23, [x0], #-16
921 ldp x20, x21, [x0], #-16
922 ldp x18, x19, [x0], #-16
923 ldp x16, x17, [x0], #-16
924 ldp x14, x15, [x0], #-16
925 ldp x12, x13, [x0], #-16
926 ldp x10, x11, [x0], #-16
927 ldp x8, x9, [x0], #-16
928 ldp x6, x7, [x0], #-16
929 ldp x4, x5, [x0], #-16
930 ldp x2, x3, [x0], #-16
931 mov sp, x1
932
933 // TODO: Is it really OK to use LR for the target PC?
934 mov x0, #0
935 mov x1, #0
936 br xLR
937END art_quick_do_long_jump
938
Andreas Gampef4e910b2014-04-29 16:55:52 -0700939 /*
940 * Entry from managed code that calls artHandleFillArrayDataFromCode and delivers exception on
941 * failure.
942 */
943 .extern artHandleFillArrayDataFromCode
Andreas Gampef4e910b2014-04-29 16:55:52 -0700944ENTRY art_quick_handle_fill_data
945 SETUP_REF_ONLY_CALLEE_SAVE_FRAME // Save callee saves in case exception allocation triggers GC.
946 mov x2, xSELF // Pass Thread::Current.
947 mov x3, sp // Pass SP.
948 bl artHandleFillArrayDataFromCode // (Array*, const DexFile::Payload*, Thread*, SP)
949 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME
950 RETURN_IF_RESULT_IS_ZERO
951 DELIVER_PENDING_EXCEPTION
952END art_quick_handle_fill_data
Stuart Monteithb95a5342014-03-12 13:32:32 +0000953
Andreas Gampe4fc046e2014-05-06 16:56:39 -0700954 /*
955 * Entry from managed code that calls artLockObjectFromCode, may block for GC. x0 holds the
956 * possibly null object to lock.
957 *
958 * Derived from arm32 code.
959 */
960 .extern artLockObjectFromCode
961ENTRY art_quick_lock_object
962 cbz w0, .Lslow_lock
963 add x4, x0, #LOCK_WORD_OFFSET // exclusive load/store had no immediate anymore
964.Lretry_lock:
965 ldr w2, [xSELF, #THREAD_ID_OFFSET] // TODO: Can the thread ID really change during the loop?
966 ldxr w1, [x4]
967 cbnz w1, .Lnot_unlocked // already thin locked
968 stxr w3, w2, [x4]
969 cbnz w3, .Lstrex_fail // store failed, retry
Andreas Gampe675967d2014-05-14 16:28:34 -0700970 dmb ishld // full (LoadLoad|LoadStore) memory barrier
Andreas Gampe4fc046e2014-05-06 16:56:39 -0700971 ret
972.Lstrex_fail:
973 b .Lretry_lock // unlikely forward branch, need to reload and recheck r1/r2
974.Lnot_unlocked:
975 lsr w3, w1, 30
976 cbnz w3, .Lslow_lock // if either of the top two bits are set, go slow path
977 eor w2, w1, w2 // lock_word.ThreadId() ^ self->ThreadId()
978 uxth w2, w2 // zero top 16 bits
979 cbnz w2, .Lslow_lock // lock word and self thread id's match -> recursive lock
980 // else contention, go to slow path
981 add w2, w1, #65536 // increment count in lock word placing in w2 for storing
982 lsr w1, w2, 30 // if either of the top two bits are set, we overflowed.
983 cbnz w1, .Lslow_lock // if we overflow the count go slow path
984 str w2, [x0, #LOCK_WORD_OFFSET]// no need for stxr as we hold the lock
985 ret
986.Lslow_lock:
987 SETUP_REF_ONLY_CALLEE_SAVE_FRAME // save callee saves in case we block
988 mov x1, xSELF // pass Thread::Current
989 mov x2, sp // pass SP
990 bl artLockObjectFromCode // (Object* obj, Thread*, SP)
991 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME
992 RETURN_IF_W0_IS_ZERO_OR_DELIVER
993END art_quick_lock_object
994
995 /*
996 * Entry from managed code that calls artUnlockObjectFromCode and delivers exception on failure.
997 * x0 holds the possibly null object to lock.
998 *
999 * Derived from arm32 code.
1000 */
1001 .extern artUnlockObjectFromCode
1002ENTRY art_quick_unlock_object
1003 cbz x0, .Lslow_unlock
1004 ldr w1, [x0, #LOCK_WORD_OFFSET]
1005 lsr w2, w1, 30
1006 cbnz w2, .Lslow_unlock // if either of the top two bits are set, go slow path
1007 ldr w2, [xSELF, #THREAD_ID_OFFSET]
1008 eor w3, w1, w2 // lock_word.ThreadId() ^ self->ThreadId()
1009 uxth w3, w3 // zero top 16 bits
1010 cbnz w3, .Lslow_unlock // do lock word and self thread id's match?
1011 cmp w1, #65536
1012 bpl .Lrecursive_thin_unlock
1013 // transition to unlocked, w3 holds 0
Andreas Gampe675967d2014-05-14 16:28:34 -07001014 dmb ish // full (LoadStore|StoreStore) memory barrier
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001015 str w3, [x0, #LOCK_WORD_OFFSET]
1016 ret
1017.Lrecursive_thin_unlock:
1018 sub w1, w1, #65536
1019 str w1, [x0, #LOCK_WORD_OFFSET]
1020 ret
1021.Lslow_unlock:
1022 SETUP_REF_ONLY_CALLEE_SAVE_FRAME // save callee saves in case exception allocation triggers GC
1023 mov x1, xSELF // pass Thread::Current
1024 mov x2, sp // pass SP
1025 bl artUnlockObjectFromCode // (Object* obj, Thread*, SP)
1026 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME
1027 RETURN_IF_W0_IS_ZERO_OR_DELIVER
1028END art_quick_unlock_object
Andreas Gampe525cde22014-04-22 15:44:50 -07001029
1030 /*
1031 * Entry from managed code that calls artIsAssignableFromCode and on failure calls
1032 * artThrowClassCastException.
1033 */
1034 .extern artThrowClassCastException
1035ENTRY art_quick_check_cast
1036 // Store arguments and link register
1037 sub sp, sp, #32 // Stack needs to be 16b aligned on calls
1038 .cfi_adjust_cfa_offset 32
1039 stp x0, x1, [sp]
1040 .cfi_rel_offset x0, 0
1041 .cfi_rel_offset x1, 8
1042 stp xSELF, xLR, [sp, #16]
1043 .cfi_rel_offset x18, 16
1044 .cfi_rel_offset x30, 24
1045
1046 // Call runtime code
1047 bl artIsAssignableFromCode
1048
1049 // Check for exception
1050 cbz x0, .Lthrow_class_cast_exception
1051
1052 // Restore and return
1053 ldp x0, x1, [sp]
1054 .cfi_restore x0
1055 .cfi_restore x1
1056 ldp xSELF, xLR, [sp, #16]
1057 .cfi_restore x18
1058 .cfi_restore x30
1059 add sp, sp, #32
1060 .cfi_adjust_cfa_offset -32
1061 ret
1062
1063.Lthrow_class_cast_exception:
1064 // Restore
1065 ldp x0, x1, [sp]
1066 .cfi_restore x0
1067 .cfi_restore x1
1068 ldp xSELF, xLR, [sp, #16]
1069 .cfi_restore x18
1070 .cfi_restore x30
1071 add sp, sp, #32
1072 .cfi_adjust_cfa_offset -32
1073
1074 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME // save all registers as basis for long jump context
1075 mov x2, xSELF // pass Thread::Current
1076 mov x3, sp // pass SP
1077 b artThrowClassCastException // (Class*, Class*, Thread*, SP)
1078 brk 0 // We should not return here...
1079END art_quick_check_cast
1080
Andreas Gampef4e910b2014-04-29 16:55:52 -07001081 /*
1082 * Entry from managed code for array put operations of objects where the value being stored
1083 * needs to be checked for compatibility.
1084 * x0 = array, x1 = index, x2 = value
1085 *
1086 * Currently all values should fit into w0/w1/w2, and w1 always will as indices are 32b. We
1087 * assume, though, that the upper 32b are zeroed out. At least for x1/w1 we can do better by
1088 * using index-zero-extension in load/stores.
1089 *
1090 * Temporaries: x3, x4
1091 * TODO: x4 OK? ip seems wrong here.
1092 */
1093ENTRY art_quick_aput_obj_with_null_and_bound_check
1094 tst x0, x0
1095 bne art_quick_aput_obj_with_bound_check
1096 b art_quick_throw_null_pointer_exception
1097END art_quick_aput_obj_with_null_and_bound_check
1098
1099ENTRY art_quick_aput_obj_with_bound_check
1100 ldr w3, [x0, #ARRAY_LENGTH_OFFSET]
1101 cmp w3, w1
1102 bhi art_quick_aput_obj
1103 mov x0, x1
1104 mov x1, x3
1105 b art_quick_throw_array_bounds
1106END art_quick_aput_obj_with_bound_check
1107
1108ENTRY art_quick_aput_obj
1109 cbz x2, .Ldo_aput_null
1110 ldr w3, [x0, #CLASS_OFFSET] // Heap reference = 32b
1111 // This also zero-extends to x3
1112 ldr w4, [x2, #CLASS_OFFSET] // Heap reference = 32b
1113 // This also zero-extends to x4
1114 ldr w3, [x3, #CLASS_COMPONENT_TYPE_OFFSET] // Heap reference = 32b
1115 // This also zero-extends to x3
1116 cmp w3, w4 // value's type == array's component type - trivial assignability
1117 bne .Lcheck_assignability
1118.Ldo_aput:
1119 add x3, x0, #OBJECT_ARRAY_DATA_OFFSET
1120 // "Compress" = do nothing
1121 str w2, [x3, x1, lsl #2] // Heap reference = 32b
1122 ldr x3, [xSELF, #THREAD_CARD_TABLE_OFFSET]
1123 lsr x0, x0, #7
1124 strb w3, [x3, x0]
1125 ret
1126.Ldo_aput_null:
1127 add x3, x0, #OBJECT_ARRAY_DATA_OFFSET
1128 // "Compress" = do nothing
1129 str w2, [x3, x1, lsl #2] // Heap reference = 32b
1130 ret
1131.Lcheck_assignability:
1132 // Store arguments and link register
1133 sub sp, sp, #48 // Stack needs to be 16b aligned on calls
1134 .cfi_adjust_cfa_offset 48
1135 stp x0, x1, [sp]
1136 .cfi_rel_offset x0, 0
1137 .cfi_rel_offset x1, 8
1138 stp x2, xSELF, [sp, #16]
1139 .cfi_rel_offset x2, 16
1140 .cfi_rel_offset x18, 24
1141 str xLR, [sp, #32]
1142 .cfi_rel_offset x30, 32
1143
1144 // Call runtime code
1145 mov x0, x3 // Heap reference, 32b, "uncompress" = do nothing, already zero-extended
1146 mov x1, x4 // Heap reference, 32b, "uncompress" = do nothing, already zero-extended
1147 bl artIsAssignableFromCode
1148
1149 // Check for exception
1150 cbz x0, .Lthrow_array_store_exception
1151
1152 // Restore
1153 ldp x0, x1, [sp]
1154 .cfi_restore x0
1155 .cfi_restore x1
1156 ldp x2, xSELF, [sp, #16]
1157 .cfi_restore x2
1158 .cfi_restore x18
1159 ldr xLR, [sp, #32]
1160 .cfi_restore x30
1161 add sp, sp, #48
1162 .cfi_adjust_cfa_offset -48
1163
1164 add x3, x0, #OBJECT_ARRAY_DATA_OFFSET
1165 // "Compress" = do nothing
1166 str w2, [x3, x1, lsl #2] // Heap reference = 32b
1167 ldr x3, [xSELF, #THREAD_CARD_TABLE_OFFSET]
1168 lsr x0, x0, #7
1169 strb w3, [x3, x0]
1170 ret
1171.Lthrow_array_store_exception:
1172 ldp x0, x1, [sp]
1173 .cfi_restore x0
1174 .cfi_restore x1
1175 ldp x2, xSELF, [sp, #16]
1176 .cfi_restore x2
1177 .cfi_restore x18
1178 ldr xLR, [sp, #32]
1179 .cfi_restore x30
1180 add sp, sp, #48
1181 .cfi_adjust_cfa_offset -48
1182
1183 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME
1184 mov x1, x2 // Pass value.
1185 mov x2, xSELF // Pass Thread::Current.
1186 mov x3, sp // Pass SP.
1187 b artThrowArrayStoreException // (Object*, Object*, Thread*, SP).
1188 brk 0 // Unreached.
1189END art_quick_aput_obj
1190
Stuart Monteithb95a5342014-03-12 13:32:32 +00001191// Macro to facilitate adding new allocation entrypoints.
1192.macro TWO_ARG_DOWNCALL name, entrypoint, return
1193 .extern \entrypoint
1194ENTRY \name
Andreas Gampe00c1e6d2014-04-25 15:47:13 -07001195 SETUP_REF_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
1196 mov x2, xSELF // pass Thread::Current
1197 mov x3, sp // pass SP
1198 bl \entrypoint // (uint32_t type_idx, Method* method, Thread*, SP)
1199 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME
1200 \return
1201 DELIVER_PENDING_EXCEPTION
Stuart Monteithb95a5342014-03-12 13:32:32 +00001202END \name
1203.endm
1204
1205// Macro to facilitate adding new array allocation entrypoints.
1206.macro THREE_ARG_DOWNCALL name, entrypoint, return
1207 .extern \entrypoint
1208ENTRY \name
Andreas Gampe00c1e6d2014-04-25 15:47:13 -07001209 SETUP_REF_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
1210 mov x3, xSELF // pass Thread::Current
1211 mov x4, sp // pass SP
1212 bl \entrypoint
1213 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME
1214 \return
1215 DELIVER_PENDING_EXCEPTION
Stuart Monteithb95a5342014-03-12 13:32:32 +00001216END \name
1217.endm
1218
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001219// Macros taking opportunity of code similarities for downcalls with referrer.
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001220.macro ONE_ARG_REF_DOWNCALL name, entrypoint, return
1221 .extern \entrypoint
1222ENTRY \name
1223 SETUP_REF_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
Andreas Gampecf4035a2014-05-28 22:43:01 -07001224 ldr w1, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001225 mov x2, xSELF // pass Thread::Current
1226 mov x3, sp // pass SP
1227 bl \entrypoint // (uint32_t type_idx, Method* method, Thread*, SP)
1228 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME
1229 \return
1230END \name
1231.endm
1232
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001233.macro TWO_ARG_REF_DOWNCALL name, entrypoint, return
1234 .extern \entrypoint
1235ENTRY \name
1236 SETUP_REF_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
Andreas Gampecf4035a2014-05-28 22:43:01 -07001237 ldr w2, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001238 mov x3, xSELF // pass Thread::Current
1239 mov x4, sp // pass SP
1240 bl \entrypoint
1241 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME
1242 \return
1243END \name
1244.endm
1245
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001246.macro THREE_ARG_REF_DOWNCALL name, entrypoint, return
1247 .extern \entrypoint
1248ENTRY \name
1249 SETUP_REF_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
Andreas Gampecf4035a2014-05-28 22:43:01 -07001250 ldr w3, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001251 mov x4, xSELF // pass Thread::Current
1252 mov x5, sp // pass SP
1253 bl \entrypoint
1254 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME
1255 \return
1256END \name
1257.endm
1258
Matteo Franchindfd891a2014-04-30 12:17:17 +01001259 /*
1260 * Entry from managed code when uninitialized static storage, this stub will run the class
1261 * initializer and deliver the exception on error. On success the static storage base is
1262 * returned.
1263 */
1264TWO_ARG_DOWNCALL art_quick_initialize_static_storage, artInitializeStaticStorageFromCode, RETURN_IF_RESULT_IS_NON_ZERO
1265
Andreas Gampe6aac3552014-06-09 14:55:53 -07001266TWO_ARG_DOWNCALL art_quick_initialize_type, artInitializeTypeFromCode, RETURN_IF_RESULT_IS_NON_ZERO
1267TWO_ARG_DOWNCALL art_quick_initialize_type_and_verify_access, artInitializeTypeAndVerifyAccessFromCode, RETURN_IF_RESULT_IS_NON_ZERO
Matteo Franchindfd891a2014-04-30 12:17:17 +01001268
Fred Shih37f05ef2014-07-16 18:38:08 -07001269ONE_ARG_REF_DOWNCALL art_quick_get_boolean_static, artGetBooleanStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1270ONE_ARG_REF_DOWNCALL art_quick_get_byte_static, artGetByteStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1271ONE_ARG_REF_DOWNCALL art_quick_get_char_static, artGetCharStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1272ONE_ARG_REF_DOWNCALL art_quick_get_short_static, artGetShortStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001273ONE_ARG_REF_DOWNCALL art_quick_get32_static, artGet32StaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1274ONE_ARG_REF_DOWNCALL art_quick_get64_static, artGet64StaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1275ONE_ARG_REF_DOWNCALL art_quick_get_obj_static, artGetObjStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1276
Fred Shih37f05ef2014-07-16 18:38:08 -07001277TWO_ARG_REF_DOWNCALL art_quick_get_boolean_instance, artGetBooleanInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1278TWO_ARG_REF_DOWNCALL art_quick_get_byte_instance, artGetByteInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1279TWO_ARG_REF_DOWNCALL art_quick_get_char_instance, artGetCharInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1280TWO_ARG_REF_DOWNCALL art_quick_get_short_instance, artGetShortInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001281TWO_ARG_REF_DOWNCALL art_quick_get32_instance, artGet32InstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1282TWO_ARG_REF_DOWNCALL art_quick_get64_instance, artGet64InstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1283TWO_ARG_REF_DOWNCALL art_quick_get_obj_instance, artGetObjInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1284
Fred Shih37f05ef2014-07-16 18:38:08 -07001285TWO_ARG_REF_DOWNCALL art_quick_set8_static, artSet8StaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1286TWO_ARG_REF_DOWNCALL art_quick_set16_static, artSet16StaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001287TWO_ARG_REF_DOWNCALL art_quick_set32_static, artSet32StaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1288TWO_ARG_REF_DOWNCALL art_quick_set_obj_static, artSetObjStaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1289
Fred Shih37f05ef2014-07-16 18:38:08 -07001290THREE_ARG_REF_DOWNCALL art_quick_set8_instance, artSet8InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1291THREE_ARG_REF_DOWNCALL art_quick_set16_instance, artSet16InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001292THREE_ARG_REF_DOWNCALL art_quick_set32_instance, artSet32InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1293THREE_ARG_DOWNCALL art_quick_set64_instance, artSet64InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1294THREE_ARG_REF_DOWNCALL art_quick_set_obj_instance, artSetObjInstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1295
1296// This is separated out as the argument order is different.
1297 .extern artSet64StaticFromCode
1298ENTRY art_quick_set64_static
1299 SETUP_REF_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
1300 mov x3, x1 // Store value
Andreas Gampecf4035a2014-05-28 22:43:01 -07001301 ldr w1, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001302 mov x2, x3 // Put value param
1303 mov x3, xSELF // pass Thread::Current
1304 mov x4, sp // pass SP
1305 bl artSet64StaticFromCode
1306 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME
1307 RETURN_IF_W0_IS_ZERO_OR_DELIVER
1308END art_quick_set64_static
1309
Matteo Franchindfd891a2014-04-30 12:17:17 +01001310 /*
1311 * Entry from managed code to resolve a string, this stub will allocate a String and deliver an
1312 * exception on error. On success the String is returned. x0 holds the referring method,
1313 * w1 holds the string index. The fast path check for hit in strings cache has already been
1314 * performed.
1315 */
1316TWO_ARG_DOWNCALL art_quick_resolve_string, artResolveStringFromCode, RETURN_IF_RESULT_IS_NON_ZERO
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001317
Stuart Monteithb95a5342014-03-12 13:32:32 +00001318// Generate the allocation entrypoints for each allocator.
1319GENERATE_ALL_ALLOC_ENTRYPOINTS
1320
Zheng Xu48241e72014-05-23 11:52:42 +08001321 /*
1322 * Called by managed code when the value in wSUSPEND has been decremented to 0.
1323 */
1324 .extern artTestSuspendFromCode
1325ENTRY art_quick_test_suspend
1326 ldrh w0, [xSELF, #THREAD_FLAGS_OFFSET] // get xSELF->state_and_flags.as_struct.flags
1327 mov wSUSPEND, #SUSPEND_CHECK_INTERVAL // reset wSUSPEND to SUSPEND_CHECK_INTERVAL
1328 cbnz w0, .Lneed_suspend // check flags == 0
1329 ret // return if flags == 0
1330.Lneed_suspend:
1331 mov x0, xSELF
1332 SETUP_REF_ONLY_CALLEE_SAVE_FRAME // save callee saves for stack crawl
1333 mov x1, sp
1334 bl artTestSuspendFromCode // (Thread*, SP)
1335 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME_AND_RETURN
1336END art_quick_test_suspend
Stuart Monteithb95a5342014-03-12 13:32:32 +00001337
Stuart Monteithd5c78f42014-06-11 16:44:46 +01001338ENTRY art_quick_implicit_suspend
1339 mov x0, xSELF
1340 SETUP_REF_ONLY_CALLEE_SAVE_FRAME // save callee saves for stack crawl
1341 mov x1, sp
1342 bl artTestSuspendFromCode // (Thread*, SP)
1343 RESTORE_REF_ONLY_CALLEE_SAVE_FRAME_AND_RETURN
1344END art_quick_implicit_suspend
1345
Andreas Gampee62a07e2014-03-26 14:53:21 -07001346 /*
1347 * Called by managed code that is attempting to call a method on a proxy class. On entry
1348 * x0 holds the proxy method and x1 holds the receiver; The frame size of the invoked proxy
1349 * method agrees with a ref and args callee save frame.
1350 */
1351 .extern artQuickProxyInvokeHandler
1352ENTRY art_quick_proxy_invoke_handler
1353 SETUP_REF_AND_ARGS_CALLEE_SAVE_FRAME
1354 str x0, [sp, #0] // place proxy method at bottom of frame
1355 mov x2, xSELF // pass Thread::Current
1356 mov x3, sp // pass SP
1357 bl artQuickProxyInvokeHandler // (Method* proxy method, receiver, Thread*, SP)
Zheng Xub551fdc2014-07-25 11:49:42 +08001358 // Use xETR as xSELF might be scratched by native function above.
1359 ldr x2, [xETR, THREAD_EXCEPTION_OFFSET]
Andreas Gampee62a07e2014-03-26 14:53:21 -07001360 cbnz x2, .Lexception_in_proxy // success if no exception is pending
Andreas Gamped1e91672014-06-02 22:50:05 -07001361 RESTORE_REF_AND_ARGS_CALLEE_SAVE_FRAME // Restore frame
1362 fmov d0, x0 // Store result in d0 in case it was float or double
Andreas Gampee62a07e2014-03-26 14:53:21 -07001363 ret // return on success
1364.Lexception_in_proxy:
1365 RESTORE_REF_AND_ARGS_CALLEE_SAVE_FRAME
1366 DELIVER_PENDING_EXCEPTION
1367END art_quick_proxy_invoke_handler
Stuart Monteithb95a5342014-03-12 13:32:32 +00001368
Andreas Gampe51f76352014-05-21 08:28:48 -07001369 /*
Zheng Xub551fdc2014-07-25 11:49:42 +08001370 * Called to resolve an imt conflict. xIP1 is a hidden argument that holds the target method's
Andreas Gampe51f76352014-05-21 08:28:48 -07001371 * dex method index.
1372 */
1373ENTRY art_quick_imt_conflict_trampoline
Andreas Gampecf4035a2014-05-28 22:43:01 -07001374 ldr w0, [sp, #0] // load caller Method*
Andreas Gampe51f76352014-05-21 08:28:48 -07001375 ldr w0, [x0, #METHOD_DEX_CACHE_METHODS_OFFSET] // load dex_cache_resolved_methods
1376 add x0, x0, #OBJECT_ARRAY_DATA_OFFSET // get starting address of data
Zheng Xub551fdc2014-07-25 11:49:42 +08001377 ldr w0, [x0, xIP1, lsl 2] // load the target method
Andreas Gampe51f76352014-05-21 08:28:48 -07001378 b art_quick_invoke_interface_trampoline
1379END art_quick_imt_conflict_trampoline
Stuart Monteithb95a5342014-03-12 13:32:32 +00001380
1381ENTRY art_quick_resolution_trampoline
1382 SETUP_REF_AND_ARGS_CALLEE_SAVE_FRAME
1383 mov x2, xSELF
1384 mov x3, sp
1385 bl artQuickResolutionTrampoline // (called, receiver, Thread*, SP)
Matteo Franchindfd891a2014-04-30 12:17:17 +01001386 cbz x0, 1f
Zheng Xub551fdc2014-07-25 11:49:42 +08001387 mov xIP0, x0 // Remember returned code pointer in xIP0.
Andreas Gampecf4035a2014-05-28 22:43:01 -07001388 ldr w0, [sp, #0] // artQuickResolutionTrampoline puts called method in *SP.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001389 RESTORE_REF_AND_ARGS_CALLEE_SAVE_FRAME
Zheng Xub551fdc2014-07-25 11:49:42 +08001390 br xIP0
Stuart Monteithb95a5342014-03-12 13:32:32 +000013911:
1392 RESTORE_REF_AND_ARGS_CALLEE_SAVE_FRAME
1393 DELIVER_PENDING_EXCEPTION
1394END art_quick_resolution_trampoline
1395
1396/*
1397 * Generic JNI frame layout:
1398 *
1399 * #-------------------#
1400 * | |
1401 * | caller method... |
1402 * #-------------------# <--- SP on entry
1403 * | Return X30/LR |
1404 * | X29/FP | callee save
1405 * | X28 | callee save
1406 * | X27 | callee save
1407 * | X26 | callee save
1408 * | X25 | callee save
1409 * | X24 | callee save
1410 * | X23 | callee save
1411 * | X22 | callee save
1412 * | X21 | callee save
1413 * | X20 | callee save
Stuart Monteithb95a5342014-03-12 13:32:32 +00001414 * | X7 | arg7
1415 * | X6 | arg6
1416 * | X5 | arg5
1417 * | X4 | arg4
1418 * | X3 | arg3
1419 * | X2 | arg2
1420 * | X1 | arg1
Stuart Monteithb95a5342014-03-12 13:32:32 +00001421 * | D7 | float arg 8
1422 * | D6 | float arg 7
1423 * | D5 | float arg 6
1424 * | D4 | float arg 5
1425 * | D3 | float arg 4
1426 * | D2 | float arg 3
1427 * | D1 | float arg 2
1428 * | D0 | float arg 1
Andreas Gampecf4035a2014-05-28 22:43:01 -07001429 * | Method* | <- X0
Stuart Monteithb95a5342014-03-12 13:32:32 +00001430 * #-------------------#
1431 * | local ref cookie | // 4B
Mathieu Chartier421c5372014-05-14 14:11:40 -07001432 * | handle scope size | // 4B
Stuart Monteithb95a5342014-03-12 13:32:32 +00001433 * #-------------------#
1434 * | JNI Call Stack |
1435 * #-------------------# <--- SP on native call
1436 * | |
1437 * | Stack for Regs | The trampoline assembly will pop these values
1438 * | | into registers for native call
1439 * #-------------------#
1440 * | Native code ptr |
1441 * #-------------------#
1442 * | Free scratch |
1443 * #-------------------#
1444 * | Ptr to (1) | <--- SP
1445 * #-------------------#
1446 */
1447 /*
1448 * Called to do a generic JNI down-call
1449 */
Andreas Gampe29b38412014-08-13 00:15:43 -07001450ENTRY_NO_HIDE art_quick_generic_jni_trampoline
Stuart Monteithb95a5342014-03-12 13:32:32 +00001451 SETUP_REF_AND_ARGS_CALLEE_SAVE_FRAME_INTERNAL
1452 str x0, [sp, #0] // Store native ArtMethod* to bottom of stack.
1453
1454 // Save SP , so we can have static CFI info.
1455 mov x28, sp
1456 .cfi_def_cfa_register x28
1457
1458 // This looks the same, but is different: this will be updated to point to the bottom
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001459 // of the frame when the handle scope is inserted.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001460 mov xFP, sp
1461
Zheng Xub551fdc2014-07-25 11:49:42 +08001462 mov xIP0, #5120
1463 sub sp, sp, xIP0
Stuart Monteithb95a5342014-03-12 13:32:32 +00001464
1465 // prepare for artQuickGenericJniTrampoline call
1466 // (Thread*, SP)
1467 // x0 x1 <= C calling convention
1468 // xSELF xFP <= where they are
1469
1470 mov x0, xSELF // Thread*
1471 mov x1, xFP
1472 bl artQuickGenericJniTrampoline // (Thread*, sp)
1473
Andreas Gampec200a4a2014-06-16 18:39:09 -07001474 // The C call will have registered the complete save-frame on success.
1475 // The result of the call is:
1476 // x0: pointer to native code, 0 on error.
1477 // x1: pointer to the bottom of the used area of the alloca, can restore stack till there.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001478
Andreas Gampec200a4a2014-06-16 18:39:09 -07001479 // Check for error = 0.
1480 cbz x0, .Lentry_error
Stuart Monteithb95a5342014-03-12 13:32:32 +00001481
Andreas Gampec200a4a2014-06-16 18:39:09 -07001482 // Release part of the alloca.
1483 mov sp, x1
Stuart Monteithb95a5342014-03-12 13:32:32 +00001484
Andreas Gampec200a4a2014-06-16 18:39:09 -07001485 // Save the code pointer
1486 mov xIP0, x0
Stuart Monteithb95a5342014-03-12 13:32:32 +00001487
1488 // Load parameters from frame into registers.
1489 // TODO Check with artQuickGenericJniTrampoline.
1490 // Also, check again APPCS64 - the stack arguments are interleaved.
Andreas Gampec200a4a2014-06-16 18:39:09 -07001491 ldp x0, x1, [sp]
1492 ldp x2, x3, [sp, #16]
1493 ldp x4, x5, [sp, #32]
1494 ldp x6, x7, [sp, #48]
Stuart Monteithb95a5342014-03-12 13:32:32 +00001495
Andreas Gampec200a4a2014-06-16 18:39:09 -07001496 ldp d0, d1, [sp, #64]
1497 ldp d2, d3, [sp, #80]
1498 ldp d4, d5, [sp, #96]
1499 ldp d6, d7, [sp, #112]
Stuart Monteithb95a5342014-03-12 13:32:32 +00001500
Andreas Gampec200a4a2014-06-16 18:39:09 -07001501 add sp, sp, #128
Stuart Monteithb95a5342014-03-12 13:32:32 +00001502
Zheng Xub551fdc2014-07-25 11:49:42 +08001503 blr xIP0 // native call.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001504
1505 // result sign extension is handled in C code
1506 // prepare for artQuickGenericJniEndTrampoline call
Andreas Gampec200a4a2014-06-16 18:39:09 -07001507 // (Thread*, result, result_f)
1508 // x0 x1 x2 <= C calling convention
1509 mov x1, x0 // Result (from saved)
Zheng Xub551fdc2014-07-25 11:49:42 +08001510 mov x0, xETR // Thread register, original xSELF might be scratched by native code.
Andreas Gampec200a4a2014-06-16 18:39:09 -07001511 fmov x2, d0 // d0 will contain floating point result, but needs to go into x2
Stuart Monteithb95a5342014-03-12 13:32:32 +00001512
1513 bl artQuickGenericJniEndTrampoline
1514
1515 // Tear down the alloca.
1516 mov sp, x28
1517 .cfi_def_cfa_register sp
1518
Stuart Monteithb95a5342014-03-12 13:32:32 +00001519 // Pending exceptions possible.
Zheng Xub551fdc2014-07-25 11:49:42 +08001520 // Use xETR as xSELF might be scratched by native code
1521 ldr x1, [xETR, THREAD_EXCEPTION_OFFSET]
Stuart Monteithb95a5342014-03-12 13:32:32 +00001522 cbnz x1, .Lexception_in_native
1523
1524 // Tear down the callee-save frame.
1525 RESTORE_REF_AND_ARGS_CALLEE_SAVE_FRAME
1526
1527 // store into fpr, for when it's a fpr return...
1528 fmov d0, x0
1529 ret
1530
1531.Lentry_error:
1532 mov sp, x28
1533 .cfi_def_cfa_register sp
Stuart Monteithb95a5342014-03-12 13:32:32 +00001534.Lexception_in_native:
1535 RESTORE_REF_AND_ARGS_CALLEE_SAVE_FRAME
1536 DELIVER_PENDING_EXCEPTION
1537
1538END art_quick_generic_jni_trampoline
1539
1540/*
1541 * Called to bridge from the quick to interpreter ABI. On entry the arguments match those
1542 * of a quick call:
1543 * x0 = method being called/to bridge to.
1544 * x1..x7, d0..d7 = arguments to that method.
1545 */
Andreas Gampe29b38412014-08-13 00:15:43 -07001546ENTRY_NO_HIDE art_quick_to_interpreter_bridge
Stuart Monteithb95a5342014-03-12 13:32:32 +00001547 SETUP_REF_AND_ARGS_CALLEE_SAVE_FRAME // Set up frame and save arguments.
1548
1549 // x0 will contain mirror::ArtMethod* method.
1550 mov x1, xSELF // How to get Thread::Current() ???
1551 mov x2, sp
1552
1553 // uint64_t artQuickToInterpreterBridge(mirror::ArtMethod* method, Thread* self,
1554 // mirror::ArtMethod** sp)
1555 bl artQuickToInterpreterBridge
1556
1557 RESTORE_REF_AND_ARGS_CALLEE_SAVE_FRAME // TODO: no need to restore arguments in this case.
1558
1559 fmov d0, x0
1560
1561 RETURN_OR_DELIVER_PENDING_EXCEPTION
1562END art_quick_to_interpreter_bridge
1563
Andreas Gamped58342c2014-06-05 14:18:08 -07001564
1565//
1566// Instrumentation-related stubs
1567//
1568 .extern artInstrumentationMethodEntryFromCode
1569ENTRY art_quick_instrumentation_entry
1570 SETUP_REF_AND_ARGS_CALLEE_SAVE_FRAME
1571
Zheng Xub551fdc2014-07-25 11:49:42 +08001572 mov x20, x0 // Preserve method reference in a callee-save.
Andreas Gamped58342c2014-06-05 14:18:08 -07001573
1574 mov x2, xSELF
1575 mov x3, sp
1576 mov x4, xLR
1577 bl artInstrumentationMethodEntryFromCode // (Method*, Object*, Thread*, SP, LR)
1578
Zheng Xub551fdc2014-07-25 11:49:42 +08001579 mov xIP0, x0 // x0 = result of call.
1580 mov x0, x20 // Reload method reference.
Andreas Gamped58342c2014-06-05 14:18:08 -07001581
1582 RESTORE_REF_AND_ARGS_CALLEE_SAVE_FRAME // Note: will restore xSELF
1583 adr xLR, art_quick_instrumentation_exit
Zheng Xub551fdc2014-07-25 11:49:42 +08001584 br xIP0 // Tail-call method with lr set to art_quick_instrumentation_exit.
Andreas Gamped58342c2014-06-05 14:18:08 -07001585END art_quick_instrumentation_entry
1586
1587 .extern artInstrumentationMethodExitFromCode
1588ENTRY art_quick_instrumentation_exit
1589 mov xLR, #0 // Clobber LR for later checks.
1590
1591 SETUP_REF_ONLY_CALLEE_SAVE_FRAME
1592
1593 // We need to save x0 and d0. We could use a callee-save from SETUP_REF_ONLY, but then
1594 // we would need to fully restore it. As there are a lot of callee-save registers, it seems
1595 // easier to have an extra small stack area.
1596
Sebastien Hertz70f8d4b2014-06-19 11:51:41 +02001597 str x0, [sp, #-16]! // Save integer result.
Andreas Gamped58342c2014-06-05 14:18:08 -07001598 .cfi_adjust_cfa_offset 16
1599 str d0, [sp, #8] // Save floating-point result.
1600
Andreas Gamped58342c2014-06-05 14:18:08 -07001601 add x1, sp, #16 // Pass SP.
1602 mov x2, x0 // Pass integer result.
1603 fmov x3, d0 // Pass floating-point result.
Sebastien Hertz70f8d4b2014-06-19 11:51:41 +02001604 mov x0, xSELF // Pass Thread.
Andreas Gamped58342c2014-06-05 14:18:08 -07001605 bl artInstrumentationMethodExitFromCode // (Thread*, SP, gpr_res, fpr_res)
1606
Zheng Xub551fdc2014-07-25 11:49:42 +08001607 mov xIP0, x0 // Return address from instrumentation call.
Andreas Gamped58342c2014-06-05 14:18:08 -07001608 mov xLR, x1 // r1 is holding link register if we're to bounce to deoptimize
1609
1610 ldr d0, [sp, #8] // Restore floating-point result.
1611 ldr x0, [sp], 16 // Restore integer result, and drop stack area.
1612 .cfi_adjust_cfa_offset 16
1613
1614 POP_REF_ONLY_CALLEE_SAVE_FRAME
1615
Zheng Xub551fdc2014-07-25 11:49:42 +08001616 br xIP0 // Tail-call out.
Andreas Gamped58342c2014-06-05 14:18:08 -07001617END art_quick_instrumentation_exit
1618
1619 /*
1620 * Instrumentation has requested that we deoptimize into the interpreter. The deoptimization
1621 * will long jump to the upcall with a special exception of -1.
1622 */
1623 .extern artDeoptimize
1624ENTRY art_quick_deoptimize
1625 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME
1626 mov x0, xSELF // Pass thread.
1627 mov x1, sp // Pass SP.
1628 bl artDeoptimize // artDeoptimize(Thread*, SP)
Serban Constantinescu86797a72014-06-19 16:17:56 +01001629 brk 0
Andreas Gamped58342c2014-06-05 14:18:08 -07001630END art_quick_deoptimize
1631
1632
Serban Constantinescu169489b2014-06-11 16:43:35 +01001633 /*
1634 * String's indexOf.
1635 *
1636 * TODO: Not very optimized.
1637 * On entry:
1638 * x0: string object (known non-null)
1639 * w1: char to match (known <= 0xFFFF)
1640 * w2: Starting offset in string data
1641 */
1642ENTRY art_quick_indexof
1643 ldr w3, [x0, #STRING_COUNT_OFFSET]
1644 ldr w4, [x0, #STRING_OFFSET_OFFSET]
1645 ldr w0, [x0, #STRING_VALUE_OFFSET] // x0 ?
1646
1647 /* Clamp start to [0..count] */
1648 cmp w2, #0
1649 csel w2, wzr, w2, lt
1650 cmp w2, w3
1651 csel w2, w3, w2, gt
1652
1653 /* Build a pointer to the start of the string data */
1654 add x0, x0, #STRING_DATA_OFFSET
1655 add x0, x0, x4, lsl #1
1656
1657 /* Save a copy to compute result */
1658 mov x5, x0
1659
1660 /* Build pointer to start of data to compare and pre-bias */
1661 add x0, x0, x2, lsl #1
1662 sub x0, x0, #2
1663
1664 /* Compute iteration count */
1665 sub w2, w3, w2
1666
1667 /*
1668 * At this point we have:
1669 * x0: start of the data to test
1670 * w1: char to compare
1671 * w2: iteration count
1672 * x5: original start of string data
1673 */
1674
1675 subs w2, w2, #4
1676 b.lt .Lindexof_remainder
1677
1678.Lindexof_loop4:
1679 ldrh w6, [x0, #2]!
1680 ldrh w7, [x0, #2]!
Zheng Xub551fdc2014-07-25 11:49:42 +08001681 ldrh wIP0, [x0, #2]!
1682 ldrh wIP1, [x0, #2]!
Serban Constantinescu169489b2014-06-11 16:43:35 +01001683 cmp w6, w1
1684 b.eq .Lmatch_0
1685 cmp w7, w1
1686 b.eq .Lmatch_1
Zheng Xub551fdc2014-07-25 11:49:42 +08001687 cmp wIP0, w1
Serban Constantinescu169489b2014-06-11 16:43:35 +01001688 b.eq .Lmatch_2
Zheng Xub551fdc2014-07-25 11:49:42 +08001689 cmp wIP1, w1
Serban Constantinescu169489b2014-06-11 16:43:35 +01001690 b.eq .Lmatch_3
1691 subs w2, w2, #4
1692 b.ge .Lindexof_loop4
1693
1694.Lindexof_remainder:
1695 adds w2, w2, #4
1696 b.eq .Lindexof_nomatch
1697
1698.Lindexof_loop1:
1699 ldrh w6, [x0, #2]!
1700 cmp w6, w1
1701 b.eq .Lmatch_3
1702 subs w2, w2, #1
1703 b.ne .Lindexof_loop1
1704
1705.Lindexof_nomatch:
1706 mov x0, #-1
1707 ret
1708
1709.Lmatch_0:
1710 sub x0, x0, #6
1711 sub x0, x0, x5
1712 asr x0, x0, #1
1713 ret
1714.Lmatch_1:
1715 sub x0, x0, #4
1716 sub x0, x0, x5
1717 asr x0, x0, #1
1718 ret
1719.Lmatch_2:
1720 sub x0, x0, #2
1721 sub x0, x0, x5
1722 asr x0, x0, #1
1723 ret
1724.Lmatch_3:
1725 sub x0, x0, x5
1726 asr x0, x0, #1
1727 ret
1728END art_quick_indexof
Andreas Gampe266340d2014-05-02 07:55:24 -07001729
1730 /*
1731 * String's compareTo.
1732 *
1733 * TODO: Not very optimized.
1734 *
1735 * On entry:
1736 * x0: this object pointer
1737 * x1: comp object pointer
1738 *
1739 */
Serban Constantinescu86797a72014-06-19 16:17:56 +01001740 .extern __memcmp16
Andreas Gampe266340d2014-05-02 07:55:24 -07001741ENTRY art_quick_string_compareto
1742 mov x2, x0 // x0 is return, use x2 for first input.
1743 sub x0, x2, x1 // Same string object?
1744 cbnz x0,1f
1745 ret
17461: // Different string objects.
1747
1748 ldr w6, [x2, #STRING_OFFSET_OFFSET]
1749 ldr w5, [x1, #STRING_OFFSET_OFFSET]
1750 ldr w4, [x2, #STRING_COUNT_OFFSET]
1751 ldr w3, [x1, #STRING_COUNT_OFFSET]
1752 ldr w2, [x2, #STRING_VALUE_OFFSET]
1753 ldr w1, [x1, #STRING_VALUE_OFFSET]
1754
1755 /*
1756 * Now: CharArray* Offset Count
1757 * first arg x2 w6 w4
1758 * second arg x1 w5 w3
1759 */
1760
1761 // x0 := str1.length(w4) - str2.length(w3). ldr zero-extended w3/w4 into x3/x4.
1762 subs x0, x4, x3
1763 // Min(count1, count2) into w3.
1764 csel x3, x3, x4, ge
1765
1766 // Build pointer into string data.
1767
1768 // Add offset in array (substr etc.) (sign extend and << 1).
1769 add x2, x2, w6, sxtw #1
1770 add x1, x1, w5, sxtw #1
1771
1772 // Add offset in CharArray to array.
1773 add x2, x2, #STRING_DATA_OFFSET
1774 add x1, x1, #STRING_DATA_OFFSET
1775
Serban Constantinescu169489b2014-06-11 16:43:35 +01001776 // TODO: Tune this value.
Andreas Gampe266340d2014-05-02 07:55:24 -07001777 // Check for long string, do memcmp16 for them.
1778 cmp w3, #28 // Constant from arm32.
1779 bgt .Ldo_memcmp16
1780
1781 /*
1782 * Now:
1783 * x2: *first string data
1784 * x1: *second string data
1785 * w3: iteration count
1786 * x0: return value if comparison equal
1787 * x4, x5, x6, x7: free
1788 */
1789
1790 // Do a simple unrolled loop.
1791.Lloop:
1792 // At least two more elements?
1793 subs w3, w3, #2
1794 b.lt .Lremainder_or_done
1795
1796 ldrh w4, [x2], #2
1797 ldrh w5, [x1], #2
1798
1799 ldrh w6, [x2], #2
1800 ldrh w7, [x1], #2
1801
1802 subs w4, w4, w5
1803 b.ne .Lw4_result
1804
1805 subs w6, w6, w7
1806 b.ne .Lw6_result
1807
1808 b .Lloop
1809
1810.Lremainder_or_done:
1811 adds w3, w3, #1
1812 b.eq .Lremainder
1813 ret
1814
1815.Lremainder:
1816 ldrh w4, [x2], #2
1817 ldrh w5, [x1], #2
1818 subs w4, w4, w5
1819 b.ne .Lw4_result
1820 ret
1821
1822// Result is in w4
1823.Lw4_result:
1824 sxtw x0, w4
1825 ret
1826
1827// Result is in w6
1828.Lw6_result:
1829 sxtw x0, w6
1830 ret
1831
1832.Ldo_memcmp16:
Zheng Xu62ddb322014-08-12 17:19:12 +08001833 mov x14, x0 // Save x0 and LR. __memcmp16 does not use these temps.
1834 mov x15, xLR // TODO: Codify and check that?
Andreas Gampe266340d2014-05-02 07:55:24 -07001835
1836 mov x0, x2
1837 uxtw x2, w3
Serban Constantinescu86797a72014-06-19 16:17:56 +01001838 bl __memcmp16
Andreas Gampe266340d2014-05-02 07:55:24 -07001839
Zheng Xu62ddb322014-08-12 17:19:12 +08001840 mov xLR, x15 // Restore LR.
Andreas Gampe266340d2014-05-02 07:55:24 -07001841
Serban Constantinescu86797a72014-06-19 16:17:56 +01001842 cmp x0, #0 // Check the memcmp difference.
Zheng Xu62ddb322014-08-12 17:19:12 +08001843 csel x0, x0, x14, ne // x0 := x0 != 0 ? x14(prev x0=length diff) : x1.
Andreas Gampe266340d2014-05-02 07:55:24 -07001844 ret
1845END art_quick_string_compareto
Zheng Xu0210d112014-06-17 12:25:48 +08001846
1847// Macro to facilitate adding new entrypoints which call to native function directly.
1848// Currently, xSELF is the only thing we need to take care of between managed code and AAPCS.
1849// But we might introduce more differences.
1850.macro NATIVE_DOWNCALL name, entrypoint
1851 .extern \entrypoint
1852ENTRY \name
Serban Constantinescu86797a72014-06-19 16:17:56 +01001853 stp xSELF, xLR, [sp, #-16]!
Zheng Xu0210d112014-06-17 12:25:48 +08001854 bl \entrypoint
Serban Constantinescu86797a72014-06-19 16:17:56 +01001855 ldp xSELF, xLR, [sp], #16
Zheng Xu0210d112014-06-17 12:25:48 +08001856 ret
1857END \name
1858.endm
1859
1860NATIVE_DOWNCALL art_quick_fmod fmod
1861NATIVE_DOWNCALL art_quick_fmodf fmodf
1862NATIVE_DOWNCALL art_quick_memcpy memcpy
Serban Constantinescu86797a72014-06-19 16:17:56 +01001863NATIVE_DOWNCALL art_quick_assignable_from_code artIsAssignableFromCode