Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 EXPORT_C int setjmp(jmp_buf __jmpb)
26 // preamble does "push ebp; mov ebp,esp;"
31 _asm mov [eax+12], ebp // caller's ESP
37 _asm mov [eax+32], edx // caller's EBP
39 _asm mov [eax+36], edx // return address EIP
43 EXPORT_C void longjmp(jmp_buf __jmpb, int __retval)
45 __jmpb[10]= (__retval == 0) ? 1 : __retval; // so we can return it after changing ESP/EBP
47 _asm mov ebp, [eax+12]
48 _asm mov esp, ebp // restore setjmp ESP (and leave EBP==ESP)
56 _asm mov edx, [eax+32]
57 _asm mov [ebp], edx // put setjmp caller's EBP back into stack
58 _asm mov edx, [eax+36]
59 _asm mov [ebp+4], edx // put setjmp caller's EIP back into stack
60 _asm mov eax, [eax+40]