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.
18 //Suppressing RVCT compiler warning:
19 // "Warning: #830-D: function "RHeap::operator new" has no corresponding operator delete (to be called if an exception
20 // is thrown during initialization of an allocated object)
21 // __declspec(dllimport) TAny* operator new(TUint aSize, TAny* aBase) throw();"
22 #pragma diag_suppress 830
26 #pragma diag_default 830
30 EXPORT_C __NAKED__ int setjmp(jmp_buf __jmpb)
32 #if defined( __MARM_THUMB__) && __GCC32__
33 asm("stmia r0!, {r4-r7}");
40 asm("stmia r0!, {r2-r7}");
42 asm("stmia r0, {r4-r11, sp, lr} "); // Save the context */
48 EXPORT_C __NAKED__ void longjmp(jmp_buf __jmpb, int __retval)
50 #if defined( __MARM_THUMB__) && __GCC32__
51 asm("mov r3, r0"); // save the jmp_buf pointer
52 asm("add r3, #16"); //add on 16 to get to high registers
53 asm("ldmia r3!, {r4-r7}");
58 asm("ldmia r3!, {r4-r5}"); //get sp and lr
61 asm("mov r3, r0"); //get the jmp_buf ptr again
62 asm("ldmia r3!, {r4-r7}"); //and restore the lo regs
63 asm("mov r0, r1"); // return(__retval)
69 asm("ldmia r0, {r4-r11, sp, lr} "); // Restore the context
70 asm("movs r0, r1"); // return(__retval == 0 ? 1 : retval)