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

Side by Side Diff: fusl/src/thread/arm/syscall_cp.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/thread/arm/clone.s ('k') | fusl/src/thread/call_once.c » ('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 __cp_begin
3 .hidden __cp_begin
4 .global __cp_end
5 .hidden __cp_end
6 .global __cp_cancel
7 .hidden __cp_cancel
8 .hidden __cancel
9 .global __syscall_cp_asm
10 .hidden __syscall_cp_asm
11 .type __syscall_cp_asm,%function
12 __syscall_cp_asm:
13 mov ip,sp
14 stmfd sp!,{r4,r5,r6,r7,lr}
15 __cp_begin:
16 ldr r0,[r0]
17 cmp r0,#0
18 blne __cp_cancel
19 mov r7,r1
20 mov r0,r2
21 mov r1,r3
22 ldmfd ip,{r2,r3,r4,r5,r6}
23 svc 0
24 __cp_end:
25 ldmfd sp!,{r4,r5,r6,r7,lr}
26 bx lr
27 __cp_cancel:
28 ldmfd sp!,{r4,r5,r6,r7,lr}
29 b __cancel
OLDNEW
« no previous file with comments | « fusl/src/thread/arm/clone.s ('k') | fusl/src/thread/call_once.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698