mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
100 lines
2.7 KiB
C++
100 lines
2.7 KiB
C++
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
debug.h
|
|
|
|
Abstract:
|
|
|
|
Basic debugging support.
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2006-09-11.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _DEBUG_H_
|
|
#define _DEBUG_H_
|
|
|
|
void enable_assertions(bool f);
|
|
bool assertions_enabled();
|
|
|
|
#if 0
|
|
#define _CRTDBG_MAP_ALLOC
|
|
#include<stdlib.h>
|
|
#include<new>
|
|
#include<crtdbg.h>
|
|
#endif
|
|
|
|
#include"error_codes.h"
|
|
#include"warning.h"
|
|
|
|
#ifdef Z3DEBUG
|
|
#define DEBUG_CODE(CODE) { CODE } ((void) 0)
|
|
#else
|
|
#define DEBUG_CODE(CODE) ((void) 0)
|
|
#endif
|
|
|
|
#ifdef _WINDOWS
|
|
#define INVOKE_DEBUGGER() __debugbreak()
|
|
#else
|
|
void invoke_gdb();
|
|
#define INVOKE_DEBUGGER() invoke_gdb()
|
|
#endif
|
|
|
|
void notify_assertion_violation(const char * file_name, int line, const char * condition);
|
|
void enable_debug(const char * tag);
|
|
void disable_debug(const char * tag);
|
|
bool is_debug_enabled(const char * tag);
|
|
|
|
#define SASSERT(COND) DEBUG_CODE(if (assertions_enabled() && !(COND)) { notify_assertion_violation(__FILE__, __LINE__, #COND); INVOKE_DEBUGGER(); })
|
|
#define CASSERT(TAG, COND) DEBUG_CODE(if (assertions_enabled() && is_debug_enabled(TAG) && !(COND)) { notify_assertion_violation(__FILE__, __LINE__, #COND); INVOKE_DEBUGGER(); })
|
|
#define XASSERT(COND, EXTRA_CODE) DEBUG_CODE(if (assertions_enabled() && !(COND)) { notify_assertion_violation(__FILE__, __LINE__, #COND); { EXTRA_CODE } INVOKE_DEBUGGER(); })
|
|
#define UNREACHABLE() DEBUG_CODE(notify_assertion_violation(__FILE__, __LINE__, "UNREACHABLE CODE WAS REACHED."); INVOKE_DEBUGGER();)
|
|
#define NOT_IMPLEMENTED_YET() { std::cerr << "NOT IMPLEMENTED YET!\n"; UNREACHABLE(); exit(ERR_NOT_IMPLEMENTED_YET); } ((void) 0)
|
|
|
|
#ifdef Z3DEBUG
|
|
#define VERIFY(_x_) if (!(_x_)) { \
|
|
std::cerr << "Failed to verify: " << #_x_ << "\n"; \
|
|
UNREACHABLE(); \
|
|
}
|
|
#else
|
|
#define VERIFY(_x_) (_x_)
|
|
#endif
|
|
|
|
#define MAKE_NAME2(LINE) zofty_ ## LINE
|
|
#define MAKE_NAME(LINE) MAKE_NAME2(LINE)
|
|
#define DBG_UNIQUE_NAME MAKE_NAME(__LINE__)
|
|
#define COMPILE_TIME_ASSERT(expr) extern char DBG_UNIQUE_NAME[expr]
|
|
|
|
template<class T>
|
|
class class_invariant
|
|
{
|
|
T* m_class;
|
|
char const* m_module;
|
|
public:
|
|
class_invariant(T* cls) : m_class(cls), m_module(0) {
|
|
SASSERT(cls->invariant());
|
|
}
|
|
class_invariant(T* cls, char const* module) : m_class(cls), m_module(module) {
|
|
CASSERT(module, cls->invariant());
|
|
}
|
|
~class_invariant() {
|
|
if (m_module) {
|
|
CASSERT(m_module, m_class->invariant());
|
|
}
|
|
else {
|
|
SASSERT(m_class->invariant());
|
|
}
|
|
}
|
|
private:
|
|
};
|
|
|
|
void finalize_debug();
|
|
|
|
#endif /* _DEBUG_H_ */
|
|
|