mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r16869] Description:
Reduce overhead for func enter/leave & error handling macros. (Reduces object code size by ~20% for production/~10% for debug, with gcc) Tested on: Mac OS X/32 10.5.6 (amazon) (Too minor to require h5committest)
This commit is contained in:
parent
808390dbd9
commit
8ae072d760
@ -40,7 +40,7 @@ typedef struct H5E_t H5E_t;
|
||||
*/
|
||||
#define HCOMMON_ERROR(maj, min, str) \
|
||||
HERROR(maj, min, str); \
|
||||
(void)H5E_dump_api_stack((hbool_t)H5_IS_API(FUNC));
|
||||
err_occurred = TRUE;
|
||||
|
||||
/*
|
||||
* HDONE_ERROR macro, used to facilitate error reporting between a
|
||||
|
@ -1741,6 +1741,7 @@ static herr_t H5_INTERFACE_INIT_FUNC(void);
|
||||
|
||||
#define FUNC_ENTER_COMMON(func_name,asrt) \
|
||||
static const char FUNC[]=#func_name; \
|
||||
hbool_t err_occurred = FALSE; \
|
||||
FUNC_ENTER_COMMON_NOFUNC(func_name,asrt);
|
||||
|
||||
/* Threadsafety initialization code for API routines */
|
||||
@ -1910,7 +1911,9 @@ static herr_t H5_INTERFACE_INIT_FUNC(void);
|
||||
#define FUNC_LEAVE_API(ret_value) \
|
||||
FINISH_MPE_LOG; \
|
||||
H5TRACE_RETURN(ret_value); \
|
||||
H5_POP_FUNC \
|
||||
H5_POP_FUNC \
|
||||
if(err_occurred) \
|
||||
(void)H5E_dump_api_stack(TRUE); \
|
||||
FUNC_LEAVE_API_THREADSAFE \
|
||||
return (ret_value); \
|
||||
} /*end scope from end of FUNC_ENTER*/ \
|
||||
@ -1919,6 +1922,8 @@ static herr_t H5_INTERFACE_INIT_FUNC(void);
|
||||
#define FUNC_LEAVE_API_NOFS(ret_value) \
|
||||
FINISH_MPE_LOG; \
|
||||
H5TRACE_RETURN(ret_value); \
|
||||
if(err_occurred) \
|
||||
(void)H5E_dump_api_stack(TRUE); \
|
||||
FUNC_LEAVE_API_THREADSAFE \
|
||||
return (ret_value); \
|
||||
} /*end scope from end of FUNC_ENTER*/ \
|
||||
|
Loading…
x
Reference in New Issue
Block a user