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

Unified Diff: fusl/src/signal/or1k/sigsetjmp.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fusl/src/signal/mips/sigsetjmp.s ('k') | fusl/src/signal/powerpc/restore.s » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/src/signal/or1k/sigsetjmp.s
diff --git a/fusl/src/signal/or1k/sigsetjmp.s b/fusl/src/signal/or1k/sigsetjmp.s
new file mode 100644
index 0000000000000000000000000000000000000000..b9bcdae1db3bc7e8627a91782acbe9910961238c
--- /dev/null
+++ b/fusl/src/signal/or1k/sigsetjmp.s
@@ -0,0 +1,24 @@
+.global sigsetjmp
+.global __sigsetjmp
+.type sigsetjmp,@function
+.type __sigsetjmp,@function
+sigsetjmp:
+__sigsetjmp:
+ l.sfeq r4, r0
+.hidden ___setjmp
+ l.bf ___setjmp
+
+ l.sw 52(r3), r9
+ l.sw 52+4+8(r3), r20
+
+ l.jal ___setjmp
+ l.ori r20, r3, 0
+
+ l.ori r4, r11, 0
+ l.ori r3, r20, 0
+
+ l.lwz r9, 52(r3)
+
+.hidden __sigsetjmp_tail
+ l.j __sigsetjmp_tail
+ l.lwz r20, 52+4+8(r3)
« no previous file with comments | « fusl/src/signal/mips/sigsetjmp.s ('k') | fusl/src/signal/powerpc/restore.s » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698