Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 # include "stlport_prefix.h"
22 //#include <typeinfo.h>
25 #include "libstdcppwsd.h"
28 const TUid KLibstdcppUID = {0x10282872};
40 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
50 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
51 extern void CallCloseStdLib();
54 _STLP_EXP_DECLSPEC void LibStdCppInit()
56 //Create Cleanup Stack
57 CTrapCleanup* pCleanup = CTrapCleanup::New();
67 _STLP_EXP_DECLSPEC type_info::~type_info () {}
70 _STLP_EXP_DECLSPEC bad_cast::~bad_cast() throw() { }
72 _STLP_EXP_DECLSPEC bad_typeid::~bad_typeid() throw() { }
75 // return true if this is a type_info for a pointer type
76 _STLP_EXP_DECLSPEC bool type_info::__is_pointer_p () const
81 _STLP_EXP_DECLSPEC bool type_info::__is_function_p () const
86 _STLP_EXP_DECLSPEC bool type_info::__do_catch (const type_info *thr_type, void **, unsigned) const
88 return *this == *thr_type;
94 _STLP_EXP_DECLSPEC new_handler set_new_handler(new_handler pnew) __NO_THROW
96 new_handler& phandler = get_new_handler();
97 new_handler phold = phandler;
107 init_libcpp_wsdvar(_Libcpp_wsd* g_libcpp_wsd)
109 g_libcpp_wsd->is_Initialized = false;
114 void* GetGlobalTlsData()
116 return Pls<_Libcpp_wsd>(KLibstdcppUID, &init_libcpp_wsdvar);
119 void SetGlobalTlsData(void* aData)
121 SetPls(aData, KLibstdcppUID);
124 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
125 void* SetBackendHeap()
128 RHeap* oldHeap = User::SwitchHeap( Backend()->Heap() ); // From now, new allocates memory form backend heap
130 return (void*)oldHeap;
134 void ReSetUserHeap(void* oldHeap)
137 User::SwitchHeap( (RHeap*)oldHeap);
145 _STLP_EXP_DECLSPEC void CloseStdLibCpp()
147 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
148 std::CallCloseStdLib();
155 _STLP_EXP_DECLSPEC void *operator new(unsigned int aSize)__NO_THROW
159 __y = _STLP_NEW(aSize);
163 new_handler& phandler = get_new_handler();
165 _STLP_THROW(bad_alloc());
172 _STLP_EXP_DECLSPEC void *operator new[](unsigned int aSize)__NO_THROW
174 return ::operator new(aSize);
177 _STLP_EXP_DECLSPEC void operator delete(void* aPtr) __NO_THROW
184 _STLP_EXP_DECLSPEC void operator delete[](void* aPtr) __NO_THROW
186 ::operator delete(aPtr);
189 _STLP_EXP_DECLSPEC void* operator new(unsigned int aSize, const std::nothrow_t& /*aNoThrow*/) __NO_THROW
191 void* __y = _STLP_NEW(aSize);
194 new_handler& phandler = get_new_handler();
201 _STLP_EXP_DECLSPEC void* operator new[](unsigned int aSize, const std::nothrow_t& aNoThrow) __NO_THROW
203 return operator new (aSize, aNoThrow);
206 _STLP_EXP_DECLSPEC void operator delete(void* aPtr, const std::nothrow_t& /*aNoThrow*/) __NO_THROW
208 operator delete(aPtr);
211 _STLP_EXP_DECLSPEC void operator delete[](void* aPtr, const std::nothrow_t& /*aNoThrow*/) __NO_THROW
213 operator delete(aPtr);