Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: fusl/src/setjmp/arm/setjmp.s

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/src/setjmp/arm/longjmp.s ('k') | fusl/src/setjmp/i386/longjmp.s » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 .syntax unified
2 .global __setjmp
3 .global _setjmp
4 .global setjmp
5 .type __setjmp,%function
6 .type _setjmp,%function
7 .type setjmp,%function
8 __setjmp:
9 _setjmp:
10 setjmp:
11 mov ip,r0
12 stmia ip!,{v1,v2,v3,v4,v5,v6,sl,fp,sp,lr}
13 mov r0,#0
14
15 adr r1,1f
16 ldr r2,1f
17 ldr r1,[r1,r2]
18
19 tst r1,#0x260
20 beq 3f
21 tst r1,#0x20
22 beq 2f
23 stc p2, cr4, [ip], #48
24 2: tst r1,#0x40
25 beq 2f
26 .fpu vfp
27 vstmia ip!, {d8-d15}
28 .fpu softvfp
29 .eabi_attribute 10, 0
30 .eabi_attribute 27, 0
31 2: tst r1,#0x200
32 beq 3f
33 stcl p1, cr10, [ip], #8
34 stcl p1, cr11, [ip], #8
35 stcl p1, cr12, [ip], #8
36 stcl p1, cr13, [ip], #8
37 stcl p1, cr14, [ip], #8
38 stcl p1, cr15, [ip], #8
39 3: bx lr
40
41 .hidden __hwcap
42 1: .word __hwcap-1b
OLDNEW
« no previous file with comments | « fusl/src/setjmp/arm/longjmp.s ('k') | fusl/src/setjmp/i386/longjmp.s » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698