Changeset 21859
- Timestamp:
- Dec 7, 2011, 7:45:52 PM (13 years ago)
- Location:
- branches/gcc-kmk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/gcc-kmk/include/os2wrap.h ¶
r21804 r21859 19 19 #define INCL_LONGLONG_STRUCTS 20 20 21 #else // ifndef USE_OS2_TOOLKIT_HEADERS 22 23 #undef _Pascal 24 #define _Pascal _System // For Vio/Kbd/Mou 25 21 26 #endif // ifndef USE_OS2_TOOLKIT_HEADERS 22 27 -
TabularUnified branches/gcc-kmk/src/kernel32/exceptions.cpp ¶
r21838 r21859 182 182 183 183 /***************************************************************************** 184 * Name : VOID _ Pascal OS2RaiseException184 * Name : VOID __cdecl OS2RaiseException 185 185 * Purpose : Unwinds exception handlers (heavily influenced by Wine) 186 186 * Parameters: ... … … 195 195 void WIN32API RtlRaiseException(WINEXCEPTION_RECORD *rec, WINCONTEXT *context); 196 196 197 VOID _ Pascal OS2RaiseException(DWORD dwExceptionCode,197 VOID __cdecl OS2RaiseException(DWORD dwExceptionCode, 198 198 DWORD dwExceptionFlags, 199 199 DWORD cArguments, … … 442 442 } 443 443 /***************************************************************************** 444 * Name : int _ Pascal OS2RtlUnwind444 * Name : int __cdecl OS2RtlUnwind 445 445 * Purpose : Unwinds exception handlers (heavily influenced by Wine) 446 446 * Parameters: ... … … 453 453 *****************************************************************************/ 454 454 455 int _ Pascal OS2RtlUnwind(PWINEXCEPTION_FRAME pEndFrame,455 int __cdecl OS2RtlUnwind(PWINEXCEPTION_FRAME pEndFrame, 456 456 LPVOID unusedEip, 457 457 PWINEXCEPTION_RECORD pRecord, -
TabularUnified branches/gcc-kmk/src/kernel32/exceptutil.asm ¶
r21838 r21859 40 40 _RaiseException@16 proc near 41 41 42 ifdef __GNUC__43 42 ; _OS2RaiseException is _cdecl 44 43 … … 83 82 pop eax 84 83 pop ebp 85 else86 ; _OS2RaiseException _Pascal87 push dword ptr [esp+4] ;DWORD dwExceptionCode88 push dword ptr [esp+12] ;DWORD dwExceptionFlags89 push dword ptr [esp+20] ;DWORD cArguments90 push dword ptr [esp+28] ;DWORD *lpArguments91 push dword ptr [esp+16] ;return address92 push esp93 add dword ptr [esp], 2094 push ebp95 pushfd96 push eax97 push ebx98 push ecx99 push edx100 push edi101 push esi102 xor eax, eax103 mov eax, cs104 push eax105 mov eax, ds106 push eax107 mov eax, es108 push eax109 mov eax, fs110 push eax111 mov eax, gs112 push eax113 mov eax, ss114 push eax115 call _OS2RaiseException116 endif117 84 118 85 ret 16 ;__stdcall … … 126 93 _RtlUnwind@16 proc near 127 94 128 ifdef __GNUC__129 95 ; OS2RtlUnwind is _cdecl 130 96 … … 169 135 pop eax 170 136 pop ebp 171 else172 ; OS2RtlUnwind is _Pascal173 push dword ptr [esp+4] ;PWINEXCEPTION_FRAME pEndFrame174 push dword ptr [esp+12] ;LPVOID unusedEip175 push dword ptr [esp+20] ;PWINEXCEPTION_RECORD pRecord176 push dword ptr [esp+28] ;DWORD returnEax177 push dword ptr [esp+16] ;return address178 push esp179 add dword ptr [esp], 20180 push ebp181 pushfd182 push eax183 push ebx184 push ecx185 push edx186 push edi187 push esi188 xor eax, eax189 mov eax, cs190 push eax191 mov eax, ds192 push eax193 mov eax, es194 push eax195 mov eax, fs196 push eax197 mov eax, gs198 push eax199 mov eax, ss200 push eax201 call _OS2RtlUnwind202 endif203 137 204 138 ret 16 ;__stdcall
Note:
See TracChangeset
for help on using the changeset viewer.