Changeset 21427
- Timestamp:
- Aug 27, 2010, 2:20:14 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/include/excpt.h ¶
r21387 r21427 49 49 #define __try \ 50 50 volatile __seh_PEXCEPTION_FRAME __seh_frame; \ 51 __seh_frame.Pointers.ExceptionRecord = NULL; \ 52 __seh_frame.Pointers.ContextRecord = NULL; \ 51 53 __seh_frame.state = 0; \ 52 54 __asm__("\n0:\n"); /* pFilterCallback */ \ -
TabularUnified trunk/src/kernel32/seh/makefile ¶
r21381 r21427 29 29 # 30 30 OBJS = \ 31 $(OBJDIR)\seh.obj \ 31 32 $(OBJDIR)\sehutil.obj 32 33 -
TabularUnified trunk/src/kernel32/seh/sehutil.s ¶
r21383 r21427 64 64 /* save the handler's stack on heap */ 65 65 movl %ecx, %eax /* size_t */ 66 subl $ 16, %esp66 subl $4, %esp 67 67 movl %eax, 0(%esp) 68 68 call odin_malloc /* _Optlink, rtl, EAX/EDX/ECX-in, caller cleans stack */ 69 addl $ 16, %esp69 addl $4, %esp 70 70 testl %eax, %eax 71 71 je ___seh_handler_Error /* No memory! */ … … 77 77 78 78 /* prepare a jump to the filter callback */ 79 movl 12(%ebp), %eax 80 79 subl $12, %esp 80 movl 12(%ebp), %ebx 81 movl %ebx, 0(%esp) 81 82 movl 8(%ebp), %ebx 82 movl %ebx, 4 8(%eax) /* pFrame->Pointers.ExceptionRecord */83 movl %ebx, 4(%esp) 83 84 movl 16(%ebp), %ebx 84 movl %ebx, 52(%eax) /* pFrame->Pointers.ContextRecord */ 85 movl %ebx, 8(%esp) 86 call ___seh_makePointers /* _cdecl, rtl, caller cleans stack */ 87 addl $12, %esp 85 88 86 89 /* restore __try/__catch context */ 90 movl 12(%ebp), %eax 87 91 movl 24(%eax), %ebx /* pFrame->pTryRegs */ 88 92 movl 28(%eax), %esi … … 109 113 popl %ebp 110 114 111 /* free heap block */112 movl 16(%ebx), %eax /* pFrame->pHandlerContext*/113 subl $ 16, %esp115 /* free heap blocks */ 116 movl 52(%ebx), %eax /* pFrame->Pointers.ContextRecord */ 117 subl $4, %esp 114 118 movl %eax, 0(%esp) 115 119 call odin_free /* _Optlink, rtl, EAX/EDX/ECX-in, caller cleans stack */ 116 addl $16, %esp 120 addl $4, %esp 121 122 movl 48(%ebx), %eax /* pFrame->Pointers.ExceptionRecord */ 123 subl $4, %esp 124 movl %eax, 0(%esp) 125 call odin_free /* _Optlink, rtl, EAX/EDX/ECX-in, caller cleans stack */ 126 addl $4, %esp 127 128 movl 16(%ebx), %eax /* pFrame->pHandlerContext */ 129 subl $4, %esp 130 movl %eax, 0(%esp) 131 call odin_free /* _Optlink, rtl, EAX/EDX/ECX-in, caller cleans stack */ 132 addl $4, %esp 117 133 118 134 /* analyze filter result */
Note:
See TracChangeset
for help on using the changeset viewer.