mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
move abort.h to include, add namespacing
This commit is contained in:
parent
987af120d8
commit
263c0dee4f
@ -11,6 +11,9 @@
|
|||||||
#ifndef AVIAN_UTIL_ABORT_H
|
#ifndef AVIAN_UTIL_ABORT_H
|
||||||
#define AVIAN_UTIL_ABORT_H
|
#define AVIAN_UTIL_ABORT_H
|
||||||
|
|
||||||
|
namespace avian {
|
||||||
|
namespace util {
|
||||||
|
|
||||||
class Aborter {
|
class Aborter {
|
||||||
public:
|
public:
|
||||||
virtual void NO_RETURN abort() = 0;
|
virtual void NO_RETURN abort() = 0;
|
||||||
@ -37,5 +40,8 @@ inline void assert(T t, bool v) {
|
|||||||
expect(t, v);
|
expect(t, v);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
} // namespace util
|
||||||
|
} // namespace avian
|
||||||
|
|
||||||
#endif // AVIAN_UTIL_ABORT_H
|
#endif // AVIAN_UTIL_ABORT_H
|
@ -12,7 +12,7 @@
|
|||||||
#include <avian/vm/codegen/registers.h>
|
#include <avian/vm/codegen/registers.h>
|
||||||
|
|
||||||
#include "alloc-vector.h"
|
#include "alloc-vector.h"
|
||||||
#include "util/abort.h"
|
#include <avian/util/abort.h>
|
||||||
|
|
||||||
#include "util/runtime-array.h"
|
#include "util/runtime-array.h"
|
||||||
|
|
||||||
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
using namespace vm;
|
using namespace vm;
|
||||||
using namespace avian::codegen;
|
using namespace avian::codegen;
|
||||||
|
using namespace avian::util;
|
||||||
|
|
||||||
namespace local {
|
namespace local {
|
||||||
|
|
||||||
|
@ -14,7 +14,9 @@
|
|||||||
#include <avian/vm/codegen/assembler.h>
|
#include <avian/vm/codegen/assembler.h>
|
||||||
#include <avian/vm/codegen/compiler.h>
|
#include <avian/vm/codegen/compiler.h>
|
||||||
|
|
||||||
#include "codegen/compiler/regalloc.h"
|
#include "regalloc.h"
|
||||||
|
|
||||||
|
using namespace avian::util;
|
||||||
|
|
||||||
namespace avian {
|
namespace avian {
|
||||||
namespace codegen {
|
namespace codegen {
|
||||||
|
@ -16,12 +16,17 @@
|
|||||||
#include <avian/vm/codegen/lir.h>
|
#include <avian/vm/codegen/lir.h>
|
||||||
#include <avian/vm/codegen/registers.h>
|
#include <avian/vm/codegen/registers.h>
|
||||||
|
|
||||||
class Aborter;
|
|
||||||
|
|
||||||
namespace avian {
|
namespace avian {
|
||||||
|
|
||||||
|
namespace util {
|
||||||
|
class Aborter;
|
||||||
|
} // namespace util
|
||||||
|
|
||||||
namespace codegen {
|
namespace codegen {
|
||||||
namespace compiler {
|
namespace compiler {
|
||||||
|
|
||||||
|
using namespace avian::util;
|
||||||
|
|
||||||
class Context;
|
class Context;
|
||||||
class Value;
|
class Value;
|
||||||
class SiteMask;
|
class SiteMask;
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#include <avian/vm/codegen/registers.h>
|
#include <avian/vm/codegen/registers.h>
|
||||||
|
|
||||||
#include "alloc-vector.h"
|
#include "alloc-vector.h"
|
||||||
#include "util/abort.h"
|
#include <avian/util/abort.h>
|
||||||
|
|
||||||
#define CAST1(x) reinterpret_cast<UnaryOperationType>(x)
|
#define CAST1(x) reinterpret_cast<UnaryOperationType>(x)
|
||||||
#define CAST2(x) reinterpret_cast<BinaryOperationType>(x)
|
#define CAST2(x) reinterpret_cast<BinaryOperationType>(x)
|
||||||
@ -21,6 +21,7 @@
|
|||||||
|
|
||||||
using namespace vm;
|
using namespace vm;
|
||||||
using namespace avian::codegen;
|
using namespace avian::codegen;
|
||||||
|
using namespace avian::util;
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#include <avian/vm/codegen/registers.h>
|
#include <avian/vm/codegen/registers.h>
|
||||||
|
|
||||||
#include "util/runtime-array.h"
|
#include "util/runtime-array.h"
|
||||||
#include "util/abort.h"
|
#include <avian/util/abort.h>
|
||||||
|
|
||||||
#define CAST1(x) reinterpret_cast<UnaryOperationType>(x)
|
#define CAST1(x) reinterpret_cast<UnaryOperationType>(x)
|
||||||
#define CAST2(x) reinterpret_cast<BinaryOperationType>(x)
|
#define CAST2(x) reinterpret_cast<BinaryOperationType>(x)
|
||||||
@ -24,6 +24,7 @@
|
|||||||
|
|
||||||
using namespace vm;
|
using namespace vm;
|
||||||
using namespace avian::codegen;
|
using namespace avian::codegen;
|
||||||
|
using namespace avian::util;
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#include "arch.h"
|
#include "arch.h"
|
||||||
|
|
||||||
using namespace vm;
|
using namespace vm;
|
||||||
|
using namespace avian::util;
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
@ -19,6 +19,8 @@
|
|||||||
#include "constants.h"
|
#include "constants.h"
|
||||||
#include "arch.h"
|
#include "arch.h"
|
||||||
|
|
||||||
|
using namespace avian::util;
|
||||||
|
|
||||||
#ifdef PLATFORM_WINDOWS
|
#ifdef PLATFORM_WINDOWS
|
||||||
# define JNICALL __stdcall
|
# define JNICALL __stdcall
|
||||||
#else
|
#else
|
||||||
|
@ -13,11 +13,11 @@
|
|||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "allocator.h"
|
#include "allocator.h"
|
||||||
#include "util/abort.h"
|
#include <avian/util/abort.h>
|
||||||
|
|
||||||
namespace vm {
|
namespace vm {
|
||||||
|
|
||||||
class System : public Aborter {
|
class System : public avian::util::Aborter {
|
||||||
public:
|
public:
|
||||||
typedef intptr_t Status;
|
typedef intptr_t Status;
|
||||||
|
|
||||||
@ -165,7 +165,7 @@ allocate(System* s, unsigned size)
|
|||||||
#define ACQUIRE_MONITOR(t, m) \
|
#define ACQUIRE_MONITOR(t, m) \
|
||||||
System::MonitorResource MAKE_NAME(monitorResource_) (t, m)
|
System::MonitorResource MAKE_NAME(monitorResource_) (t, m)
|
||||||
|
|
||||||
inline Aborter* getAborter(System* s) {
|
inline avian::util::Aborter* getAborter(System* s) {
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user