mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
fe1dffcffd
This is in preparation of reducing headers in Debug.h.
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
/// \file Assert.cpp
|
|
/// Implementation of the various functions to assert and abort.
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include <cassert>
|
|
#include <iostream>
|
|
|
|
#include "llvm/Support/Error.h"
|
|
#include "llvm/Support/Signals.h"
|
|
#include "llvm/Support/raw_os_ostream.h"
|
|
|
|
#include "revng/Support/Assert.h"
|
|
|
|
[[noreturn]] static void terminate(void) {
|
|
abort();
|
|
}
|
|
|
|
static void
|
|
report(const char *Type, const char *File, unsigned Line, const char *What) {
|
|
fprintf(stderr, "%s at %s:%d", Type, File, Line);
|
|
if (What != nullptr)
|
|
fprintf(stderr, ":\n\n%s", What);
|
|
fprintf(stderr, "\n");
|
|
}
|
|
|
|
void revng_assert_fail(const char *AssertionBody,
|
|
const char *Message,
|
|
const char *File,
|
|
unsigned Line) {
|
|
report("Assertion failed", File, Line, Message);
|
|
fprintf(stderr, "\n%s\n", AssertionBody);
|
|
terminate();
|
|
}
|
|
|
|
void revng_check_fail(const char *CheckBody,
|
|
const char *Message,
|
|
const char *File,
|
|
unsigned Line) {
|
|
report("Check failed", File, Line, Message);
|
|
fprintf(stderr, "\n%s\n", CheckBody);
|
|
terminate();
|
|
}
|
|
|
|
void revng_do_abort(const char *Message, const char *File, unsigned Line) {
|
|
report("Abort", File, Line, Message);
|
|
terminate();
|
|
}
|