blob: 78d3116af762214cf2eb28b28b5805674ba0928d [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
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010035
36 // Loads appropriate callee-save-method.
Mathieu Chartiere401d142015-04-22 13:56:20 -070037 ldr xIP0, [xIP0, RUNTIME_SAVE_ALL_CALLEE_SAVE_FRAME_OFFSET ]
Andreas Gampe5c1e4352014-04-21 19:28:24 -070038
39 sub sp, sp, #176
40 .cfi_adjust_cfa_offset 176
41
42 // Ugly compile-time check, but we only have the preprocessor.
Zheng Xub551fdc2014-07-25 11:49:42 +080043#if (FRAME_SIZE_SAVE_ALL_CALLEE_SAVE != 176)
44#error "SAVE_ALL_CALLEE_SAVE_FRAME(ARM64) size not as expected."
Andreas Gampe5c1e4352014-04-21 19:28:24 -070045#endif
46
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010047 // Stack alignment filler [sp, #8].
48 // FP callee-saves.
49 stp d8, d9, [sp, #16]
50 stp d10, d11, [sp, #32]
51 stp d12, d13, [sp, #48]
52 stp d14, d15, [sp, #64]
Andreas Gampe5c1e4352014-04-21 19:28:24 -070053
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010054 // GP callee-saves
55 stp x19, x20, [sp, #80]
Andreas Gampe5c1e4352014-04-21 19:28:24 -070056 .cfi_rel_offset x19, 80
Andreas Gampe5c1e4352014-04-21 19:28:24 -070057 .cfi_rel_offset x20, 88
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010058
59 stp x21, x22, [sp, #96]
Andreas Gampe5c1e4352014-04-21 19:28:24 -070060 .cfi_rel_offset x21, 96
Andreas Gampe5c1e4352014-04-21 19:28:24 -070061 .cfi_rel_offset x22, 104
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010062
63 stp x23, x24, [sp, #112]
Andreas Gampe5c1e4352014-04-21 19:28:24 -070064 .cfi_rel_offset x23, 112
Andreas Gampe5c1e4352014-04-21 19:28:24 -070065 .cfi_rel_offset x24, 120
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010066
67 stp x25, x26, [sp, #128]
Andreas Gampe5c1e4352014-04-21 19:28:24 -070068 .cfi_rel_offset x25, 128
Andreas Gampe5c1e4352014-04-21 19:28:24 -070069 .cfi_rel_offset x26, 136
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010070
71 stp x27, x28, [sp, #144]
Andreas Gampe5c1e4352014-04-21 19:28:24 -070072 .cfi_rel_offset x27, 144
Andreas Gampe5c1e4352014-04-21 19:28:24 -070073 .cfi_rel_offset x28, 152
Andreas Gampe5c1e4352014-04-21 19:28:24 -070074
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010075 stp x29, xLR, [sp, #160]
76 .cfi_rel_offset x29, 160
Andreas Gampe5c1e4352014-04-21 19:28:24 -070077 .cfi_rel_offset x30, 168
78
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010079 // Store ArtMethod* Runtime::callee_save_methods_[kRefsAndArgs].
80 str xIP0, [sp]
Ian Rogers1d8cdbc2014-09-22 22:51:09 -070081 // Place sp in Thread::Current()->top_quick_frame.
82 mov xIP0, sp
83 str xIP0, [xSELF, # THREAD_TOP_QUICK_FRAME_OFFSET]
Stuart Monteithb95a5342014-03-12 13:32:32 +000084.endm
85
Zheng Xub551fdc2014-07-25 11:49:42 +080086 /*
87 * Macro that sets up the callee save frame to conform with
88 * Runtime::CreateCalleeSaveMethod(kRefsOnly).
89 */
Ian Rogers1d8cdbc2014-09-22 22:51:09 -070090.macro SETUP_REFS_ONLY_CALLEE_SAVE_FRAME
Zheng Xub551fdc2014-07-25 11:49:42 +080091 adrp xIP0, :got:_ZN3art7Runtime9instance_E
92 ldr xIP0, [xIP0, #:got_lo12:_ZN3art7Runtime9instance_E]
93
94 // Our registers aren't intermixed - just spill in order.
95 ldr xIP0, [xIP0] // xIP0 = & (art::Runtime * art::Runtime.instance_) .
96
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010097 // xIP0 = (ArtMethod*) Runtime.instance_.callee_save_methods[kRefOnly] .
Zheng Xub551fdc2014-07-25 11:49:42 +080098 THIS_LOAD_REQUIRES_READ_BARRIER
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010099
100 // Loads appropriate callee-save-method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700101 ldr xIP0, [xIP0, RUNTIME_REFS_ONLY_CALLEE_SAVE_FRAME_OFFSET ]
Zheng Xub551fdc2014-07-25 11:49:42 +0800102
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100103 sub sp, sp, #96
104 .cfi_adjust_cfa_offset 96
Zheng Xub551fdc2014-07-25 11:49:42 +0800105
106 // Ugly compile-time check, but we only have the preprocessor.
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100107#if (FRAME_SIZE_REFS_ONLY_CALLEE_SAVE != 96)
Zheng Xub551fdc2014-07-25 11:49:42 +0800108#error "REFS_ONLY_CALLEE_SAVE_FRAME(ARM64) size not as expected."
109#endif
110
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100111 // GP callee-saves.
112 // x20 paired with ArtMethod* - see below.
113 stp x21, x22, [sp, #16]
114 .cfi_rel_offset x21, 16
115 .cfi_rel_offset x22, 24
Zheng Xub551fdc2014-07-25 11:49:42 +0800116
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100117 stp x23, x24, [sp, #32]
118 .cfi_rel_offset x23, 32
119 .cfi_rel_offset x24, 40
Zheng Xub551fdc2014-07-25 11:49:42 +0800120
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100121 stp x25, x26, [sp, #48]
122 .cfi_rel_offset x25, 48
123 .cfi_rel_offset x26, 56
Zheng Xub551fdc2014-07-25 11:49:42 +0800124
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100125 stp x27, x28, [sp, #64]
126 .cfi_rel_offset x27, 64
127 .cfi_rel_offset x28, 72
Zheng Xub551fdc2014-07-25 11:49:42 +0800128
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100129 stp x29, xLR, [sp, #80]
130 .cfi_rel_offset x29, 80
131 .cfi_rel_offset x30, 88
Zheng Xub551fdc2014-07-25 11:49:42 +0800132
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100133 // Store ArtMethod* Runtime::callee_save_methods_[kRefsOnly].
134 stp xIP0, x20, [sp]
135 .cfi_rel_offset x20, 8
Zheng Xub551fdc2014-07-25 11:49:42 +0800136
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700137 // Place sp in Thread::Current()->top_quick_frame.
138 mov xIP0, sp
139 str xIP0, [xSELF, # THREAD_TOP_QUICK_FRAME_OFFSET]
Zheng Xub551fdc2014-07-25 11:49:42 +0800140.endm
141
142// TODO: Probably no need to restore registers preserved by aapcs64.
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700143.macro RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100144 // Callee-saves.
145 ldr x20, [sp, #8]
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700146 .cfi_restore x20
Zheng Xu69a50302015-04-14 20:04:41 +0800147
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100148 ldp x21, x22, [sp, #16]
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700149 .cfi_restore x21
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700150 .cfi_restore x22
Zheng Xu69a50302015-04-14 20:04:41 +0800151
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100152 ldp x23, x24, [sp, #32]
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700153 .cfi_restore x23
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700154 .cfi_restore x24
Zheng Xu69a50302015-04-14 20:04:41 +0800155
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100156 ldp x25, x26, [sp, #48]
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700157 .cfi_restore x25
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700158 .cfi_restore x26
Zheng Xu69a50302015-04-14 20:04:41 +0800159
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100160 ldp x27, x28, [sp, #64]
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700161 .cfi_restore x27
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700162 .cfi_restore x28
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700163
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100164 ldp x29, xLR, [sp, #80]
Zheng Xu69a50302015-04-14 20:04:41 +0800165 .cfi_restore x29
Andreas Gampe00c1e6d2014-04-25 15:47:13 -0700166 .cfi_restore x30
167
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100168 add sp, sp, #96
169 .cfi_adjust_cfa_offset -96
Stuart Monteithb95a5342014-03-12 13:32:32 +0000170.endm
171
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700172.macro POP_REFS_ONLY_CALLEE_SAVE_FRAME
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100173 add sp, sp, #96
174 .cfi_adjust_cfa_offset - 96
Andreas Gamped58342c2014-06-05 14:18:08 -0700175.endm
176
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700177.macro RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME_AND_RETURN
178 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
Zheng Xu48241e72014-05-23 11:52:42 +0800179 ret
Stuart Monteithb95a5342014-03-12 13:32:32 +0000180.endm
181
182
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700183.macro SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_INTERNAL
Zheng Xub551fdc2014-07-25 11:49:42 +0800184 sub sp, sp, #224
185 .cfi_adjust_cfa_offset 224
Stuart Monteithb95a5342014-03-12 13:32:32 +0000186
Andreas Gampe5c1e4352014-04-21 19:28:24 -0700187 // Ugly compile-time check, but we only have the preprocessor.
Zheng Xub551fdc2014-07-25 11:49:42 +0800188#if (FRAME_SIZE_REFS_AND_ARGS_CALLEE_SAVE != 224)
Andreas Gampe5c1e4352014-04-21 19:28:24 -0700189#error "REFS_AND_ARGS_CALLEE_SAVE_FRAME(ARM64) size not as expected."
190#endif
191
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100192 // Stack alignment filler [sp, #8].
Zheng Xu69a50302015-04-14 20:04:41 +0800193 // FP args.
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100194 stp d0, d1, [sp, #16]
195 stp d2, d3, [sp, #32]
196 stp d4, d5, [sp, #48]
197 stp d6, d7, [sp, #64]
Stuart Monteithb95a5342014-03-12 13:32:32 +0000198
Zheng Xu69a50302015-04-14 20:04:41 +0800199 // Core args.
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100200 stp x1, x2, [sp, #80]
201 .cfi_rel_offset x1, 80
202 .cfi_rel_offset x2, 88
Stuart Monteithb95a5342014-03-12 13:32:32 +0000203
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100204 stp x3, x4, [sp, #96]
205 .cfi_rel_offset x3, 96
206 .cfi_rel_offset x4, 104
Andreas Gampe03906cf2014-04-07 12:08:28 -0700207
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100208 stp x5, x6, [sp, #112]
209 .cfi_rel_offset x5, 112
210 .cfi_rel_offset x6, 120
Andreas Gampe03906cf2014-04-07 12:08:28 -0700211
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100212 // x7, Callee-saves.
213 stp x7, x20, [sp, #128]
214 .cfi_rel_offset x7, 128
Zheng Xu69a50302015-04-14 20:04:41 +0800215 .cfi_rel_offset x20, 136
216
Zheng Xub551fdc2014-07-25 11:49:42 +0800217 stp x21, x22, [sp, #144]
218 .cfi_rel_offset x21, 144
219 .cfi_rel_offset x22, 152
Andreas Gampe03906cf2014-04-07 12:08:28 -0700220
Zheng Xub551fdc2014-07-25 11:49:42 +0800221 stp x23, x24, [sp, #160]
222 .cfi_rel_offset x23, 160
223 .cfi_rel_offset x24, 168
Andreas Gampe03906cf2014-04-07 12:08:28 -0700224
Zheng Xub551fdc2014-07-25 11:49:42 +0800225 stp x25, x26, [sp, #176]
226 .cfi_rel_offset x25, 176
227 .cfi_rel_offset x26, 184
Andreas Gampe03906cf2014-04-07 12:08:28 -0700228
Zheng Xub551fdc2014-07-25 11:49:42 +0800229 stp x27, x28, [sp, #192]
230 .cfi_rel_offset x27, 192
231 .cfi_rel_offset x28, 200
Andreas Gampe03906cf2014-04-07 12:08:28 -0700232
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100233 // x29(callee-save) and LR.
Zheng Xub551fdc2014-07-25 11:49:42 +0800234 stp x29, xLR, [sp, #208]
235 .cfi_rel_offset x29, 208
236 .cfi_rel_offset x30, 216
Andreas Gampe03906cf2014-04-07 12:08:28 -0700237
Stuart Monteithb95a5342014-03-12 13:32:32 +0000238.endm
239
240 /*
241 * Macro that sets up the callee save frame to conform with
242 * Runtime::CreateCalleeSaveMethod(kRefsAndArgs).
243 *
244 * TODO This is probably too conservative - saving FP & LR.
245 */
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700246.macro SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME
Zheng Xub551fdc2014-07-25 11:49:42 +0800247 adrp xIP0, :got:_ZN3art7Runtime9instance_E
248 ldr xIP0, [xIP0, #:got_lo12:_ZN3art7Runtime9instance_E]
Stuart Monteithb95a5342014-03-12 13:32:32 +0000249
250 // Our registers aren't intermixed - just spill in order.
Zheng Xub551fdc2014-07-25 11:49:42 +0800251 ldr xIP0, [xIP0] // xIP0 = & (art::Runtime * art::Runtime.instance_) .
Stuart Monteithb95a5342014-03-12 13:32:32 +0000252
Zheng Xub551fdc2014-07-25 11:49:42 +0800253 // xIP0 = (ArtMethod*) Runtime.instance_.callee_save_methods[kRefAndArgs] .
Hiroshi Yamauchiab088112014-07-14 13:00:14 -0700254 THIS_LOAD_REQUIRES_READ_BARRIER
Mathieu Chartiere401d142015-04-22 13:56:20 -0700255 ldr xIP0, [xIP0, RUNTIME_REFS_AND_ARGS_CALLEE_SAVE_FRAME_OFFSET ]
Stuart Monteithb95a5342014-03-12 13:32:32 +0000256
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700257 SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_INTERNAL
Stuart Monteithb95a5342014-03-12 13:32:32 +0000258
Zheng Xub551fdc2014-07-25 11:49:42 +0800259 str xIP0, [sp] // Store ArtMethod* Runtime::callee_save_methods_[kRefsAndArgs]
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700260 // Place sp in Thread::Current()->top_quick_frame.
261 mov xIP0, sp
262 str xIP0, [xSELF, # THREAD_TOP_QUICK_FRAME_OFFSET]
263.endm
264
265.macro SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_WITH_METHOD_IN_X0
266 SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_INTERNAL
267 str x0, [sp, #0] // Store ArtMethod* to bottom of stack.
268 // Place sp in Thread::Current()->top_quick_frame.
269 mov xIP0, sp
270 str xIP0, [xSELF, # THREAD_TOP_QUICK_FRAME_OFFSET]
Stuart Monteithb95a5342014-03-12 13:32:32 +0000271.endm
272
Zheng Xub551fdc2014-07-25 11:49:42 +0800273// TODO: Probably no need to restore registers preserved by aapcs64.
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700274.macro RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
Zheng Xu69a50302015-04-14 20:04:41 +0800275 // FP args.
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100276 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 Xu69a50302015-04-14 20:04:41 +0800281 // Core args.
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100282 ldp x1, x2, [sp, #80]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700283 .cfi_restore x1
284 .cfi_restore x2
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100285
286 ldp x3, x4, [sp, #96]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700287 .cfi_restore x3
288 .cfi_restore x4
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100289
290 ldp x5, x6, [sp, #112]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700291 .cfi_restore x5
Zheng Xu69a50302015-04-14 20:04:41 +0800292 .cfi_restore x6
Andreas Gampe03906cf2014-04-07 12:08:28 -0700293
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100294 // x7, Callee-saves.
295 ldp x7, x20, [sp, #128]
296 .cfi_restore x7
Zheng Xu69a50302015-04-14 20:04:41 +0800297 .cfi_restore x20
298
Zheng Xub551fdc2014-07-25 11:49:42 +0800299 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
Serban Constantinescu9bd88b02015-04-22 16:24:46 +0100315 // x29(callee-save) and LR.
Zheng Xub551fdc2014-07-25 11:49:42 +0800316 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
Stuart Monteithb95a5342014-03-12 13:32:32 +0000343
344 // Point of no return.
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700345 b artDeliverPendingExceptionFromCode // artDeliverPendingExceptionFromCode(Thread*)
Stuart Monteithb95a5342014-03-12 13:32:32 +0000346 brk 0 // Unreached
347.endm
348
Andreas Gampe6e4e59c2014-05-05 20:11:02 -0700349.macro RETURN_OR_DELIVER_PENDING_EXCEPTION_REG reg
350 ldr \reg, [xSELF, # THREAD_EXCEPTION_OFFSET] // Get exception field.
351 cbnz \reg, 1f
Stuart Monteithb95a5342014-03-12 13:32:32 +0000352 ret
3531:
354 DELIVER_PENDING_EXCEPTION
355.endm
356
Andreas Gampe6e4e59c2014-05-05 20:11:02 -0700357.macro RETURN_OR_DELIVER_PENDING_EXCEPTION
Zheng Xub551fdc2014-07-25 11:49:42 +0800358 RETURN_OR_DELIVER_PENDING_EXCEPTION_REG xIP0
Andreas Gampe6e4e59c2014-05-05 20:11:02 -0700359.endm
360
361// Same as above with x1. This is helpful in stubs that want to avoid clobbering another register.
362.macro RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
363 RETURN_OR_DELIVER_PENDING_EXCEPTION_REG x1
364.endm
365
366.macro RETURN_IF_W0_IS_ZERO_OR_DELIVER
367 cbnz w0, 1f // result non-zero branch over
368 ret // return
3691:
370 DELIVER_PENDING_EXCEPTION
371.endm
372
Stuart Monteithb95a5342014-03-12 13:32:32 +0000373.macro NO_ARG_RUNTIME_EXCEPTION c_name, cxx_name
374 .extern \cxx_name
375ENTRY \c_name
Andreas Gampe5c1e4352014-04-21 19:28:24 -0700376 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME // save all registers as basis for long jump context
Zheng Xub551fdc2014-07-25 11:49:42 +0800377 mov x0, xSELF // pass Thread::Current
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700378 b \cxx_name // \cxx_name(Thread*)
Stuart Monteithb95a5342014-03-12 13:32:32 +0000379END \c_name
380.endm
381
382.macro ONE_ARG_RUNTIME_EXCEPTION c_name, cxx_name
383 .extern \cxx_name
384ENTRY \c_name
Serban Constantinescu75b91132014-04-09 18:39:10 +0100385 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME // save all registers as basis for long jump context.
Zheng Xub551fdc2014-07-25 11:49:42 +0800386 mov x1, xSELF // pass Thread::Current.
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700387 b \cxx_name // \cxx_name(arg, Thread*).
Stuart Monteithb95a5342014-03-12 13:32:32 +0000388 brk 0
389END \c_name
390.endm
391
392.macro TWO_ARG_RUNTIME_EXCEPTION c_name, cxx_name
393 .extern \cxx_name
394ENTRY \c_name
395 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME // save all registers as basis for long jump context
Zheng Xub551fdc2014-07-25 11:49:42 +0800396 mov x2, xSELF // pass Thread::Current
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700397 b \cxx_name // \cxx_name(arg1, arg2, Thread*)
Stuart Monteithb95a5342014-03-12 13:32:32 +0000398 brk 0
399END \c_name
400.endm
401
402 /*
403 * Called by managed code, saves callee saves and then calls artThrowException
404 * that will place a mock Method* at the bottom of the stack. Arg1 holds the exception.
405 */
406ONE_ARG_RUNTIME_EXCEPTION art_quick_deliver_exception, artDeliverExceptionFromCode
407
408 /*
409 * Called by managed code to create and deliver a NullPointerException.
410 */
411NO_ARG_RUNTIME_EXCEPTION art_quick_throw_null_pointer_exception, artThrowNullPointerExceptionFromCode
412
413 /*
414 * Called by managed code to create and deliver an ArithmeticException.
415 */
416NO_ARG_RUNTIME_EXCEPTION art_quick_throw_div_zero, artThrowDivZeroFromCode
417
418 /*
419 * Called by managed code to create and deliver an ArrayIndexOutOfBoundsException. Arg1 holds
420 * index, arg2 holds limit.
421 */
422TWO_ARG_RUNTIME_EXCEPTION art_quick_throw_array_bounds, artThrowArrayBoundsFromCode
423
424 /*
425 * Called by managed code to create and deliver a StackOverflowError.
426 */
427NO_ARG_RUNTIME_EXCEPTION art_quick_throw_stack_overflow, artThrowStackOverflowFromCode
428
429 /*
430 * Called by managed code to create and deliver a NoSuchMethodError.
431 */
432ONE_ARG_RUNTIME_EXCEPTION art_quick_throw_no_such_method, artThrowNoSuchMethodFromCode
433
434 /*
Stuart Monteithb95a5342014-03-12 13:32:32 +0000435 * All generated callsites for interface invokes and invocation slow paths will load arguments
Andreas Gampe51f76352014-05-21 08:28:48 -0700436 * as usual - except instead of loading arg0/x0 with the target Method*, arg0/x0 will contain
Nicolas Geoffray7ea6a172015-05-19 18:58:54 +0100437 * the method_idx. This wrapper will save arg1-arg3, and call the appropriate C helper.
Andreas Gampe51f76352014-05-21 08:28:48 -0700438 * NOTE: "this" is first visible argument of the target, and so can be found in arg1/x1.
Stuart Monteithb95a5342014-03-12 13:32:32 +0000439 *
Andreas Gampe51f76352014-05-21 08:28:48 -0700440 * 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 +0000441 * of the target Method* in x0 and method->code_ in x1.
442 *
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700443 * If unsuccessful, the helper will return null/????. There will be a pending exception in the
Stuart Monteithb95a5342014-03-12 13:32:32 +0000444 * thread and we branch to another stub to deliver it.
445 *
446 * On success this wrapper will restore arguments and *jump* to the target, leaving the lr
447 * pointing back to the original caller.
Andreas Gampe51f76352014-05-21 08:28:48 -0700448 *
449 * Adapted from ARM32 code.
450 *
Zheng Xub551fdc2014-07-25 11:49:42 +0800451 * Clobbers xIP0.
Stuart Monteithb95a5342014-03-12 13:32:32 +0000452 */
453.macro INVOKE_TRAMPOLINE c_name, cxx_name
454 .extern \cxx_name
455ENTRY \c_name
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700456 SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME // save callee saves in case allocation triggers GC
Andreas Gampe51f76352014-05-21 08:28:48 -0700457 // Helper signature is always
458 // (method_idx, *this_object, *caller_method, *self, sp)
459
Nicolas Geoffray7ea6a172015-05-19 18:58:54 +0100460 mov x2, xSELF // pass Thread::Current
461 mov x3, sp
462 bl \cxx_name // (method_idx, this, Thread*, SP)
Zheng Xub551fdc2014-07-25 11:49:42 +0800463 mov xIP0, x1 // save Method*->code_
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700464 RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
Andreas Gampe51f76352014-05-21 08:28:48 -0700465 cbz x0, 1f // did we find the target? if not go to exception delivery
Zheng Xub551fdc2014-07-25 11:49:42 +0800466 br xIP0 // tail call to target
Andreas Gampe51f76352014-05-21 08:28:48 -07004671:
468 DELIVER_PENDING_EXCEPTION
Stuart Monteithb95a5342014-03-12 13:32:32 +0000469END \c_name
470.endm
471
472INVOKE_TRAMPOLINE art_quick_invoke_interface_trampoline, artInvokeInterfaceTrampoline
473INVOKE_TRAMPOLINE art_quick_invoke_interface_trampoline_with_access_check, artInvokeInterfaceTrampolineWithAccessCheck
474
475INVOKE_TRAMPOLINE art_quick_invoke_static_trampoline_with_access_check, artInvokeStaticTrampolineWithAccessCheck
476INVOKE_TRAMPOLINE art_quick_invoke_direct_trampoline_with_access_check, artInvokeDirectTrampolineWithAccessCheck
477INVOKE_TRAMPOLINE art_quick_invoke_super_trampoline_with_access_check, artInvokeSuperTrampolineWithAccessCheck
478INVOKE_TRAMPOLINE art_quick_invoke_virtual_trampoline_with_access_check, artInvokeVirtualTrampolineWithAccessCheck
479
Andreas Gampe03906cf2014-04-07 12:08:28 -0700480
481.macro INVOKE_STUB_CREATE_FRAME
482
Zheng Xu69a50302015-04-14 20:04:41 +0800483SAVE_SIZE=15*8 // x4, x5, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, SP, LR, FP saved.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700484SAVE_SIZE_AND_METHOD=SAVE_SIZE+8
Andreas Gampecf4035a2014-05-28 22:43:01 -0700485
Andreas Gampe03906cf2014-04-07 12:08:28 -0700486
Zheng Xu48241e72014-05-23 11:52:42 +0800487 mov x9, sp // Save stack pointer.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700488 .cfi_register sp,x9
489
Zheng Xu48241e72014-05-23 11:52:42 +0800490 add x10, x2, # SAVE_SIZE_AND_METHOD // calculate size of frame.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700491 sub x10, sp, x10 // Calculate SP position - saves + ArtMethod* + args
Zheng Xu48241e72014-05-23 11:52:42 +0800492 and x10, x10, # ~0xf // Enforce 16 byte stack alignment.
493 mov sp, x10 // Set new SP.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700494
Zheng Xu48241e72014-05-23 11:52:42 +0800495 sub x10, x9, #SAVE_SIZE // Calculate new FP (later). Done here as we must move SP
496 .cfi_def_cfa_register x10 // before this.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700497 .cfi_adjust_cfa_offset SAVE_SIZE
498
Nicolas Geoffray48088462014-12-12 10:29:38 +0000499 str x28, [x10, #112]
500 .cfi_rel_offset x28, 112
501
502 stp x26, x27, [x10, #96]
503 .cfi_rel_offset x26, 96
504 .cfi_rel_offset x27, 104
505
506 stp x24, x25, [x10, #80]
507 .cfi_rel_offset x24, 80
508 .cfi_rel_offset x25, 88
509
510 stp x22, x23, [x10, #64]
511 .cfi_rel_offset x22, 64
512 .cfi_rel_offset x23, 72
513
514 stp x20, x21, [x10, #48]
515 .cfi_rel_offset x20, 48
516 .cfi_rel_offset x21, 56
517
Zheng Xu69a50302015-04-14 20:04:41 +0800518 stp x9, x19, [x10, #32] // Save old stack pointer and x19.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700519 .cfi_rel_offset sp, 32
Andreas Gampecf4035a2014-05-28 22:43:01 -0700520 .cfi_rel_offset x19, 40
Andreas Gampe03906cf2014-04-07 12:08:28 -0700521
Zheng Xu48241e72014-05-23 11:52:42 +0800522 stp x4, x5, [x10, #16] // Save result and shorty addresses.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700523 .cfi_rel_offset x4, 16
524 .cfi_rel_offset x5, 24
525
Zheng Xu48241e72014-05-23 11:52:42 +0800526 stp xFP, xLR, [x10] // Store LR & FP.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700527 .cfi_rel_offset x29, 0
528 .cfi_rel_offset x30, 8
529
Zheng Xu48241e72014-05-23 11:52:42 +0800530 mov xFP, x10 // Use xFP now, as it's callee-saved.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700531 .cfi_def_cfa_register x29
Zheng Xu48241e72014-05-23 11:52:42 +0800532 mov xSELF, x3 // Move thread pointer into SELF register.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700533
534 // Copy arguments into stack frame.
535 // Use simple copy routine for now.
536 // 4 bytes per slot.
537 // X1 - source address
538 // W2 - args length
539 // X9 - destination address.
540 // W10 - temporary
Mathieu Chartiere401d142015-04-22 13:56:20 -0700541 add x9, sp, #8 // Destination address is bottom of stack + null.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700542
543 // Use \@ to differentiate between macro invocations.
544.LcopyParams\@:
545 cmp w2, #0
546 beq .LendCopyParams\@
547 sub w2, w2, #4 // Need 65536 bytes of range.
548 ldr w10, [x1, x2]
549 str w10, [x9, x2]
550
551 b .LcopyParams\@
552
553.LendCopyParams\@:
554
Mathieu Chartiere401d142015-04-22 13:56:20 -0700555 // Store null into ArtMethod* at bottom of frame.
556 str xzr, [sp]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700557.endm
558
559.macro INVOKE_STUB_CALL_AND_RETURN
560
561 // load method-> METHOD_QUICK_CODE_OFFSET
Mathieu Chartiere401d142015-04-22 13:56:20 -0700562 ldr x9, [x0, #ART_METHOD_QUICK_CODE_OFFSET_64]
Andreas Gampe03906cf2014-04-07 12:08:28 -0700563 // Branch to method.
564 blr x9
565
566 // Restore return value address and shorty address.
567 ldp x4,x5, [xFP, #16]
568 .cfi_restore x4
569 .cfi_restore x5
570
Nicolas Geoffray48088462014-12-12 10:29:38 +0000571 ldr x28, [xFP, #112]
572 .cfi_restore x28
573
574 ldp x26, x27, [xFP, #96]
575 .cfi_restore x26
576 .cfi_restore x27
577
578 ldp x24, x25, [xFP, #80]
579 .cfi_restore x24
580 .cfi_restore x25
581
582 ldp x22, x23, [xFP, #64]
583 .cfi_restore x22
584 .cfi_restore x23
585
586 ldp x20, x21, [xFP, #48]
587 .cfi_restore x20
588 .cfi_restore x21
589
Andreas Gampe03906cf2014-04-07 12:08:28 -0700590 // Store result (w0/x0/s0/d0) appropriately, depending on resultType.
591 ldrb w10, [x5]
592
593 // Don't set anything for a void type.
594 cmp w10, #'V'
595 beq .Lexit_art_quick_invoke_stub\@
596
597 cmp w10, #'D'
598 bne .Lreturn_is_float\@
599 str d0, [x4]
600 b .Lexit_art_quick_invoke_stub\@
601
602.Lreturn_is_float\@:
603 cmp w10, #'F'
604 bne .Lreturn_is_int\@
605 str s0, [x4]
606 b .Lexit_art_quick_invoke_stub\@
607
608 // Just store x0. Doesn't matter if it is 64 or 32 bits.
609.Lreturn_is_int\@:
610 str x0, [x4]
611
612.Lexit_art_quick_invoke_stub\@:
Zheng Xu69a50302015-04-14 20:04:41 +0800613 ldp x2, x19, [xFP, #32] // Restore stack pointer and x19.
Andreas Gampecf4035a2014-05-28 22:43:01 -0700614 .cfi_restore x19
Andreas Gampe03906cf2014-04-07 12:08:28 -0700615 mov sp, x2
616 .cfi_restore sp
617
Andreas Gamped58342c2014-06-05 14:18:08 -0700618 ldp xFP, xLR, [xFP] // Restore old frame pointer and link register.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700619 .cfi_restore x29
620 .cfi_restore x30
621
622 ret
623
624.endm
625
626
Stuart Monteithb95a5342014-03-12 13:32:32 +0000627/*
628 * extern"C" void art_quick_invoke_stub(ArtMethod *method, x0
629 * uint32_t *args, x1
630 * uint32_t argsize, w2
631 * Thread *self, x3
632 * JValue *result, x4
633 * char *shorty); x5
634 * +----------------------+
635 * | |
636 * | C/C++ frame |
637 * | LR'' |
638 * | FP'' | <- SP'
639 * +----------------------+
640 * +----------------------+
Zheng Xu69a50302015-04-14 20:04:41 +0800641 * | x28 | <- TODO: Remove callee-saves.
642 * | : |
643 * | x19 |
Stuart Monteithb95a5342014-03-12 13:32:32 +0000644 * | SP' |
645 * | X5 |
646 * | X4 | Saved registers
647 * | LR' |
648 * | FP' | <- FP
649 * +----------------------+
650 * | uint32_t out[n-1] |
651 * | : : | Outs
652 * | uint32_t out[0] |
Mathieu Chartiere401d142015-04-22 13:56:20 -0700653 * | ArtMethod* | <- SP value=null
Stuart Monteithb95a5342014-03-12 13:32:32 +0000654 * +----------------------+
655 *
656 * Outgoing registers:
657 * x0 - Method*
658 * x1-x7 - integer parameters.
659 * d0-d7 - Floating point parameters.
660 * xSELF = self
661 * SP = & of ArtMethod*
662 * x1 = "this" pointer.
663 *
664 */
665ENTRY art_quick_invoke_stub
666 // Spill registers as per AACPS64 calling convention.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700667 INVOKE_STUB_CREATE_FRAME
Stuart Monteithb95a5342014-03-12 13:32:32 +0000668
669 // Fill registers x/w1 to x/w7 and s/d0 to s/d7 with parameters.
670 // Parse the passed shorty to determine which register to load.
671 // Load addresses for routines that load WXSD registers.
672 adr x11, .LstoreW2
673 adr x12, .LstoreX2
674 adr x13, .LstoreS0
675 adr x14, .LstoreD0
676
677 // Initialize routine offsets to 0 for integers and floats.
678 // x8 for integers, x15 for floating point.
679 mov x8, #0
680 mov x15, #0
681
682 add x10, x5, #1 // Load shorty address, plus one to skip return value.
683 ldr w1, [x9],#4 // Load "this" parameter, and increment arg pointer.
684
685 // Loop to fill registers.
686.LfillRegisters:
687 ldrb w17, [x10], #1 // Load next character in signature, and increment.
688 cbz w17, .LcallFunction // Exit at end of signature. Shorty 0 terminated.
689
690 cmp w17, #'F' // is this a float?
691 bne .LisDouble
692
693 cmp x15, # 8*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700694 beq .Ladvance4
Stuart Monteithb95a5342014-03-12 13:32:32 +0000695
696 add x17, x13, x15 // Calculate subroutine to jump to.
697 br x17
698
699.LisDouble:
700 cmp w17, #'D' // is this a double?
701 bne .LisLong
702
703 cmp x15, # 8*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700704 beq .Ladvance8
Stuart Monteithb95a5342014-03-12 13:32:32 +0000705
706 add x17, x14, x15 // Calculate subroutine to jump to.
707 br x17
708
709.LisLong:
710 cmp w17, #'J' // is this a long?
711 bne .LisOther
712
Andreas Gampe9de65ff2014-03-21 17:25:57 -0700713 cmp x8, # 6*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700714 beq .Ladvance8
Stuart Monteithb95a5342014-03-12 13:32:32 +0000715
716 add x17, x12, x8 // Calculate subroutine to jump to.
717 br x17
718
Stuart Monteithb95a5342014-03-12 13:32:32 +0000719.LisOther: // Everything else takes one vReg.
Andreas Gampe9de65ff2014-03-21 17:25:57 -0700720 cmp x8, # 6*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700721 beq .Ladvance4
722
Stuart Monteithb95a5342014-03-12 13:32:32 +0000723 add x17, x11, x8 // Calculate subroutine to jump to.
724 br x17
725
Andreas Gampe03906cf2014-04-07 12:08:28 -0700726.Ladvance4:
727 add x9, x9, #4
728 b .LfillRegisters
729
730.Ladvance8:
731 add x9, x9, #8
732 b .LfillRegisters
733
Stuart Monteithb95a5342014-03-12 13:32:32 +0000734// Macro for loading a parameter into a register.
735// counter - the register with offset into these tables
736// size - the size of the register - 4 or 8 bytes.
737// register - the name of the register to be loaded.
738.macro LOADREG counter size register return
739 ldr \register , [x9], #\size
740 add \counter, \counter, 12
741 b \return
742.endm
743
744// Store ints.
745.LstoreW2:
746 LOADREG x8 4 w2 .LfillRegisters
747 LOADREG x8 4 w3 .LfillRegisters
748 LOADREG x8 4 w4 .LfillRegisters
749 LOADREG x8 4 w5 .LfillRegisters
750 LOADREG x8 4 w6 .LfillRegisters
751 LOADREG x8 4 w7 .LfillRegisters
752
753// Store longs.
754.LstoreX2:
755 LOADREG x8 8 x2 .LfillRegisters
756 LOADREG x8 8 x3 .LfillRegisters
757 LOADREG x8 8 x4 .LfillRegisters
758 LOADREG x8 8 x5 .LfillRegisters
759 LOADREG x8 8 x6 .LfillRegisters
760 LOADREG x8 8 x7 .LfillRegisters
761
762// Store singles.
763.LstoreS0:
764 LOADREG x15 4 s0 .LfillRegisters
765 LOADREG x15 4 s1 .LfillRegisters
766 LOADREG x15 4 s2 .LfillRegisters
767 LOADREG x15 4 s3 .LfillRegisters
768 LOADREG x15 4 s4 .LfillRegisters
769 LOADREG x15 4 s5 .LfillRegisters
770 LOADREG x15 4 s6 .LfillRegisters
771 LOADREG x15 4 s7 .LfillRegisters
772
773// Store doubles.
774.LstoreD0:
775 LOADREG x15 8 d0 .LfillRegisters
776 LOADREG x15 8 d1 .LfillRegisters
777 LOADREG x15 8 d2 .LfillRegisters
778 LOADREG x15 8 d3 .LfillRegisters
779 LOADREG x15 8 d4 .LfillRegisters
780 LOADREG x15 8 d5 .LfillRegisters
781 LOADREG x15 8 d6 .LfillRegisters
782 LOADREG x15 8 d7 .LfillRegisters
783
784
785.LcallFunction:
786
Andreas Gampe03906cf2014-04-07 12:08:28 -0700787 INVOKE_STUB_CALL_AND_RETURN
Stuart Monteithb95a5342014-03-12 13:32:32 +0000788
Stuart Monteithb95a5342014-03-12 13:32:32 +0000789END art_quick_invoke_stub
790
791/* extern"C"
792 * void art_quick_invoke_static_stub(ArtMethod *method, x0
793 * uint32_t *args, x1
794 * uint32_t argsize, w2
795 * Thread *self, x3
796 * JValue *result, x4
797 * char *shorty); x5
798 */
799ENTRY art_quick_invoke_static_stub
800 // Spill registers as per AACPS64 calling convention.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700801 INVOKE_STUB_CREATE_FRAME
Stuart Monteithb95a5342014-03-12 13:32:32 +0000802
803 // Fill registers x/w1 to x/w7 and s/d0 to s/d7 with parameters.
804 // Parse the passed shorty to determine which register to load.
805 // Load addresses for routines that load WXSD registers.
806 adr x11, .LstoreW1_2
807 adr x12, .LstoreX1_2
808 adr x13, .LstoreS0_2
809 adr x14, .LstoreD0_2
810
811 // Initialize routine offsets to 0 for integers and floats.
812 // x8 for integers, x15 for floating point.
813 mov x8, #0
814 mov x15, #0
815
816 add x10, x5, #1 // Load shorty address, plus one to skip return value.
817
818 // Loop to fill registers.
819.LfillRegisters2:
820 ldrb w17, [x10], #1 // Load next character in signature, and increment.
821 cbz w17, .LcallFunction2 // Exit at end of signature. Shorty 0 terminated.
822
823 cmp w17, #'F' // is this a float?
824 bne .LisDouble2
825
826 cmp x15, # 8*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700827 beq .Ladvance4_2
Stuart Monteithb95a5342014-03-12 13:32:32 +0000828
829 add x17, x13, x15 // Calculate subroutine to jump to.
830 br x17
831
832.LisDouble2:
833 cmp w17, #'D' // is this a double?
834 bne .LisLong2
835
836 cmp x15, # 8*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700837 beq .Ladvance8_2
Stuart Monteithb95a5342014-03-12 13:32:32 +0000838
839 add x17, x14, x15 // Calculate subroutine to jump to.
840 br x17
841
842.LisLong2:
843 cmp w17, #'J' // is this a long?
844 bne .LisOther2
845
846 cmp x8, # 7*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700847 beq .Ladvance8_2
Stuart Monteithb95a5342014-03-12 13:32:32 +0000848
849 add x17, x12, x8 // Calculate subroutine to jump to.
850 br x17
851
Stuart Monteithb95a5342014-03-12 13:32:32 +0000852.LisOther2: // Everything else takes one vReg.
853 cmp x8, # 7*12 // Skip this load if all registers full.
Andreas Gampe03906cf2014-04-07 12:08:28 -0700854 beq .Ladvance4_2
855
Stuart Monteithb95a5342014-03-12 13:32:32 +0000856 add x17, x11, x8 // Calculate subroutine to jump to.
857 br x17
858
Andreas Gampe03906cf2014-04-07 12:08:28 -0700859.Ladvance4_2:
860 add x9, x9, #4
861 b .LfillRegisters2
862
863.Ladvance8_2:
864 add x9, x9, #8
865 b .LfillRegisters2
866
Stuart Monteithb95a5342014-03-12 13:32:32 +0000867// Store ints.
868.LstoreW1_2:
869 LOADREG x8 4 w1 .LfillRegisters2
870 LOADREG x8 4 w2 .LfillRegisters2
871 LOADREG x8 4 w3 .LfillRegisters2
872 LOADREG x8 4 w4 .LfillRegisters2
873 LOADREG x8 4 w5 .LfillRegisters2
874 LOADREG x8 4 w6 .LfillRegisters2
875 LOADREG x8 4 w7 .LfillRegisters2
876
877// Store longs.
878.LstoreX1_2:
879 LOADREG x8 8 x1 .LfillRegisters2
880 LOADREG x8 8 x2 .LfillRegisters2
881 LOADREG x8 8 x3 .LfillRegisters2
882 LOADREG x8 8 x4 .LfillRegisters2
883 LOADREG x8 8 x5 .LfillRegisters2
884 LOADREG x8 8 x6 .LfillRegisters2
885 LOADREG x8 8 x7 .LfillRegisters2
886
887// Store singles.
888.LstoreS0_2:
889 LOADREG x15 4 s0 .LfillRegisters2
890 LOADREG x15 4 s1 .LfillRegisters2
891 LOADREG x15 4 s2 .LfillRegisters2
892 LOADREG x15 4 s3 .LfillRegisters2
893 LOADREG x15 4 s4 .LfillRegisters2
894 LOADREG x15 4 s5 .LfillRegisters2
895 LOADREG x15 4 s6 .LfillRegisters2
896 LOADREG x15 4 s7 .LfillRegisters2
897
898// Store doubles.
899.LstoreD0_2:
900 LOADREG x15 8 d0 .LfillRegisters2
901 LOADREG x15 8 d1 .LfillRegisters2
902 LOADREG x15 8 d2 .LfillRegisters2
903 LOADREG x15 8 d3 .LfillRegisters2
904 LOADREG x15 8 d4 .LfillRegisters2
905 LOADREG x15 8 d5 .LfillRegisters2
906 LOADREG x15 8 d6 .LfillRegisters2
907 LOADREG x15 8 d7 .LfillRegisters2
908
909
910.LcallFunction2:
911
Andreas Gampe03906cf2014-04-07 12:08:28 -0700912 INVOKE_STUB_CALL_AND_RETURN
Stuart Monteithb95a5342014-03-12 13:32:32 +0000913
Stuart Monteithb95a5342014-03-12 13:32:32 +0000914END art_quick_invoke_static_stub
915
Andreas Gampe03906cf2014-04-07 12:08:28 -0700916
Stuart Monteithb95a5342014-03-12 13:32:32 +0000917
918 /*
919 * On entry x0 is uintptr_t* gprs_ and x1 is uint64_t* fprs_
920 */
921
922ENTRY art_quick_do_long_jump
923 // Load FPRs
924 ldp d0, d1, [x1], #16
925 ldp d2, d3, [x1], #16
926 ldp d4, d5, [x1], #16
927 ldp d6, d7, [x1], #16
928 ldp d8, d9, [x1], #16
929 ldp d10, d11, [x1], #16
930 ldp d12, d13, [x1], #16
931 ldp d14, d15, [x1], #16
932 ldp d16, d17, [x1], #16
933 ldp d18, d19, [x1], #16
934 ldp d20, d21, [x1], #16
935 ldp d22, d23, [x1], #16
936 ldp d24, d25, [x1], #16
937 ldp d26, d27, [x1], #16
938 ldp d28, d29, [x1], #16
939 ldp d30, d31, [x1]
940
941 // Load GPRs
942 // TODO: lots of those are smashed, could optimize.
943 add x0, x0, #30*8
944 ldp x30, x1, [x0], #-16
945 ldp x28, x29, [x0], #-16
946 ldp x26, x27, [x0], #-16
947 ldp x24, x25, [x0], #-16
948 ldp x22, x23, [x0], #-16
949 ldp x20, x21, [x0], #-16
950 ldp x18, x19, [x0], #-16
951 ldp x16, x17, [x0], #-16
952 ldp x14, x15, [x0], #-16
953 ldp x12, x13, [x0], #-16
954 ldp x10, x11, [x0], #-16
955 ldp x8, x9, [x0], #-16
956 ldp x6, x7, [x0], #-16
957 ldp x4, x5, [x0], #-16
958 ldp x2, x3, [x0], #-16
959 mov sp, x1
960
961 // TODO: Is it really OK to use LR for the target PC?
962 mov x0, #0
963 mov x1, #0
964 br xLR
965END art_quick_do_long_jump
966
Andreas Gampef4e910b2014-04-29 16:55:52 -0700967 /*
Andreas Gampe4fc046e2014-05-06 16:56:39 -0700968 * Entry from managed code that calls artLockObjectFromCode, may block for GC. x0 holds the
969 * possibly null object to lock.
970 *
971 * Derived from arm32 code.
972 */
973 .extern artLockObjectFromCode
974ENTRY art_quick_lock_object
975 cbz w0, .Lslow_lock
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700976 add x4, x0, #MIRROR_OBJECT_LOCK_WORD_OFFSET // exclusive load/store has no immediate anymore
Andreas Gampe4fc046e2014-05-06 16:56:39 -0700977.Lretry_lock:
978 ldr w2, [xSELF, #THREAD_ID_OFFSET] // TODO: Can the thread ID really change during the loop?
979 ldxr w1, [x4]
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -0800980 mov x3, x1
981 and w3, w3, #LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED // zero the read barrier bits
982 cbnz w3, .Lnot_unlocked // already thin locked
983 // unlocked case - x1: original lock word that's zero except for the read barrier bits.
984 orr x2, x1, x2 // x2 holds thread id with count of 0 with preserved read barrier bits
Andreas Gampe4fc046e2014-05-06 16:56:39 -0700985 stxr w3, w2, [x4]
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -0800986 cbnz w3, .Llock_stxr_fail // store failed, retry
Andreas Gampe675967d2014-05-14 16:28:34 -0700987 dmb ishld // full (LoadLoad|LoadStore) memory barrier
Andreas Gampe4fc046e2014-05-06 16:56:39 -0700988 ret
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -0800989.Lnot_unlocked: // x1: original lock word
990 lsr w3, w1, LOCK_WORD_STATE_SHIFT
Andreas Gampe4fc046e2014-05-06 16:56:39 -0700991 cbnz w3, .Lslow_lock // if either of the top two bits are set, go slow path
992 eor w2, w1, w2 // lock_word.ThreadId() ^ self->ThreadId()
993 uxth w2, w2 // zero top 16 bits
994 cbnz w2, .Lslow_lock // lock word and self thread id's match -> recursive lock
995 // else contention, go to slow path
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -0800996 mov x3, x1 // copy the lock word to check count overflow.
997 and w3, w3, #LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED // zero the read barrier bits.
998 add w2, w3, #LOCK_WORD_THIN_LOCK_COUNT_ONE // increment count in lock word placing in w2 to check overflow
999 lsr w3, w2, LOCK_WORD_READ_BARRIER_STATE_SHIFT // if either of the upper two bits (28-29) are set, we overflowed.
1000 cbnz w3, .Lslow_lock // if we overflow the count go slow path
1001 add w2, w1, #LOCK_WORD_THIN_LOCK_COUNT_ONE // increment count for real
1002 stxr w3, w2, [x4]
1003 cbnz w3, .Llock_stxr_fail // store failed, retry
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001004 ret
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -08001005.Llock_stxr_fail:
1006 b .Lretry_lock // retry
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001007.Lslow_lock:
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001008 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves in case we block
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001009 mov x1, xSELF // pass Thread::Current
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001010 bl artLockObjectFromCode // (Object* obj, Thread*)
1011 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001012 RETURN_IF_W0_IS_ZERO_OR_DELIVER
1013END art_quick_lock_object
1014
1015 /*
1016 * Entry from managed code that calls artUnlockObjectFromCode and delivers exception on failure.
1017 * x0 holds the possibly null object to lock.
1018 *
1019 * Derived from arm32 code.
1020 */
1021 .extern artUnlockObjectFromCode
1022ENTRY art_quick_unlock_object
1023 cbz x0, .Lslow_unlock
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -08001024 add x4, x0, #MIRROR_OBJECT_LOCK_WORD_OFFSET // exclusive load/store has no immediate anymore
1025.Lretry_unlock:
1026#ifndef USE_READ_BARRIER
1027 ldr w1, [x4]
1028#else
1029 ldxr w1, [x4] // Need to use atomic instructions for read barrier
1030#endif
1031 lsr w2, w1, LOCK_WORD_STATE_SHIFT
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001032 cbnz w2, .Lslow_unlock // if either of the top two bits are set, go slow path
1033 ldr w2, [xSELF, #THREAD_ID_OFFSET]
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -08001034 mov x3, x1 // copy lock word to check thread id equality
1035 and w3, w3, #LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED // zero the read barrier bits
1036 eor w3, w3, w2 // lock_word.ThreadId() ^ self->ThreadId()
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001037 uxth w3, w3 // zero top 16 bits
1038 cbnz w3, .Lslow_unlock // do lock word and self thread id's match?
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -08001039 mov x3, x1 // copy lock word to detect transition to unlocked
1040 and w3, w3, #LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED // zero the read barrier bits
1041 cmp w3, #LOCK_WORD_THIN_LOCK_COUNT_ONE
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001042 bpl .Lrecursive_thin_unlock
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -08001043 // transition to unlocked
1044 mov x3, x1
1045 and w3, w3, #LOCK_WORD_READ_BARRIER_STATE_MASK // w3: zero except for the preserved read barrier bits
Andreas Gampe675967d2014-05-14 16:28:34 -07001046 dmb ish // full (LoadStore|StoreStore) memory barrier
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -08001047#ifndef USE_READ_BARRIER
1048 str w3, [x4]
1049#else
1050 stxr w2, w3, [x4] // Need to use atomic instructions for read barrier
1051 cbnz w2, .Lunlock_stxr_fail // store failed, retry
1052#endif
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001053 ret
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -08001054.Lrecursive_thin_unlock: // w1: original lock word
1055 sub w1, w1, #LOCK_WORD_THIN_LOCK_COUNT_ONE // decrement count
1056#ifndef USE_READ_BARRIER
1057 str w1, [x4]
1058#else
1059 stxr w2, w1, [x4] // Need to use atomic instructions for read barrier
1060 cbnz w2, .Lunlock_stxr_fail // store failed, retry
1061#endif
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001062 ret
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -08001063.Lunlock_stxr_fail:
1064 b .Lretry_unlock // retry
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001065.Lslow_unlock:
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001066 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves in case exception allocation triggers GC
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001067 mov x1, xSELF // pass Thread::Current
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001068 bl artUnlockObjectFromCode // (Object* obj, Thread*)
1069 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
Andreas Gampe4fc046e2014-05-06 16:56:39 -07001070 RETURN_IF_W0_IS_ZERO_OR_DELIVER
1071END art_quick_unlock_object
Andreas Gampe525cde22014-04-22 15:44:50 -07001072
1073 /*
1074 * Entry from managed code that calls artIsAssignableFromCode and on failure calls
1075 * artThrowClassCastException.
1076 */
1077 .extern artThrowClassCastException
1078ENTRY art_quick_check_cast
1079 // Store arguments and link register
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001080 // Stack needs to be 16B aligned on calls.
1081 stp x0, x1, [sp,#-32]!
Andreas Gampe525cde22014-04-22 15:44:50 -07001082 .cfi_adjust_cfa_offset 32
Andreas Gampe525cde22014-04-22 15:44:50 -07001083 .cfi_rel_offset x0, 0
1084 .cfi_rel_offset x1, 8
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001085 str xLR, [sp, #24]
Andreas Gampe525cde22014-04-22 15:44:50 -07001086 .cfi_rel_offset x30, 24
1087
1088 // Call runtime code
1089 bl artIsAssignableFromCode
1090
1091 // Check for exception
1092 cbz x0, .Lthrow_class_cast_exception
1093
1094 // Restore and return
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001095 ldr xLR, [sp, #24]
1096 .cfi_restore x30
1097 ldp x0, x1, [sp], #32
Andreas Gampe525cde22014-04-22 15:44:50 -07001098 .cfi_restore x0
1099 .cfi_restore x1
Andreas Gampe525cde22014-04-22 15:44:50 -07001100 .cfi_adjust_cfa_offset -32
1101 ret
1102
1103.Lthrow_class_cast_exception:
1104 // Restore
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001105 ldr xLR, [sp, #24]
1106 .cfi_restore x30
1107 ldp x0, x1, [sp], #32
Andreas Gampe525cde22014-04-22 15:44:50 -07001108 .cfi_restore x0
1109 .cfi_restore x1
Andreas Gampe525cde22014-04-22 15:44:50 -07001110 .cfi_adjust_cfa_offset -32
1111
1112 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME // save all registers as basis for long jump context
1113 mov x2, xSELF // pass Thread::Current
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001114 b artThrowClassCastException // (Class*, Class*, Thread*)
Andreas Gampe525cde22014-04-22 15:44:50 -07001115 brk 0 // We should not return here...
1116END art_quick_check_cast
1117
Andreas Gampef4e910b2014-04-29 16:55:52 -07001118 /*
1119 * Entry from managed code for array put operations of objects where the value being stored
1120 * needs to be checked for compatibility.
1121 * x0 = array, x1 = index, x2 = value
1122 *
1123 * Currently all values should fit into w0/w1/w2, and w1 always will as indices are 32b. We
1124 * assume, though, that the upper 32b are zeroed out. At least for x1/w1 we can do better by
1125 * using index-zero-extension in load/stores.
1126 *
1127 * Temporaries: x3, x4
1128 * TODO: x4 OK? ip seems wrong here.
1129 */
1130ENTRY art_quick_aput_obj_with_null_and_bound_check
1131 tst x0, x0
1132 bne art_quick_aput_obj_with_bound_check
1133 b art_quick_throw_null_pointer_exception
1134END art_quick_aput_obj_with_null_and_bound_check
1135
1136ENTRY art_quick_aput_obj_with_bound_check
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001137 ldr w3, [x0, #MIRROR_ARRAY_LENGTH_OFFSET]
Andreas Gampef4e910b2014-04-29 16:55:52 -07001138 cmp w3, w1
1139 bhi art_quick_aput_obj
1140 mov x0, x1
1141 mov x1, x3
1142 b art_quick_throw_array_bounds
1143END art_quick_aput_obj_with_bound_check
1144
1145ENTRY art_quick_aput_obj
1146 cbz x2, .Ldo_aput_null
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001147 ldr w3, [x0, #MIRROR_OBJECT_CLASS_OFFSET] // Heap reference = 32b
Andreas Gampef4e910b2014-04-29 16:55:52 -07001148 // This also zero-extends to x3
Hiroshi Yamauchibfa5eb62015-05-29 15:04:41 -07001149 UNPOISON_HEAP_REF w3
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001150 ldr w4, [x2, #MIRROR_OBJECT_CLASS_OFFSET] // Heap reference = 32b
Andreas Gampef4e910b2014-04-29 16:55:52 -07001151 // This also zero-extends to x4
Hiroshi Yamauchibfa5eb62015-05-29 15:04:41 -07001152 UNPOISON_HEAP_REF w4
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001153 ldr w3, [x3, #MIRROR_CLASS_COMPONENT_TYPE_OFFSET] // Heap reference = 32b
Andreas Gampef4e910b2014-04-29 16:55:52 -07001154 // This also zero-extends to x3
Hiroshi Yamauchibfa5eb62015-05-29 15:04:41 -07001155 UNPOISON_HEAP_REF w3
Andreas Gampef4e910b2014-04-29 16:55:52 -07001156 cmp w3, w4 // value's type == array's component type - trivial assignability
1157 bne .Lcheck_assignability
1158.Ldo_aput:
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001159 add x3, x0, #MIRROR_OBJECT_ARRAY_DATA_OFFSET
Andreas Gampef4e910b2014-04-29 16:55:52 -07001160 // "Compress" = do nothing
Hiroshi Yamauchibfa5eb62015-05-29 15:04:41 -07001161 POISON_HEAP_REF w2
Andreas Gampef4e910b2014-04-29 16:55:52 -07001162 str w2, [x3, x1, lsl #2] // Heap reference = 32b
1163 ldr x3, [xSELF, #THREAD_CARD_TABLE_OFFSET]
1164 lsr x0, x0, #7
1165 strb w3, [x3, x0]
1166 ret
1167.Ldo_aput_null:
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001168 add x3, x0, #MIRROR_OBJECT_ARRAY_DATA_OFFSET
Andreas Gampef4e910b2014-04-29 16:55:52 -07001169 // "Compress" = do nothing
1170 str w2, [x3, x1, lsl #2] // Heap reference = 32b
1171 ret
1172.Lcheck_assignability:
1173 // Store arguments and link register
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001174 stp x0, x1, [sp,#-32]!
1175 .cfi_adjust_cfa_offset 32
Andreas Gampef4e910b2014-04-29 16:55:52 -07001176 .cfi_rel_offset x0, 0
1177 .cfi_rel_offset x1, 8
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001178 stp x2, xLR, [sp, #16]
Andreas Gampef4e910b2014-04-29 16:55:52 -07001179 .cfi_rel_offset x2, 16
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001180 .cfi_rel_offset x30, 24
Andreas Gampef4e910b2014-04-29 16:55:52 -07001181
1182 // Call runtime code
1183 mov x0, x3 // Heap reference, 32b, "uncompress" = do nothing, already zero-extended
1184 mov x1, x4 // Heap reference, 32b, "uncompress" = do nothing, already zero-extended
1185 bl artIsAssignableFromCode
1186
1187 // Check for exception
1188 cbz x0, .Lthrow_array_store_exception
1189
1190 // Restore
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001191 ldp x2, x30, [sp, #16]
1192 .cfi_restore x2
1193 .cfi_restore x30
1194 ldp x0, x1, [sp], #32
Andreas Gampef4e910b2014-04-29 16:55:52 -07001195 .cfi_restore x0
1196 .cfi_restore x1
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001197 .cfi_adjust_cfa_offset -32
Andreas Gampef4e910b2014-04-29 16:55:52 -07001198
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001199 add x3, x0, #MIRROR_OBJECT_ARRAY_DATA_OFFSET
Andreas Gampef4e910b2014-04-29 16:55:52 -07001200 // "Compress" = do nothing
Hiroshi Yamauchibfa5eb62015-05-29 15:04:41 -07001201 POISON_HEAP_REF w2
Andreas Gampef4e910b2014-04-29 16:55:52 -07001202 str w2, [x3, x1, lsl #2] // Heap reference = 32b
1203 ldr x3, [xSELF, #THREAD_CARD_TABLE_OFFSET]
1204 lsr x0, x0, #7
1205 strb w3, [x3, x0]
1206 ret
1207.Lthrow_array_store_exception:
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001208 ldp x2, x30, [sp, #16]
1209 .cfi_restore x2
1210 .cfi_restore x30
1211 ldp x0, x1, [sp], #32
Andreas Gampef4e910b2014-04-29 16:55:52 -07001212 .cfi_restore x0
1213 .cfi_restore x1
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001214 .cfi_adjust_cfa_offset -32
Andreas Gampef4e910b2014-04-29 16:55:52 -07001215
1216 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME
1217 mov x1, x2 // Pass value.
1218 mov x2, xSELF // Pass Thread::Current.
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001219 b artThrowArrayStoreException // (Object*, Object*, Thread*).
Andreas Gampef4e910b2014-04-29 16:55:52 -07001220 brk 0 // Unreached.
1221END art_quick_aput_obj
1222
Stuart Monteithb95a5342014-03-12 13:32:32 +00001223// Macro to facilitate adding new allocation entrypoints.
Vladimir Marko5ea536a2015-04-20 20:11:30 +01001224.macro ONE_ARG_DOWNCALL name, entrypoint, return
1225 .extern \entrypoint
1226ENTRY \name
Jeff Hao848f70a2014-01-15 13:49:50 -08001227 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
Vladimir Marko5ea536a2015-04-20 20:11:30 +01001228 mov x1, xSELF // pass Thread::Current
1229 bl \entrypoint // (uint32_t type_idx, Method* method, Thread*)
1230 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
1231 \return
1232END \name
1233.endm
1234
1235// Macro to facilitate adding new allocation entrypoints.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001236.macro TWO_ARG_DOWNCALL name, entrypoint, return
1237 .extern \entrypoint
1238ENTRY \name
Jeff Hao848f70a2014-01-15 13:49:50 -08001239 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
Andreas Gampe00c1e6d2014-04-25 15:47:13 -07001240 mov x2, xSELF // pass Thread::Current
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001241 bl \entrypoint // (uint32_t type_idx, Method* method, Thread*)
1242 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
Andreas Gampe00c1e6d2014-04-25 15:47:13 -07001243 \return
Stuart Monteithb95a5342014-03-12 13:32:32 +00001244END \name
1245.endm
1246
Jeff Hao848f70a2014-01-15 13:49:50 -08001247// Macro to facilitate adding new allocation entrypoints.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001248.macro THREE_ARG_DOWNCALL name, entrypoint, return
1249 .extern \entrypoint
1250ENTRY \name
Jeff Hao848f70a2014-01-15 13:49:50 -08001251 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
Andreas Gampe00c1e6d2014-04-25 15:47:13 -07001252 mov x3, xSELF // pass Thread::Current
Andreas Gampe00c1e6d2014-04-25 15:47:13 -07001253 bl \entrypoint
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001254 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
Andreas Gampe00c1e6d2014-04-25 15:47:13 -07001255 \return
Stuart Monteithb95a5342014-03-12 13:32:32 +00001256END \name
1257.endm
1258
Jeff Hao848f70a2014-01-15 13:49:50 -08001259// Macro to facilitate adding new allocation entrypoints.
1260.macro FOUR_ARG_DOWNCALL name, entrypoint, return
1261 .extern \entrypoint
1262ENTRY \name
1263 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
1264 mov x4, xSELF // pass Thread::Current
1265 bl \entrypoint //
1266 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
1267 \return
1268 DELIVER_PENDING_EXCEPTION
1269END \name
1270.endm
1271
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001272// Macros taking opportunity of code similarities for downcalls with referrer.
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001273.macro ONE_ARG_REF_DOWNCALL name, entrypoint, return
1274 .extern \entrypoint
1275ENTRY \name
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001276 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
Mathieu Chartiere401d142015-04-22 13:56:20 -07001277 ldr x1, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001278 mov x2, xSELF // pass Thread::Current
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001279 bl \entrypoint // (uint32_t type_idx, Method* method, Thread*, SP)
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001280 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001281 \return
1282END \name
1283.endm
1284
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001285.macro TWO_ARG_REF_DOWNCALL name, entrypoint, return
1286 .extern \entrypoint
1287ENTRY \name
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001288 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
Mathieu Chartiere401d142015-04-22 13:56:20 -07001289 ldr x2, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001290 mov x3, xSELF // pass Thread::Current
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001291 bl \entrypoint
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001292 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001293 \return
1294END \name
1295.endm
1296
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001297.macro THREE_ARG_REF_DOWNCALL name, entrypoint, return
1298 .extern \entrypoint
1299ENTRY \name
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001300 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
Mathieu Chartiere401d142015-04-22 13:56:20 -07001301 ldr x3, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001302 mov x4, xSELF // pass Thread::Current
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001303 bl \entrypoint
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001304 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001305 \return
1306END \name
1307.endm
1308
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08001309.macro RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER
1310 cbz w0, 1f // result zero branch over
1311 ret // return
13121:
1313 DELIVER_PENDING_EXCEPTION
1314.endm
1315
Matteo Franchindfd891a2014-04-30 12:17:17 +01001316 /*
Vladimir Marko3b370732014-10-09 18:34:28 +01001317 * Entry from managed code that calls artHandleFillArrayDataFromCode and delivers exception on
1318 * failure.
1319 */
1320TWO_ARG_REF_DOWNCALL art_quick_handle_fill_data, artHandleFillArrayDataFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1321
1322 /*
Matteo Franchindfd891a2014-04-30 12:17:17 +01001323 * Entry from managed code when uninitialized static storage, this stub will run the class
1324 * initializer and deliver the exception on error. On success the static storage base is
1325 * returned.
1326 */
Vladimir Marko5ea536a2015-04-20 20:11:30 +01001327ONE_ARG_DOWNCALL art_quick_initialize_static_storage, artInitializeStaticStorageFromCode, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER
Matteo Franchindfd891a2014-04-30 12:17:17 +01001328
Vladimir Marko5ea536a2015-04-20 20:11:30 +01001329ONE_ARG_DOWNCALL art_quick_initialize_type, artInitializeTypeFromCode, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER
1330ONE_ARG_DOWNCALL art_quick_initialize_type_and_verify_access, artInitializeTypeAndVerifyAccessFromCode, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER
Matteo Franchindfd891a2014-04-30 12:17:17 +01001331
Fred Shih37f05ef2014-07-16 18:38:08 -07001332ONE_ARG_REF_DOWNCALL art_quick_get_boolean_static, artGetBooleanStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1333ONE_ARG_REF_DOWNCALL art_quick_get_byte_static, artGetByteStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1334ONE_ARG_REF_DOWNCALL art_quick_get_char_static, artGetCharStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1335ONE_ARG_REF_DOWNCALL art_quick_get_short_static, artGetShortStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001336ONE_ARG_REF_DOWNCALL art_quick_get32_static, artGet32StaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1337ONE_ARG_REF_DOWNCALL art_quick_get64_static, artGet64StaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1338ONE_ARG_REF_DOWNCALL art_quick_get_obj_static, artGetObjStaticFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1339
Fred Shih37f05ef2014-07-16 18:38:08 -07001340TWO_ARG_REF_DOWNCALL art_quick_get_boolean_instance, artGetBooleanInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1341TWO_ARG_REF_DOWNCALL art_quick_get_byte_instance, artGetByteInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1342TWO_ARG_REF_DOWNCALL art_quick_get_char_instance, artGetCharInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1343TWO_ARG_REF_DOWNCALL art_quick_get_short_instance, artGetShortInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001344TWO_ARG_REF_DOWNCALL art_quick_get32_instance, artGet32InstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1345TWO_ARG_REF_DOWNCALL art_quick_get64_instance, artGet64InstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1346TWO_ARG_REF_DOWNCALL art_quick_get_obj_instance, artGetObjInstanceFromCode, RETURN_OR_DELIVER_PENDING_EXCEPTION_X1
1347
Fred Shih37f05ef2014-07-16 18:38:08 -07001348TWO_ARG_REF_DOWNCALL art_quick_set8_static, artSet8StaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1349TWO_ARG_REF_DOWNCALL art_quick_set16_static, artSet16StaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001350TWO_ARG_REF_DOWNCALL art_quick_set32_static, artSet32StaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1351TWO_ARG_REF_DOWNCALL art_quick_set_obj_static, artSetObjStaticFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1352
Fred Shih37f05ef2014-07-16 18:38:08 -07001353THREE_ARG_REF_DOWNCALL art_quick_set8_instance, artSet8InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1354THREE_ARG_REF_DOWNCALL art_quick_set16_instance, artSet16InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001355THREE_ARG_REF_DOWNCALL art_quick_set32_instance, artSet32InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
Stephen Kyle0ff20d52014-10-22 15:23:46 +01001356THREE_ARG_REF_DOWNCALL art_quick_set64_instance, artSet64InstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001357THREE_ARG_REF_DOWNCALL art_quick_set_obj_instance, artSetObjInstanceFromCode, RETURN_IF_W0_IS_ZERO_OR_DELIVER
1358
1359// This is separated out as the argument order is different.
1360 .extern artSet64StaticFromCode
1361ENTRY art_quick_set64_static
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001362 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves in case of GC
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001363 mov x3, x1 // Store value
Mathieu Chartiere401d142015-04-22 13:56:20 -07001364 ldr x1, [sp, #FRAME_SIZE_REFS_ONLY_CALLEE_SAVE] // Load referrer
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001365 mov x2, x3 // Put value param
1366 mov x3, xSELF // pass Thread::Current
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001367 bl artSet64StaticFromCode
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001368 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001369 RETURN_IF_W0_IS_ZERO_OR_DELIVER
1370END art_quick_set64_static
1371
Matteo Franchindfd891a2014-04-30 12:17:17 +01001372 /*
1373 * Entry from managed code to resolve a string, this stub will allocate a String and deliver an
Vladimir Marko5ea536a2015-04-20 20:11:30 +01001374 * exception on error. On success the String is returned. w0 holds the string index. The fast
1375 * path check for hit in strings cache has already been performed.
Matteo Franchindfd891a2014-04-30 12:17:17 +01001376 */
Vladimir Marko5ea536a2015-04-20 20:11:30 +01001377ONE_ARG_DOWNCALL art_quick_resolve_string, artResolveStringFromCode, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER
Andreas Gampe6e4e59c2014-05-05 20:11:02 -07001378
Stuart Monteithb95a5342014-03-12 13:32:32 +00001379// Generate the allocation entrypoints for each allocator.
1380GENERATE_ALL_ALLOC_ENTRYPOINTS
1381
Zheng Xu48241e72014-05-23 11:52:42 +08001382 /*
Zheng Xu69a50302015-04-14 20:04:41 +08001383 * Called by managed code when the thread has been asked to suspend.
Zheng Xu48241e72014-05-23 11:52:42 +08001384 */
1385 .extern artTestSuspendFromCode
1386ENTRY art_quick_test_suspend
1387 ldrh w0, [xSELF, #THREAD_FLAGS_OFFSET] // get xSELF->state_and_flags.as_struct.flags
Zheng Xu48241e72014-05-23 11:52:42 +08001388 cbnz w0, .Lneed_suspend // check flags == 0
1389 ret // return if flags == 0
1390.Lneed_suspend:
1391 mov x0, xSELF
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001392 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves for stack crawl
1393 bl artTestSuspendFromCode // (Thread*)
1394 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME_AND_RETURN
Zheng Xu48241e72014-05-23 11:52:42 +08001395END art_quick_test_suspend
Stuart Monteithb95a5342014-03-12 13:32:32 +00001396
Stuart Monteithd5c78f42014-06-11 16:44:46 +01001397ENTRY art_quick_implicit_suspend
1398 mov x0, xSELF
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001399 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME // save callee saves for stack crawl
1400 bl artTestSuspendFromCode // (Thread*)
1401 RESTORE_REFS_ONLY_CALLEE_SAVE_FRAME_AND_RETURN
Stuart Monteithd5c78f42014-06-11 16:44:46 +01001402END art_quick_implicit_suspend
1403
Andreas Gampee62a07e2014-03-26 14:53:21 -07001404 /*
1405 * Called by managed code that is attempting to call a method on a proxy class. On entry
1406 * x0 holds the proxy method and x1 holds the receiver; The frame size of the invoked proxy
1407 * method agrees with a ref and args callee save frame.
1408 */
1409 .extern artQuickProxyInvokeHandler
1410ENTRY art_quick_proxy_invoke_handler
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001411 SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_WITH_METHOD_IN_X0
Andreas Gampee62a07e2014-03-26 14:53:21 -07001412 mov x2, xSELF // pass Thread::Current
1413 mov x3, sp // pass SP
1414 bl artQuickProxyInvokeHandler // (Method* proxy method, receiver, Thread*, SP)
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001415 ldr x2, [xSELF, THREAD_EXCEPTION_OFFSET]
Andreas Gampee62a07e2014-03-26 14:53:21 -07001416 cbnz x2, .Lexception_in_proxy // success if no exception is pending
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001417 RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME // Restore frame
Andreas Gamped1e91672014-06-02 22:50:05 -07001418 fmov d0, x0 // Store result in d0 in case it was float or double
Andreas Gampee62a07e2014-03-26 14:53:21 -07001419 ret // return on success
1420.Lexception_in_proxy:
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001421 RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
Andreas Gampee62a07e2014-03-26 14:53:21 -07001422 DELIVER_PENDING_EXCEPTION
1423END art_quick_proxy_invoke_handler
Stuart Monteithb95a5342014-03-12 13:32:32 +00001424
Andreas Gampe51f76352014-05-21 08:28:48 -07001425 /*
Zheng Xub551fdc2014-07-25 11:49:42 +08001426 * Called to resolve an imt conflict. xIP1 is a hidden argument that holds the target method's
Andreas Gampe51f76352014-05-21 08:28:48 -07001427 * dex method index.
1428 */
1429ENTRY art_quick_imt_conflict_trampoline
Nicolas Geoffray8ea18d02015-05-26 16:29:08 +01001430 mov x0, xIP1
Andreas Gampe51f76352014-05-21 08:28:48 -07001431 b art_quick_invoke_interface_trampoline
1432END art_quick_imt_conflict_trampoline
Stuart Monteithb95a5342014-03-12 13:32:32 +00001433
1434ENTRY art_quick_resolution_trampoline
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001435 SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME
Stuart Monteithb95a5342014-03-12 13:32:32 +00001436 mov x2, xSELF
1437 mov x3, sp
1438 bl artQuickResolutionTrampoline // (called, receiver, Thread*, SP)
Matteo Franchindfd891a2014-04-30 12:17:17 +01001439 cbz x0, 1f
Zheng Xub551fdc2014-07-25 11:49:42 +08001440 mov xIP0, x0 // Remember returned code pointer in xIP0.
Mathieu Chartiere401d142015-04-22 13:56:20 -07001441 ldr x0, [sp, #0] // artQuickResolutionTrampoline puts called method in *SP.
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001442 RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
Zheng Xub551fdc2014-07-25 11:49:42 +08001443 br xIP0
Stuart Monteithb95a5342014-03-12 13:32:32 +000014441:
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001445 RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
Stuart Monteithb95a5342014-03-12 13:32:32 +00001446 DELIVER_PENDING_EXCEPTION
1447END art_quick_resolution_trampoline
1448
1449/*
1450 * Generic JNI frame layout:
1451 *
1452 * #-------------------#
1453 * | |
1454 * | caller method... |
1455 * #-------------------# <--- SP on entry
1456 * | Return X30/LR |
1457 * | X29/FP | callee save
1458 * | X28 | callee save
1459 * | X27 | callee save
1460 * | X26 | callee save
1461 * | X25 | callee save
1462 * | X24 | callee save
1463 * | X23 | callee save
1464 * | X22 | callee save
1465 * | X21 | callee save
1466 * | X20 | callee save
Zheng Xu69a50302015-04-14 20:04:41 +08001467 * | X19 | callee save
Stuart Monteithb95a5342014-03-12 13:32:32 +00001468 * | X7 | arg7
1469 * | X6 | arg6
1470 * | X5 | arg5
1471 * | X4 | arg4
1472 * | X3 | arg3
1473 * | X2 | arg2
1474 * | X1 | arg1
Stuart Monteithb95a5342014-03-12 13:32:32 +00001475 * | D7 | float arg 8
1476 * | D6 | float arg 7
1477 * | D5 | float arg 6
1478 * | D4 | float arg 5
1479 * | D3 | float arg 4
1480 * | D2 | float arg 3
1481 * | D1 | float arg 2
1482 * | D0 | float arg 1
Andreas Gampecf4035a2014-05-28 22:43:01 -07001483 * | Method* | <- X0
Stuart Monteithb95a5342014-03-12 13:32:32 +00001484 * #-------------------#
1485 * | local ref cookie | // 4B
Mathieu Chartier421c5372014-05-14 14:11:40 -07001486 * | handle scope size | // 4B
Stuart Monteithb95a5342014-03-12 13:32:32 +00001487 * #-------------------#
1488 * | JNI Call Stack |
1489 * #-------------------# <--- SP on native call
1490 * | |
1491 * | Stack for Regs | The trampoline assembly will pop these values
1492 * | | into registers for native call
1493 * #-------------------#
1494 * | Native code ptr |
1495 * #-------------------#
1496 * | Free scratch |
1497 * #-------------------#
1498 * | Ptr to (1) | <--- SP
1499 * #-------------------#
1500 */
1501 /*
1502 * Called to do a generic JNI down-call
1503 */
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001504ENTRY art_quick_generic_jni_trampoline
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001505 SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME_WITH_METHOD_IN_X0
Stuart Monteithb95a5342014-03-12 13:32:32 +00001506
1507 // Save SP , so we can have static CFI info.
1508 mov x28, sp
1509 .cfi_def_cfa_register x28
1510
1511 // This looks the same, but is different: this will be updated to point to the bottom
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001512 // of the frame when the handle scope is inserted.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001513 mov xFP, sp
1514
Zheng Xub551fdc2014-07-25 11:49:42 +08001515 mov xIP0, #5120
1516 sub sp, sp, xIP0
Stuart Monteithb95a5342014-03-12 13:32:32 +00001517
1518 // prepare for artQuickGenericJniTrampoline call
1519 // (Thread*, SP)
1520 // x0 x1 <= C calling convention
1521 // xSELF xFP <= where they are
1522
1523 mov x0, xSELF // Thread*
1524 mov x1, xFP
1525 bl artQuickGenericJniTrampoline // (Thread*, sp)
1526
Andreas Gampec200a4a2014-06-16 18:39:09 -07001527 // The C call will have registered the complete save-frame on success.
1528 // The result of the call is:
1529 // x0: pointer to native code, 0 on error.
1530 // x1: pointer to the bottom of the used area of the alloca, can restore stack till there.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001531
Andreas Gampec200a4a2014-06-16 18:39:09 -07001532 // Check for error = 0.
Nicolas Geoffray126d6592015-03-03 14:28:35 +00001533 cbz x0, .Lexception_in_native
Stuart Monteithb95a5342014-03-12 13:32:32 +00001534
Andreas Gampec200a4a2014-06-16 18:39:09 -07001535 // Release part of the alloca.
1536 mov sp, x1
Stuart Monteithb95a5342014-03-12 13:32:32 +00001537
Andreas Gampec200a4a2014-06-16 18:39:09 -07001538 // Save the code pointer
1539 mov xIP0, x0
Stuart Monteithb95a5342014-03-12 13:32:32 +00001540
1541 // Load parameters from frame into registers.
1542 // TODO Check with artQuickGenericJniTrampoline.
1543 // Also, check again APPCS64 - the stack arguments are interleaved.
Andreas Gampec200a4a2014-06-16 18:39:09 -07001544 ldp x0, x1, [sp]
1545 ldp x2, x3, [sp, #16]
1546 ldp x4, x5, [sp, #32]
1547 ldp x6, x7, [sp, #48]
Stuart Monteithb95a5342014-03-12 13:32:32 +00001548
Andreas Gampec200a4a2014-06-16 18:39:09 -07001549 ldp d0, d1, [sp, #64]
1550 ldp d2, d3, [sp, #80]
1551 ldp d4, d5, [sp, #96]
1552 ldp d6, d7, [sp, #112]
Stuart Monteithb95a5342014-03-12 13:32:32 +00001553
Andreas Gampec200a4a2014-06-16 18:39:09 -07001554 add sp, sp, #128
Stuart Monteithb95a5342014-03-12 13:32:32 +00001555
Zheng Xub551fdc2014-07-25 11:49:42 +08001556 blr xIP0 // native call.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001557
1558 // result sign extension is handled in C code
1559 // prepare for artQuickGenericJniEndTrampoline call
Andreas Gampec200a4a2014-06-16 18:39:09 -07001560 // (Thread*, result, result_f)
1561 // x0 x1 x2 <= C calling convention
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001562 mov x1, x0 // Result (from saved).
1563 mov x0, xSELF // Thread register.
Andreas Gampec200a4a2014-06-16 18:39:09 -07001564 fmov x2, d0 // d0 will contain floating point result, but needs to go into x2
Stuart Monteithb95a5342014-03-12 13:32:32 +00001565
1566 bl artQuickGenericJniEndTrampoline
1567
Nicolas Geoffray126d6592015-03-03 14:28:35 +00001568 // Pending exceptions possible.
Serban Constantinescu9bd88b02015-04-22 16:24:46 +01001569 ldr x2, [xSELF, THREAD_EXCEPTION_OFFSET]
Nicolas Geoffray126d6592015-03-03 14:28:35 +00001570 cbnz x2, .Lexception_in_native
1571
Stuart Monteithb95a5342014-03-12 13:32:32 +00001572 // Tear down the alloca.
1573 mov sp, x28
1574 .cfi_def_cfa_register sp
1575
Stuart Monteithb95a5342014-03-12 13:32:32 +00001576 // Tear down the callee-save frame.
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001577 RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME
Stuart Monteithb95a5342014-03-12 13:32:32 +00001578
1579 // store into fpr, for when it's a fpr return...
1580 fmov d0, x0
1581 ret
1582
Stuart Monteithb95a5342014-03-12 13:32:32 +00001583.Lexception_in_native:
Nicolas Geoffray126d6592015-03-03 14:28:35 +00001584 // Move to x1 then sp to please assembler.
1585 ldr x1, [xSELF, # THREAD_TOP_QUICK_FRAME_OFFSET]
1586 mov sp, x1
1587 .cfi_def_cfa_register sp
1588 # This will create a new save-all frame, required by the runtime.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001589 DELIVER_PENDING_EXCEPTION
Stuart Monteithb95a5342014-03-12 13:32:32 +00001590END art_quick_generic_jni_trampoline
1591
1592/*
1593 * Called to bridge from the quick to interpreter ABI. On entry the arguments match those
1594 * of a quick call:
1595 * x0 = method being called/to bridge to.
1596 * x1..x7, d0..d7 = arguments to that method.
1597 */
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001598ENTRY art_quick_to_interpreter_bridge
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001599 SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME // Set up frame and save arguments.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001600
1601 // x0 will contain mirror::ArtMethod* method.
1602 mov x1, xSELF // How to get Thread::Current() ???
1603 mov x2, sp
1604
1605 // uint64_t artQuickToInterpreterBridge(mirror::ArtMethod* method, Thread* self,
1606 // mirror::ArtMethod** sp)
1607 bl artQuickToInterpreterBridge
1608
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001609 RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME // TODO: no need to restore arguments in this case.
Stuart Monteithb95a5342014-03-12 13:32:32 +00001610
1611 fmov d0, x0
1612
1613 RETURN_OR_DELIVER_PENDING_EXCEPTION
1614END art_quick_to_interpreter_bridge
1615
Andreas Gamped58342c2014-06-05 14:18:08 -07001616
1617//
1618// Instrumentation-related stubs
1619//
1620 .extern artInstrumentationMethodEntryFromCode
1621ENTRY art_quick_instrumentation_entry
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001622 SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME
Andreas Gamped58342c2014-06-05 14:18:08 -07001623
Zheng Xub551fdc2014-07-25 11:49:42 +08001624 mov x20, x0 // Preserve method reference in a callee-save.
Andreas Gamped58342c2014-06-05 14:18:08 -07001625
1626 mov x2, xSELF
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001627 mov x3, xLR
1628 bl artInstrumentationMethodEntryFromCode // (Method*, Object*, Thread*, LR)
Andreas Gamped58342c2014-06-05 14:18:08 -07001629
Zheng Xub551fdc2014-07-25 11:49:42 +08001630 mov xIP0, x0 // x0 = result of call.
1631 mov x0, x20 // Reload method reference.
Andreas Gamped58342c2014-06-05 14:18:08 -07001632
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001633 RESTORE_REFS_AND_ARGS_CALLEE_SAVE_FRAME // Note: will restore xSELF
Andreas Gamped58342c2014-06-05 14:18:08 -07001634 adr xLR, art_quick_instrumentation_exit
Zheng Xub551fdc2014-07-25 11:49:42 +08001635 br xIP0 // Tail-call method with lr set to art_quick_instrumentation_exit.
Andreas Gamped58342c2014-06-05 14:18:08 -07001636END art_quick_instrumentation_entry
1637
1638 .extern artInstrumentationMethodExitFromCode
1639ENTRY art_quick_instrumentation_exit
1640 mov xLR, #0 // Clobber LR for later checks.
1641
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001642 SETUP_REFS_ONLY_CALLEE_SAVE_FRAME
Andreas Gamped58342c2014-06-05 14:18:08 -07001643
1644 // We need to save x0 and d0. We could use a callee-save from SETUP_REF_ONLY, but then
1645 // we would need to fully restore it. As there are a lot of callee-save registers, it seems
1646 // easier to have an extra small stack area.
1647
Sebastien Hertz70f8d4b2014-06-19 11:51:41 +02001648 str x0, [sp, #-16]! // Save integer result.
Andreas Gamped58342c2014-06-05 14:18:08 -07001649 .cfi_adjust_cfa_offset 16
1650 str d0, [sp, #8] // Save floating-point result.
1651
Andreas Gamped58342c2014-06-05 14:18:08 -07001652 add x1, sp, #16 // Pass SP.
1653 mov x2, x0 // Pass integer result.
1654 fmov x3, d0 // Pass floating-point result.
Sebastien Hertz70f8d4b2014-06-19 11:51:41 +02001655 mov x0, xSELF // Pass Thread.
Andreas Gamped58342c2014-06-05 14:18:08 -07001656 bl artInstrumentationMethodExitFromCode // (Thread*, SP, gpr_res, fpr_res)
1657
Zheng Xub551fdc2014-07-25 11:49:42 +08001658 mov xIP0, x0 // Return address from instrumentation call.
Andreas Gamped58342c2014-06-05 14:18:08 -07001659 mov xLR, x1 // r1 is holding link register if we're to bounce to deoptimize
1660
1661 ldr d0, [sp, #8] // Restore floating-point result.
1662 ldr x0, [sp], 16 // Restore integer result, and drop stack area.
1663 .cfi_adjust_cfa_offset 16
1664
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001665 POP_REFS_ONLY_CALLEE_SAVE_FRAME
Andreas Gamped58342c2014-06-05 14:18:08 -07001666
Zheng Xub551fdc2014-07-25 11:49:42 +08001667 br xIP0 // Tail-call out.
Andreas Gamped58342c2014-06-05 14:18:08 -07001668END art_quick_instrumentation_exit
1669
1670 /*
1671 * Instrumentation has requested that we deoptimize into the interpreter. The deoptimization
1672 * will long jump to the upcall with a special exception of -1.
1673 */
1674 .extern artDeoptimize
1675ENTRY art_quick_deoptimize
1676 SETUP_SAVE_ALL_CALLEE_SAVE_FRAME
1677 mov x0, xSELF // Pass thread.
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001678 bl artDeoptimize // artDeoptimize(Thread*)
Serban Constantinescu86797a72014-06-19 16:17:56 +01001679 brk 0
Andreas Gamped58342c2014-06-05 14:18:08 -07001680END art_quick_deoptimize
1681
1682
Serban Constantinescu169489b2014-06-11 16:43:35 +01001683 /*
1684 * String's indexOf.
1685 *
1686 * TODO: Not very optimized.
1687 * On entry:
1688 * x0: string object (known non-null)
1689 * w1: char to match (known <= 0xFFFF)
1690 * w2: Starting offset in string data
1691 */
1692ENTRY art_quick_indexof
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001693 ldr w3, [x0, #MIRROR_STRING_COUNT_OFFSET]
Jeff Hao848f70a2014-01-15 13:49:50 -08001694 add x0, x0, #MIRROR_STRING_VALUE_OFFSET
Serban Constantinescu169489b2014-06-11 16:43:35 +01001695
1696 /* Clamp start to [0..count] */
1697 cmp w2, #0
1698 csel w2, wzr, w2, lt
1699 cmp w2, w3
1700 csel w2, w3, w2, gt
1701
Serban Constantinescu169489b2014-06-11 16:43:35 +01001702 /* Save a copy to compute result */
1703 mov x5, x0
1704
1705 /* Build pointer to start of data to compare and pre-bias */
1706 add x0, x0, x2, lsl #1
1707 sub x0, x0, #2
1708
1709 /* Compute iteration count */
1710 sub w2, w3, w2
1711
1712 /*
1713 * At this point we have:
1714 * x0: start of the data to test
1715 * w1: char to compare
1716 * w2: iteration count
1717 * x5: original start of string data
1718 */
1719
1720 subs w2, w2, #4
1721 b.lt .Lindexof_remainder
1722
1723.Lindexof_loop4:
1724 ldrh w6, [x0, #2]!
1725 ldrh w7, [x0, #2]!
Zheng Xub551fdc2014-07-25 11:49:42 +08001726 ldrh wIP0, [x0, #2]!
1727 ldrh wIP1, [x0, #2]!
Serban Constantinescu169489b2014-06-11 16:43:35 +01001728 cmp w6, w1
1729 b.eq .Lmatch_0
1730 cmp w7, w1
1731 b.eq .Lmatch_1
Zheng Xub551fdc2014-07-25 11:49:42 +08001732 cmp wIP0, w1
Serban Constantinescu169489b2014-06-11 16:43:35 +01001733 b.eq .Lmatch_2
Zheng Xub551fdc2014-07-25 11:49:42 +08001734 cmp wIP1, w1
Serban Constantinescu169489b2014-06-11 16:43:35 +01001735 b.eq .Lmatch_3
1736 subs w2, w2, #4
1737 b.ge .Lindexof_loop4
1738
1739.Lindexof_remainder:
1740 adds w2, w2, #4
1741 b.eq .Lindexof_nomatch
1742
1743.Lindexof_loop1:
1744 ldrh w6, [x0, #2]!
1745 cmp w6, w1
1746 b.eq .Lmatch_3
1747 subs w2, w2, #1
1748 b.ne .Lindexof_loop1
1749
1750.Lindexof_nomatch:
1751 mov x0, #-1
1752 ret
1753
1754.Lmatch_0:
1755 sub x0, x0, #6
1756 sub x0, x0, x5
1757 asr x0, x0, #1
1758 ret
1759.Lmatch_1:
1760 sub x0, x0, #4
1761 sub x0, x0, x5
1762 asr x0, x0, #1
1763 ret
1764.Lmatch_2:
1765 sub x0, x0, #2
1766 sub x0, x0, x5
1767 asr x0, x0, #1
1768 ret
1769.Lmatch_3:
1770 sub x0, x0, x5
1771 asr x0, x0, #1
1772 ret
1773END art_quick_indexof
Andreas Gampe266340d2014-05-02 07:55:24 -07001774
1775 /*
1776 * String's compareTo.
1777 *
1778 * TODO: Not very optimized.
1779 *
1780 * On entry:
1781 * x0: this object pointer
1782 * x1: comp object pointer
1783 *
1784 */
Serban Constantinescu86797a72014-06-19 16:17:56 +01001785 .extern __memcmp16
Andreas Gampe266340d2014-05-02 07:55:24 -07001786ENTRY art_quick_string_compareto
1787 mov x2, x0 // x0 is return, use x2 for first input.
1788 sub x0, x2, x1 // Same string object?
1789 cbnz x0,1f
1790 ret
17911: // Different string objects.
1792
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001793 ldr w4, [x2, #MIRROR_STRING_COUNT_OFFSET]
1794 ldr w3, [x1, #MIRROR_STRING_COUNT_OFFSET]
Jeff Hao848f70a2014-01-15 13:49:50 -08001795 add x2, x2, #MIRROR_STRING_VALUE_OFFSET
1796 add x1, x1, #MIRROR_STRING_VALUE_OFFSET
Andreas Gampe266340d2014-05-02 07:55:24 -07001797
1798 /*
Jeff Hao848f70a2014-01-15 13:49:50 -08001799 * Now: Data* Count
1800 * first arg x2 w4
1801 * second arg x1 w3
Andreas Gampe266340d2014-05-02 07:55:24 -07001802 */
1803
1804 // x0 := str1.length(w4) - str2.length(w3). ldr zero-extended w3/w4 into x3/x4.
1805 subs x0, x4, x3
1806 // Min(count1, count2) into w3.
1807 csel x3, x3, x4, ge
1808
Serban Constantinescu169489b2014-06-11 16:43:35 +01001809 // TODO: Tune this value.
Andreas Gampe266340d2014-05-02 07:55:24 -07001810 // Check for long string, do memcmp16 for them.
1811 cmp w3, #28 // Constant from arm32.
1812 bgt .Ldo_memcmp16
1813
1814 /*
1815 * Now:
1816 * x2: *first string data
1817 * x1: *second string data
1818 * w3: iteration count
1819 * x0: return value if comparison equal
1820 * x4, x5, x6, x7: free
1821 */
1822
1823 // Do a simple unrolled loop.
1824.Lloop:
1825 // At least two more elements?
1826 subs w3, w3, #2
1827 b.lt .Lremainder_or_done
1828
1829 ldrh w4, [x2], #2
1830 ldrh w5, [x1], #2
1831
1832 ldrh w6, [x2], #2
1833 ldrh w7, [x1], #2
1834
1835 subs w4, w4, w5
1836 b.ne .Lw4_result
1837
1838 subs w6, w6, w7
1839 b.ne .Lw6_result
1840
1841 b .Lloop
1842
1843.Lremainder_or_done:
1844 adds w3, w3, #1
1845 b.eq .Lremainder
1846 ret
1847
1848.Lremainder:
1849 ldrh w4, [x2], #2
1850 ldrh w5, [x1], #2
1851 subs w4, w4, w5
1852 b.ne .Lw4_result
1853 ret
1854
1855// Result is in w4
1856.Lw4_result:
1857 sxtw x0, w4
1858 ret
1859
1860// Result is in w6
1861.Lw6_result:
1862 sxtw x0, w6
1863 ret
1864
1865.Ldo_memcmp16:
Zheng Xu62ddb322014-08-12 17:19:12 +08001866 mov x14, x0 // Save x0 and LR. __memcmp16 does not use these temps.
1867 mov x15, xLR // TODO: Codify and check that?
Andreas Gampe266340d2014-05-02 07:55:24 -07001868
1869 mov x0, x2
1870 uxtw x2, w3
Serban Constantinescu86797a72014-06-19 16:17:56 +01001871 bl __memcmp16
Andreas Gampe266340d2014-05-02 07:55:24 -07001872
Zheng Xu62ddb322014-08-12 17:19:12 +08001873 mov xLR, x15 // Restore LR.
Andreas Gampe266340d2014-05-02 07:55:24 -07001874
Serban Constantinescu86797a72014-06-19 16:17:56 +01001875 cmp x0, #0 // Check the memcmp difference.
Zheng Xu62ddb322014-08-12 17:19:12 +08001876 csel x0, x0, x14, ne // x0 := x0 != 0 ? x14(prev x0=length diff) : x1.
Andreas Gampe266340d2014-05-02 07:55:24 -07001877 ret
1878END art_quick_string_compareto