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

Side by Side Diff: fusl/src/thread/mips/syscall_cp.s

Issue 1689833004: [fusl] Update fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: remove stray space Created 4 years, 10 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/atomics.s ('k') | fusl/src/thread/pthread_cancel.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .set noreorder 1 .set noreorder
2 2
3 .global __cp_begin 3 .global __cp_begin
4 .hidden __cp_begin 4 .hidden __cp_begin
5 .type __cp_begin,@function 5 .type __cp_begin,@function
6 .global __cp_end 6 .global __cp_end
7 .hidden __cp_end 7 .hidden __cp_end
8 .type __cp_end,@function 8 .type __cp_end,@function
9 .global __cp_cancel 9 .global __cp_cancel
10 .hidden __cp_cancel 10 .hidden __cp_cancel
(...skipping 22 matching lines...) Expand all
33 lw $2, 28($sp) 33 lw $2, 28($sp)
34 syscall 34 syscall
35 __cp_end: 35 __cp_end:
36 beq $7, $0, 1f 36 beq $7, $0, 1f
37 addu $sp, $sp, 32 37 addu $sp, $sp, 32
38 subu $2, $0, $2 38 subu $2, $0, $2
39 1: jr $ra 39 1: jr $ra
40 nop 40 nop
41 41
42 __cp_cancel: 42 __cp_cancel:
43 move $2, $ra
44 bal 1f
43 addu $sp, $sp, 32 45 addu $sp, $sp, 32
44 » lw $25, %call16(__cancel)($gp) 46 » .gpword .
47 » .gpword __cancel
48 1:» lw $3, ($ra)
49 » subu $3, $ra, $3
50 » lw $25, 4($ra)
51 » addu $25, $25, $3
45 jr $25 52 jr $25
46 » nop 53 » move $ra, $2
OLDNEW
« no previous file with comments | « fusl/src/thread/arm/atomics.s ('k') | fusl/src/thread/pthread_cancel.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698