LEFT | RIGHT |
(Both sides are equal) |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 #include "arm/asm.h" | 5 #include "arm/asm.h" |
6 | 6 |
7 // using frame size $-4 means do not save LR on stack. | 7 // using frame size $-4 means do not save LR on stack. |
8 TEXT _rt0_arm(SB),7,$-4 | 8 TEXT _rt0_arm(SB),7,$-4 |
9 MOVW $setR12(SB), R12 | 9 MOVW $setR12(SB), R12 |
10 | 10 |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 // MOVL 4(SP), SP | 260 // MOVL 4(SP), SP |
261 // RET | 261 // RET |
262 | 262 |
263 TEXT emptyfunc(SB),0,$0 | 263 TEXT emptyfunc(SB),0,$0 |
264 RET | 264 RET |
265 | 265 |
266 TEXT abort(SB),7,$-4 | 266 TEXT abort(SB),7,$-4 |
267 MOVW $0, R0 | 267 MOVW $0, R0 |
268 MOVW (R0), R1 | 268 MOVW (R0), R1 |
269 | 269 |
LEFT | RIGHT |