mirror of
https://github.com/corda/corda.git
synced 2025-01-19 11:16:54 +00:00
move codegen headers to include/
This commit is contained in:
parent
77365dfcc1
commit
987af120d8
@ -14,8 +14,8 @@
|
||||
#include "system.h"
|
||||
#include "zone.h"
|
||||
|
||||
#include "codegen/lir.h"
|
||||
#include "codegen/promise.h"
|
||||
#include <avian/vm/codegen/lir.h>
|
||||
#include <avian/vm/codegen/promise.h>
|
||||
|
||||
namespace avian {
|
||||
namespace codegen {
|
@ -11,7 +11,7 @@
|
||||
#ifndef AVIAN_CODEGEN_TARGETS_H
|
||||
#define AVIAN_CODEGEN_TARGETS_H
|
||||
|
||||
#include "codegen/assembler.h"
|
||||
#include <avian/vm/codegen/assembler.h>
|
||||
|
||||
namespace avian {
|
||||
namespace codegen {
|
@ -8,8 +8,8 @@
|
||||
There is NO WARRANTY for this software. See license.txt for
|
||||
details. */
|
||||
|
||||
#include "codegen/assembler.h"
|
||||
#include "codegen/registers.h"
|
||||
#include <avian/vm/codegen/assembler.h>
|
||||
#include <avian/vm/codegen/registers.h>
|
||||
|
||||
#include "alloc-vector.h"
|
||||
#include "util/abort.h"
|
||||
|
@ -12,9 +12,9 @@
|
||||
|
||||
#include "util/runtime-array.h"
|
||||
|
||||
#include "codegen/compiler.h"
|
||||
#include "codegen/assembler.h"
|
||||
#include "codegen/promise.h"
|
||||
#include <avian/vm/codegen/compiler.h>
|
||||
#include <avian/vm/codegen/assembler.h>
|
||||
#include <avian/vm/codegen/promise.h>
|
||||
|
||||
#include "codegen/compiler/regalloc.h"
|
||||
#include "codegen/compiler/context.h"
|
||||
|
@ -11,8 +11,8 @@
|
||||
#ifndef AVIAN_CODEGEN_COMPILER_CONTEXT_H
|
||||
#define AVIAN_CODEGEN_COMPILER_CONTEXT_H
|
||||
|
||||
#include "codegen/assembler.h"
|
||||
#include "codegen/compiler.h"
|
||||
#include <avian/vm/codegen/assembler.h>
|
||||
#include <avian/vm/codegen/compiler.h>
|
||||
|
||||
#include "codegen/compiler/regalloc.h"
|
||||
|
||||
|
@ -13,8 +13,8 @@
|
||||
|
||||
#include "common.h"
|
||||
|
||||
#include "codegen/lir.h"
|
||||
#include "codegen/registers.h"
|
||||
#include <avian/vm/codegen/lir.h>
|
||||
#include <avian/vm/codegen/registers.h>
|
||||
|
||||
class Aborter;
|
||||
|
||||
|
@ -11,9 +11,8 @@
|
||||
#ifndef AVIAN_CODEGEN_COMPILER_VALUE_H
|
||||
#define AVIAN_CODEGEN_COMPILER_VALUE_H
|
||||
|
||||
#include "codegen/lir.h"
|
||||
|
||||
#include "codegen/compiler.h"
|
||||
#include <avian/vm/codegen/lir.h>
|
||||
#include <avian/vm/codegen/compiler.h>
|
||||
|
||||
namespace avian {
|
||||
namespace codegen {
|
||||
|
@ -8,8 +8,8 @@
|
||||
There is NO WARRANTY for this software. See license.txt for
|
||||
details. */
|
||||
|
||||
#include "codegen/assembler.h"
|
||||
#include "codegen/registers.h"
|
||||
#include <avian/vm/codegen/assembler.h>
|
||||
#include <avian/vm/codegen/registers.h>
|
||||
|
||||
#include "alloc-vector.h"
|
||||
#include "util/abort.h"
|
||||
|
@ -8,7 +8,7 @@
|
||||
There is NO WARRANTY for this software. See license.txt for
|
||||
details. */
|
||||
|
||||
#include "codegen/registers.h"
|
||||
#include <avian/vm/codegen/registers.h>
|
||||
|
||||
namespace avian {
|
||||
namespace codegen {
|
||||
|
@ -8,7 +8,8 @@
|
||||
There is NO WARRANTY for this software. See license.txt for
|
||||
details. */
|
||||
|
||||
#include "codegen/targets.h"
|
||||
#include <avian/vm/codegen/targets.h>
|
||||
|
||||
#include "environment.h"
|
||||
|
||||
namespace avian {
|
||||
|
@ -12,8 +12,8 @@
|
||||
#include "target.h"
|
||||
#include "alloc-vector.h"
|
||||
|
||||
#include "codegen/assembler.h"
|
||||
#include "codegen/registers.h"
|
||||
#include <avian/vm/codegen/assembler.h>
|
||||
#include <avian/vm/codegen/registers.h>
|
||||
|
||||
#include "util/runtime-array.h"
|
||||
#include "util/abort.h"
|
||||
|
@ -13,11 +13,12 @@
|
||||
#include "alloc-vector.h"
|
||||
#include "process.h"
|
||||
#include "target.h"
|
||||
#include "codegen/assembler.h"
|
||||
#include "codegen/compiler.h"
|
||||
#include "codegen/targets.h"
|
||||
#include "arch.h"
|
||||
|
||||
#include <avian/vm/codegen/assembler.h>
|
||||
#include <avian/vm/codegen/compiler.h>
|
||||
#include <avian/vm/codegen/targets.h>
|
||||
|
||||
#include "util/runtime-array.h"
|
||||
|
||||
using namespace vm;
|
||||
|
@ -15,9 +15,9 @@
|
||||
#include "system.h"
|
||||
#include "target.h"
|
||||
|
||||
#include "codegen/assembler.h"
|
||||
#include "codegen/targets.h"
|
||||
#include "codegen/lir.h"
|
||||
#include <avian/vm/codegen/assembler.h>
|
||||
#include <avian/vm/codegen/targets.h>
|
||||
#include <avian/vm/codegen/lir.h>
|
||||
|
||||
#include "test-harness.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user