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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 // MOVL 4(SP), SP | 257 // MOVL 4(SP), SP |
258 // RET | 258 // RET |
259 | 259 |
260 TEXT emptyfunc(SB),0,$0 | 260 TEXT emptyfunc(SB),0,$0 |
261 RET | 261 RET |
262 | 262 |
263 TEXT abort(SB),7,$0 | 263 TEXT abort(SB),7,$0 |
264 MOVW $0, R0 | 264 MOVW $0, R0 |
265 MOVW (R0), R1 | 265 MOVW (R0), R1 |
266 | 266 |
LEFT | RIGHT |