/third_party/libunwind/libunwind/ |
D | Makefile.am | 74 include/tdep-aarch64/jmpbuf.h \ 77 include/tdep-arm/jmpbuf.h include/tdep-arm/libunwind_i.h \ 78 include/tdep-ia64/jmpbuf.h include/tdep-ia64/rse.h \ 81 include/tdep-hppa/jmpbuf.h include/tdep-hppa/dwarf-config.h \ 83 include/tdep-mips/jmpbuf.h include/tdep-mips/dwarf-config.h \ 85 include/tdep-tilegx/jmpbuf.h include/tdep-tilegx/dwarf-config.h \ 87 include/tdep-x86/jmpbuf.h include/tdep-x86/dwarf-config.h \ 89 include/tdep-x86_64/jmpbuf.h include/tdep-x86_64/dwarf-config.h \ 91 include/tdep-ppc32/jmpbuf.h include/tdep-ppc32/libunwind_i.h \ 93 include/tdep-ppc64/jmpbuf.h include/tdep-ppc64/libunwind_i.h \ [all …]
|
/third_party/ltp/testcases/kernel/mem/mtest06/ |
D | shmat1.c | 93 sigjmp_buf jmpbuf; /* argument to setjmp and longjmp */ variable 167 siglongjmp(jmpbuf, 1); in sig_handler() 171 siglongjmp(jmpbuf, 1); in sig_handler() 311 if (sigsetjmp(jmpbuf, 1) == 1) { in write_to_mem() 354 if (sigsetjmp(jmpbuf, 1) == 1) { in read_from_mem()
|
D | mmap1.c | 47 static jmp_buf jmpbuf; variable 84 longjmp(jmpbuf, 1); in sig_handler() 125 if (setjmp(jmpbuf) == 1) in read_mem()
|
/third_party/skia/third_party/externals/libpng/contrib/gregbook/ |
D | writepng.c | 111 if (setjmp(mainprog_ptr->jmpbuf)) { in writepng_init() 268 if (setjmp(mainprog_ptr->jmpbuf)) { in writepng_encode_image() 306 if (setjmp(mainprog_ptr->jmpbuf)) { in writepng_encode_row() 336 if (setjmp(mainprog_ptr->jmpbuf)) { in writepng_encode_finish() 400 longjmp(mainprog_ptr->jmpbuf, 1); in writepng_error_handler()
|
D | readpng2.c | 135 if (setjmp(mainprog_ptr->jmpbuf)) { in readpng2_init() 199 if (setjmp(mainprog_ptr->jmpbuf)) { in readpng2_decode_data() 520 longjmp(mainprog_ptr->jmpbuf, 1); in readpng2_error_handler()
|
D | readpng2.h | 93 jmp_buf jmpbuf; member
|
D | writepng.h | 114 jmp_buf jmpbuf; member
|
D | readpng.c | 65 # define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
|
/third_party/node/deps/v8/src/builtins/x64/ |
D | builtins-x64.cc | 2937 void FillJumpBuffer(MacroAssembler* masm, Register jmpbuf, Label* pc) { in FillJumpBuffer() argument 2938 __ movq(MemOperand(jmpbuf, wasm::kJmpBufSpOffset), rsp); in FillJumpBuffer() 2939 __ movq(MemOperand(jmpbuf, wasm::kJmpBufFpOffset), rbp); in FillJumpBuffer() 2942 __ movq(MemOperand(jmpbuf, wasm::kJmpBufStackLimitOffset), kScratchRegister); in FillJumpBuffer() 2944 __ movq(MemOperand(jmpbuf, wasm::kJmpBufPcOffset), kScratchRegister); in FillJumpBuffer() 2947 void LoadJumpBuffer(MacroAssembler* masm, Register jmpbuf, bool load_pc) { in LoadJumpBuffer() argument 2948 __ movq(rsp, MemOperand(jmpbuf, wasm::kJmpBufSpOffset)); in LoadJumpBuffer() 2949 __ movq(rbp, MemOperand(jmpbuf, wasm::kJmpBufFpOffset)); in LoadJumpBuffer() 2951 __ jmp(MemOperand(jmpbuf, wasm::kJmpBufPcOffset)); in LoadJumpBuffer() 2962 Register jmpbuf = foreign_jmpbuf; in SaveState() local [all …]
|
/third_party/node/deps/v8/src/wasm/ |
D | stacks.h | 61 JumpBuffer* jmpbuf() { return &jmpbuf_; } in jmpbuf() function
|
D | wasm-objects.cc | 1770 stack->jmpbuf()->stack_limit = stack->jslimit(); in New() 1771 stack->jmpbuf()->sp = stack->base(); in New() 1772 stack->jmpbuf()->fp = kNullAddress; in New() 1773 wasm::JumpBuffer* jmpbuf = stack->jmpbuf(); in New() local 1778 isolate->factory()->NewForeign(reinterpret_cast<Address>(jmpbuf)); in New()
|
D | wasm-objects.tq | 99 jmpbuf: Foreign; // Direct access to the stack's jump buffer.
|
/third_party/node/deps/v8/src/execution/ |
D | frames.cc | 165 if (stack->jmpbuf()->sp == kNullAddress) { in Reset() 171 StackSwitchFrame::GetStateForJumpBuffer(stack->jmpbuf(), &state); in Reset() 2239 void StackSwitchFrame::GetStateForJumpBuffer(wasm::JumpBuffer* jmpbuf, in GetStateForJumpBuffer() argument 2241 DCHECK_NE(jmpbuf->fp, kNullAddress); in GetStateForJumpBuffer() 2242 DCHECK_EQ(ComputeFrameType(jmpbuf->fp), STACK_SWITCH); in GetStateForJumpBuffer() 2243 FillState(jmpbuf->fp, jmpbuf->sp, state); in GetStateForJumpBuffer()
|
D | frames.h | 1059 static void GetStateForJumpBuffer(wasm::JumpBuffer* jmpbuf, State* state);
|
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
D | pngfix.c | 862 jmp_buf jmpbuf; /* Set while reading a PNG */ member 1180 longjmp(file->jmpbuf, code); in stop() 3597 rc = setjmp(control->file.jmpbuf); in read_png()
|
/third_party/node/deps/v8/src/runtime/ |
D | runtime-wasm.cc | 736 uintptr_t limit = reinterpret_cast<uintptr_t>(stack->jmpbuf()->stack_limit); in SyncStackLimit()
|
/third_party/skia/third_party/externals/libpng/ |
D | pngtest.c | 154 # define png_jmpbuf(png_ptr) png_ptr->jmpbuf
|
D | CHANGES | 1836 Added conditional #undef jmpbuf in pngtest.c to undo #define in AIX headers. 2085 Added conditional #undef jmpbuf in pngtest.c to undo #define in AIX headers. 2559 jmp_buf buffer, and marked direct access to jmpbuf 'deprecated'. 2708 Removed the AIX redefinition of jmpbuf in png.h 2714 Changed the name of png_ptr->jmpbuf to png_ptr->png_jmpbuf in pngstruct.h 2922 appropriate. If mainprog->jmpbuf is used by setjmp, then png_longjmp
|
/third_party/node/deps/v8/src/diagnostics/ |
D | objects-printer.cc | 1908 os << "\n - jmpbuf: " << jmpbuf(); in WasmContinuationObjectPrint()
|