2 /*--------------------------------------------------------------------*/
3 /*--- A minimal setjmp/longjmp implementation. m_libcsetjmp.c ---*/
4 /*--------------------------------------------------------------------*/
7 This file is part of Valgrind, a dynamic binary instrumentation
10 Copyright (C) 2010-2015 Mozilla Inc
12 This program is free software; you can redistribute it and/or
13 modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation; either version 2 of the
15 License, or (at your option) any later version.
17 This program is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
27 The GNU General Public License is contained in the file COPYING.
30 /* Contributed by Julian Seward <jseward@acm.org> */
33 #include "pub_core_basics.h"
34 #include "pub_core_libcsetjmp.h" /* self */
37 /* See include/pub_tool_libcsetjmp.h for background and rationale. */
39 /* The alternative implementations are for ppc{32,64}-linux and
40 {amd64,x86}-{linux,darwin,solaris}. See #259977. That leaves only
41 {arm,s390x}-linux using the gcc builtins now.
44 /* ------------ ppc32-linux ------------ */
46 #if defined(VGP_ppc32_linux)
51 ".global VG_MINIMAL_SETJMP" "\n" // r3 = jmp_buf
52 "VG_MINIMAL_SETJMP:" "\n"
78 " stw 25, 100(3)" "\n"
79 " stw 26, 104(3)" "\n"
80 " stw 27, 108(3)" "\n"
81 " stw 28, 112(3)" "\n"
82 " stw 29, 116(3)" "\n"
83 " stw 30, 120(3)" "\n"
84 " stw 31, 124(3)" "\n"
85 // must use a caller-save register here as scratch, hence r4
95 ".global VG_MINIMAL_LONGJMP" "\n"
96 "VG_MINIMAL_LONGJMP:" "\n" // r3 = jmp_buf
98 // and park it in the restore slot for r3 (the ret reg)
101 // restore everything except r3
102 // then r3 last of all
104 " lwz 0, 128(3)" "\n"
106 " lwz 0, 132(3)" "\n"
111 // r3 is done at the end
118 " lwz 10, 40(3)" "\n"
119 " lwz 11, 44(3)" "\n"
120 " lwz 12, 48(3)" "\n"
121 " lwz 13, 52(3)" "\n"
122 " lwz 14, 56(3)" "\n"
123 " lwz 15, 60(3)" "\n"
124 " lwz 16, 64(3)" "\n"
125 " lwz 17, 68(3)" "\n"
126 " lwz 18, 72(3)" "\n"
127 " lwz 19, 76(3)" "\n"
128 " lwz 20, 80(3)" "\n"
129 " lwz 21, 84(3)" "\n"
130 " lwz 22, 88(3)" "\n"
131 " lwz 23, 92(3)" "\n"
132 " lwz 24, 96(3)" "\n"
133 " lwz 25, 100(3)" "\n"
134 " lwz 26, 104(3)" "\n"
135 " lwz 27, 108(3)" "\n"
136 " lwz 28, 112(3)" "\n"
137 " lwz 29, 116(3)" "\n"
138 " lwz 30, 120(3)" "\n"
139 " lwz 31, 124(3)" "\n"
147 #endif /* VGP_ppc32_linux */
150 /* ------------ ppc64-linux ------------ */
152 #if defined(VGP_ppc64be_linux)
155 ".section \".toc\",\"aw\"" "\n"
157 ".section \".text\"" "\n"
159 ".p2align 4,,15" "\n"
160 ".globl VG_MINIMAL_SETJMP" "\n"
161 ".section \".opd\",\"aw\"" "\n"
163 "VG_MINIMAL_SETJMP:" "\n"
164 ".quad .L.VG_MINIMAL_SETJMP,.TOC.@tocbase,0" "\n"
167 ".type VG_MINIMAL_SETJMP, @function" "\n"
168 ".L.VG_MINIMAL_SETJMP:" "\n"
179 " std 10, 80(3)" "\n"
180 " std 11, 88(3)" "\n"
181 " std 12, 96(3)" "\n"
182 " std 13, 104(3)" "\n"
183 " std 14, 112(3)" "\n"
184 " std 15, 120(3)" "\n"
185 " std 16, 128(3)" "\n"
186 " std 17, 136(3)" "\n"
187 " std 18, 144(3)" "\n"
188 " std 19, 152(3)" "\n"
189 " std 20, 160(3)" "\n"
190 " std 21, 168(3)" "\n"
191 " std 22, 176(3)" "\n"
192 " std 23, 184(3)" "\n"
193 " std 24, 192(3)" "\n"
194 " std 25, 200(3)" "\n"
195 " std 26, 208(3)" "\n"
196 " std 27, 216(3)" "\n"
197 " std 28, 224(3)" "\n"
198 " std 29, 232(3)" "\n"
199 " std 30, 240(3)" "\n"
200 " std 31, 248(3)" "\n"
201 // must use a caller-save register here as scratch, hence r4
203 " std 4, 256(3)" "\n"
205 " std 4, 264(3)" "\n"
211 ".globl VG_MINIMAL_LONGJMP" "\n"
213 ".section \".opd\",\"aw\"" "\n"
215 "VG_MINIMAL_LONGJMP:" "\n"
216 ".quad .L.VG_MINIMAL_LONGJMP,.TOC.@tocbase,0" "\n"
219 ".type VG_MINIMAL_LONGJMP, @function" "\n"
220 ".L.VG_MINIMAL_LONGJMP:" "\n"
222 // and park it in the restore slot for r3 (the ret reg)
225 // restore everything except r3
226 // then r3 last of all
235 // r3 is done at the end
245 " ld 13, 104(3)" "\n"
246 " ld 14, 112(3)" "\n"
247 " ld 15, 120(3)" "\n"
248 " ld 16, 128(3)" "\n"
249 " ld 17, 136(3)" "\n"
250 " ld 18, 144(3)" "\n"
251 " ld 19, 152(3)" "\n"
252 " ld 20, 160(3)" "\n"
253 " ld 21, 168(3)" "\n"
254 " ld 22, 176(3)" "\n"
255 " ld 23, 184(3)" "\n"
256 " ld 24, 192(3)" "\n"
257 " ld 25, 200(3)" "\n"
258 " ld 26, 208(3)" "\n"
259 " ld 27, 216(3)" "\n"
260 " ld 28, 224(3)" "\n"
261 " ld 29, 232(3)" "\n"
262 " ld 30, 240(3)" "\n"
263 " ld 31, 248(3)" "\n"
271 #elif defined(VGP_ppc64le_linux)
273 ".section \".toc\",\"aw\"" "\n"
275 ".section \".text\"" "\n"
277 ".p2align 4,,15" "\n"
278 ".globl VG_MINIMAL_SETJMP" "\n"
279 ".type VG_MINIMAL_SETJMP,@function" "\n"
280 "VG_MINIMAL_SETJMP:" "\n"
281 " .localentry VG_MINIMAL_SETJMP, .-VG_MINIMAL_SETJMP" "\n"
292 " std 10, 80(3)" "\n"
293 " std 11, 88(3)" "\n"
294 " std 12, 96(3)" "\n"
295 " std 13, 104(3)" "\n"
296 " std 14, 112(3)" "\n"
297 " std 15, 120(3)" "\n"
298 " std 16, 128(3)" "\n"
299 " std 17, 136(3)" "\n"
300 " std 18, 144(3)" "\n"
301 " std 19, 152(3)" "\n"
302 " std 20, 160(3)" "\n"
303 " std 21, 168(3)" "\n"
304 " std 22, 176(3)" "\n"
305 " std 23, 184(3)" "\n"
306 " std 24, 192(3)" "\n"
307 " std 25, 200(3)" "\n"
308 " std 26, 208(3)" "\n"
309 " std 27, 216(3)" "\n"
310 " std 28, 224(3)" "\n"
311 " std 29, 232(3)" "\n"
312 " std 30, 240(3)" "\n"
313 " std 31, 248(3)" "\n"
314 // must use a caller-save register here as scratch, hence r4
316 " std 4, 256(3)" "\n"
318 " std 4, 264(3)" "\n"
324 ".globl VG_MINIMAL_LONGJMP" "\n"
325 ".type VG_MINIMAL_LONGJMP, @function" "\n"
326 "VG_MINIMAL_LONGJMP:" "\n"
327 " .localentry VG_MINIMAL_LONGJMP, .-VG_MINIMAL_LONGJMP" "\n"
329 // and park it in the restore slot for r3 (the ret reg)
332 // restore everything except r3
333 // then r3 last of all
342 // r3 is done at the end
352 " ld 13, 104(3)" "\n"
353 " ld 14, 112(3)" "\n"
354 " ld 15, 120(3)" "\n"
355 " ld 16, 128(3)" "\n"
356 " ld 17, 136(3)" "\n"
357 " ld 18, 144(3)" "\n"
358 " ld 19, 152(3)" "\n"
359 " ld 20, 160(3)" "\n"
360 " ld 21, 168(3)" "\n"
361 " ld 22, 176(3)" "\n"
362 " ld 23, 184(3)" "\n"
363 " ld 24, 192(3)" "\n"
364 " ld 25, 200(3)" "\n"
365 " ld 26, 208(3)" "\n"
366 " ld 27, 216(3)" "\n"
367 " ld 28, 224(3)" "\n"
368 " ld 29, 232(3)" "\n"
369 " ld 30, 240(3)" "\n"
370 " ld 31, 248(3)" "\n"
377 #endif /* VGP_ppc64be_linux */
380 /* -------- amd64-{linux,darwin,solaris} -------- */
382 #if defined(VGP_amd64_linux) || defined(VGP_amd64_darwin) || \
383 defined(VGP_amd64_solaris)
389 #if defined(VGP_amd64_linux) || defined(VGP_amd64_solaris)
390 ".global VG_MINIMAL_SETJMP" "\n" // rdi = jmp_buf
391 "VG_MINIMAL_SETJMP:" "\n"
393 #elif defined(VGP_amd64_darwin)
394 ".globl _VG_MINIMAL_SETJMP" "\n" // rdi = jmp_buf
395 "_VG_MINIMAL_SETJMP:" "\n"
401 " movq %rax, 0(%rdi)" "\n"
402 " movq %rbx, 8(%rdi)" "\n"
403 " movq %rcx, 16(%rdi)" "\n"
404 " movq %rdx, 24(%rdi)" "\n"
405 " movq %rdi, 32(%rdi)" "\n"
406 " movq %rsi, 40(%rdi)" "\n"
407 " movq %rbp, 48(%rdi)" "\n"
408 " movq %rsp, 56(%rdi)" "\n"
409 " movq %r8, 64(%rdi)" "\n"
410 " movq %r9, 72(%rdi)" "\n"
411 " movq %r10, 80(%rdi)" "\n"
412 " movq %r11, 88(%rdi)" "\n"
413 " movq %r12, 96(%rdi)" "\n"
414 " movq %r13, 104(%rdi)" "\n"
415 " movq %r14, 112(%rdi)" "\n"
416 " movq %r15, 120(%rdi)" "\n"
417 // store the return address
418 " movq 0(%rsp), %rax" "\n"
419 " movq %rax, 128(%rdi)" "\n"
421 " movq $0, %rax" "\n"
426 #if defined(VGP_amd64_linux) || defined(VGP_amd64_solaris)
427 ".global VG_MINIMAL_LONGJMP" "\n"
428 "VG_MINIMAL_LONGJMP:" "\n" // rdi = jmp_buf
430 #elif defined(VGP_amd64_darwin)
431 ".globl _VG_MINIMAL_LONGJMP" "\n"
432 "_VG_MINIMAL_LONGJMP:" "\n" // rdi = jmp_buf
437 // skip restoring rax; it's pointless
438 " movq 8(%rdi), %rbx" "\n"
439 " movq 16(%rdi), %rcx" "\n"
440 " movq 24(%rdi), %rdx" "\n"
441 // defer restoring rdi; we still need it
442 " movq 40(%rdi), %rsi" "\n"
443 " movq 48(%rdi), %rbp" "\n"
444 " movq 56(%rdi), %rsp" "\n"
445 " movq 64(%rdi), %r8" "\n"
446 " movq 72(%rdi), %r9" "\n"
447 " movq 80(%rdi), %r10" "\n"
448 " movq 88(%rdi), %r11" "\n"
449 " movq 96(%rdi), %r12" "\n"
450 " movq 104(%rdi), %r13" "\n"
451 " movq 112(%rdi), %r14" "\n"
452 " movq 120(%rdi), %r15" "\n"
453 // restore the return address
454 " movq 128(%rdi), %rax" "\n"
455 // restore rdi; this is the last use
456 " movq 32(%rdi), %rdi" "\n"
457 // make %rsp look like we really did a return
458 " addq $8, %rsp" "\n"
459 // continue at RA of original call. Note: this is a
460 // nasty trick. We assume that %rax is nonzero, and so the
461 // caller can differentiate this case from the normal _SETJMP
462 // return case. If the return address ever is zero, then
463 // we're hosed; but that seems pretty unlikely given that it
464 // would mean we'd be executing at the wraparound point of the
469 #if !defined(VGP_amd64_darwin)
474 #endif /* VGP_amd64_linux || VGP_amd64_darwin || VGP_amd64_solaris */
477 /* -------- x86-{linux,darwin,solaris} -------- */
479 #if defined(VGP_x86_linux) || defined(VGP_x86_darwin) || \
480 defined(VGP_x86_solaris)
486 #if defined(VGP_x86_linux) || defined(VGP_x86_solaris)
487 ".global VG_MINIMAL_SETJMP" "\n" // eax = jmp_buf
488 "VG_MINIMAL_SETJMP:" "\n"
490 #elif defined(VGP_x86_darwin)
491 ".globl _VG_MINIMAL_SETJMP" "\n" // eax = jmp_buf
492 "_VG_MINIMAL_SETJMP:" "\n"
498 " movl %eax, 0(%eax)" "\n"
499 " movl %ebx, 4(%eax)" "\n"
500 " movl %ecx, 8(%eax)" "\n"
501 " movl %edx, 12(%eax)" "\n"
502 " movl %edi, 16(%eax)" "\n"
503 " movl %esi, 20(%eax)" "\n"
504 " movl %ebp, 24(%eax)" "\n"
505 " movl %esp, 28(%eax)" "\n"
506 // store the return address
507 " movl 0(%esp), %ebx" "\n"
508 " movl %ebx, 32(%eax)" "\n"
509 // un-trash ebx (necessary? i don't know)
510 " movl 4(%eax), %ebx" "\n"
512 " movl $0, %eax" "\n"
517 #if defined(VGP_x86_linux) || defined(VGP_x86_solaris)
518 ".global VG_MINIMAL_LONGJMP" "\n"
519 "VG_MINIMAL_LONGJMP:" "\n" // eax = jmp_buf
521 #elif defined(VGP_x86_darwin)
522 ".globl _VG_MINIMAL_LONGJMP" "\n"
523 "_VG_MINIMAL_LONGJMP:" "\n" // eax = jmp_buf
529 // skip restoring eax; it's pointless
530 " movl 4(%eax), %ebx" "\n"
531 " movl 8(%eax), %ecx" "\n"
532 " movl 12(%eax), %edx" "\n"
533 " movl 16(%eax), %edi" "\n"
534 " movl 20(%eax), %esi" "\n"
535 " movl 24(%eax), %ebp" "\n"
536 " movl 28(%eax), %esp" "\n"
537 // restore the return address
538 " movl 32(%eax), %eax" "\n"
539 // make %esp look like we really did a return
540 " addl $4, %esp" "\n"
541 // continue at RA of original call. Same zero-vs-nonzero
542 // trick/assumption as documented for the amd64-linux case.
546 #if !defined(VGP_x86_darwin)
551 #endif /* VGP_x86_linux || VGP_x86_darwin || VGP_x86_solaris */
553 #if defined(VGP_mips32_linux)
557 ".globl VG_MINIMAL_SETJMP; \n\t"
559 "VG_MINIMAL_SETJMP: \n\t" /* a0 = jmp_buf */
560 " sw $s0, 0($a0) \n\t" /* Save registers s0-s7. */
561 " sw $s1, 4($a0) \n\t"
562 " sw $s2, 8($a0) \n\t"
563 " sw $s3, 12($a0) \n\t"
564 " sw $s4, 16($a0) \n\t"
565 " sw $s5, 20($a0) \n\t"
566 " sw $s6, 24($a0) \n\t"
567 " sw $s7, 28($a0) \n\t"
568 " sw $s8, 32($a0) \n\t" /* Frame pointer. */
569 " sw $ra, 36($a0) \n\t" /* Return address. */
570 " sw $gp, 40($a0) \n\t" /* Global data pointer. */
571 " sw $sp, 44($a0) \n\t" /* Stack pointer. */
573 " move $v0, $zero \n\t" /* Return zero. */
578 ".globl VG_MINIMAL_LONGJMP; \n\t"
580 "VG_MINIMAL_LONGJMP: \n\t" /* a0 = jmp_buf */
581 " lw $s0, 0($a0) \n\t" /* Restore registers s0-s7. */
582 " lw $s1, 4($a0) \n\t"
583 " lw $s2, 8($a0) \n\t"
584 " lw $s3, 12($a0) \n\t"
585 " lw $s4, 16($a0) \n\t"
586 " lw $s5, 20($a0) \n\t"
587 " lw $s6, 24($a0) \n\t"
588 " lw $s7, 28($a0) \n\t"
589 " lw $s8, 32($a0) \n\t" /* Frame pointer. */
590 " lw $ra, 36($a0) \n\t" /* Return address. */
591 " lw $gp, 40($a0) \n\t" /* Global data pointer. */
592 " lw $sp, 44($a0) \n\t" /* Stack pointer. */
594 /* Checking whether second argument is zero. */
597 " addi $a1, $a1, 1 \n\t" /* We must return 1 if val=0. */
599 " move $v0, $a1 \n\t" /* Return value of second argument. */
604 #endif /* VGP_mips32_linux */
606 /*--------------------------------------------------------------------*/
608 /*--------------------------------------------------------------------*/