blob: 46447d77636dff17d77b65a1d566c2c5752e8545 [file] [log] [blame]
/*
******************************************************************************
*
* Copyright (C) 2002, International Business Machines
* Corporation and others. All Rights Reserved.
*
******************************************************************************
* file name: uobject.h
* encoding: US-ASCII
* tab size: 8 (not used)
* indentation:4
*
* created on: 2002jun26
* created by: Markus W. Scherer
*/
#include "unicode/utypes.h"
#include "unicode/uobject.h"
#ifdef U_CPP_MEMORY_TEST
# include "cmemory.h"
#endif
U_NAMESPACE_BEGIN
#ifdef U_CPP_MEMORY_TEST
/*
* Test implementation of UObject::new/delete
* using uprv_malloc() and uprv_free().
* This is used together with a list of imported symbols to verify
* that ICU is not using the global ::new and ::delete operators.
*
* These operators can be implemented like this or any other appropriate way
* when customizing ICU for certain environments.
* Whenever ICU is customized in binary incompatible ways please be sure
* to use library name suffixes to distinguish such libraries from
* the standard build.
*
* Memory test on Windows/MSVC 6:
* The global operators new and delete look as follows:
* 04F 00000000 UNDEF notype () External | ??2@YAPAXI@Z (void * __cdecl operator new(unsigned int))
* 03F 00000000 UNDEF notype () External | ??3@YAXPAX@Z (void __cdecl operator delete(void *))
*
* These lines are from output generated by the MSVC 6 tool dumpbin with
* dumpbin /symbols *.obj
*
* ??2@YAPAXI@Z and ??3@YAXPAX@Z are the linker symbols in the .obj
* files and are imported from msvcrtd.dll (in a debug build).
*
* Make sure that with the UObject operators new and delete defined these two symbols
* do not appear in the dumpbin /symbols output for the ICU libraries!
*
* If such a symbol appears in the output then look in the preceding lines in the output
* for which file and function calls the global new or delete operator,
* and replace with uprv_malloc/uprv_free.
*/
void *UObject::operator new(size_t size) {
return uprv_malloc(size);
}
void *UObject::operator new[](size_t size) {
return uprv_malloc(size);
}
void UObject::operator delete(void *p) {
if(p!=NULL) {
uprv_free(p);
}
}
void UObject::operator delete[](void *p) {
if(p!=NULL) {
uprv_free(p);
}
}
void UObject::operator delete(void *p, size_t /* size */) {
if(p!=NULL) {
uprv_free(p);
}
}
void UObject::operator delete[](void *p, size_t /* size */) {
if(p!=NULL) {
uprv_free(p);
}
}
#endif
U_NAMESPACE_END