@ -713,12 +713,12 @@ CV_EXPORTS InstrNode* getCurrentNode();
if ( : : cv : : instr : : useInstrumentation ( ) ) { \
if ( : : cv : : instr : : useInstrumentation ( ) ) { \
: : cv : : instr : : IntrumentationRegion __instr__ ( # FUN , __FILE__ , __LINE__ , NULL , false , TYPE , IMPL ) ; \
: : cv : : instr : : IntrumentationRegion __instr__ ( # FUN , __FILE__ , __LINE__ , NULL , false , TYPE , IMPL ) ; \
try { \
try { \
auto status = ( ( FUN ) ( __VA_ARGS__ ) ) ; \
auto in strS tatus = ( ( FUN ) ( __VA_ARGS__ ) ) ; \
if ( ERROR_COND ) { \
if ( ERROR_COND ) { \
: : cv : : instr : : getCurrentNode ( ) - > m_payload . m_funError = true ; \
: : cv : : instr : : getCurrentNode ( ) - > m_payload . m_funError = true ; \
CV_INSTRUMENT_MARK_META ( IMPL , # FUN " - BadExit " ) ; \
CV_INSTRUMENT_MARK_META ( IMPL , # FUN " - BadExit " ) ; \
} \
} \
return status ; \
return in strS tatus; \
} catch ( . . . ) { \
} catch ( . . . ) { \
: : cv : : instr : : getCurrentNode ( ) - > m_payload . m_funError = true ; \
: : cv : : instr : : getCurrentNode ( ) - > m_payload . m_funError = true ; \
CV_INSTRUMENT_MARK_META ( IMPL , # FUN " - BadExit " ) ; \
CV_INSTRUMENT_MARK_META ( IMPL , # FUN " - BadExit " ) ; \
@ -759,7 +759,7 @@ CV_EXPORTS InstrNode* getCurrentNode();
// Wrapper region instrumentation macro
// Wrapper region instrumentation macro
# define CV_INSTRUMENT_REGION_IPP(); CV_INSTRUMENT_REGION_META(__FUNCTION__, false, ::cv::instr::TYPE_WRAPPER, ::cv::instr::IMPL_IPP)
# define CV_INSTRUMENT_REGION_IPP(); CV_INSTRUMENT_REGION_META(__FUNCTION__, false, ::cv::instr::TYPE_WRAPPER, ::cv::instr::IMPL_IPP)
// Function instrumentation macro
// Function instrumentation macro
# define CV_INSTRUMENT_FUN_IPP(FUN, ...) CV_INSTRUMENT_FUN_RT_META(::cv::instr::TYPE_FUN, ::cv::instr::IMPL_IPP, status < 0, FUN, __VA_ARGS__)
# define CV_INSTRUMENT_FUN_IPP(FUN, ...) CV_INSTRUMENT_FUN_RT_META(::cv::instr::TYPE_FUN, ::cv::instr::IMPL_IPP, in strS tatus < 0, FUN, __VA_ARGS__)
// Diagnostic markers
// Diagnostic markers
# define CV_INSTRUMENT_MARK_IPP(NAME) CV_INSTRUMENT_MARK_META(::cv::instr::IMPL_IPP, NAME)
# define CV_INSTRUMENT_MARK_IPP(NAME) CV_INSTRUMENT_MARK_META(::cv::instr::IMPL_IPP, NAME)