mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-13 22:20:46 +00:00
523fd0bf3a
This reverts commit 747b3dfcfe
.
# Conflicts:
# libraries/asmjit/asmjit/core/compiler.h
This had to be reverted because it breaks exception handling which is a critical problem.
With the updated code any exception thrown inside code that had a JITed call stack would crash.
34 lines
806 B
C
34 lines
806 B
C
// [AsmJit]
|
|
// Complete x86/x64 JIT and Remote Assembler for C++.
|
|
//
|
|
// [License]
|
|
// Zlib - See LICENSE.md file in the package.
|
|
|
|
// [Guard]
|
|
#ifndef _ASMJIT_BASE_H
|
|
#define _ASMJIT_BASE_H
|
|
|
|
// [Dependencies]
|
|
#include "./base/arch.h"
|
|
#include "./base/assembler.h"
|
|
#include "./base/codebuilder.h"
|
|
#include "./base/codecompiler.h"
|
|
#include "./base/codeemitter.h"
|
|
#include "./base/codeholder.h"
|
|
#include "./base/constpool.h"
|
|
#include "./base/cpuinfo.h"
|
|
#include "./base/func.h"
|
|
#include "./base/globals.h"
|
|
#include "./base/inst.h"
|
|
#include "./base/logging.h"
|
|
#include "./base/operand.h"
|
|
#include "./base/osutils.h"
|
|
#include "./base/runtime.h"
|
|
#include "./base/simdtypes.h"
|
|
#include "./base/string.h"
|
|
#include "./base/utils.h"
|
|
#include "./base/vmem.h"
|
|
#include "./base/zone.h"
|
|
|
|
// [Guard]
|
|
#endif // _ASMJIT_BASE_H
|