Merge branch 'master' into wip

Conflicts:
	makefile
	src/codegen/arm/assembler.cpp
	src/codegen/powerpc/assembler.cpp
	src/codegen/x86/assembler.cpp
This commit is contained in:
Joshua Warner
2013-02-27 19:27:07 -07:00
124 changed files with 3345 additions and 1122 deletions

View File

@ -12,7 +12,7 @@
#define AVIAN_CODEGEN_ASSEMBLER_H
#include <avian/vm/system/system.h>
#include "zone.h"
#include "avian/zone.h"
#include <avian/vm/codegen/lir.h>
#include <avian/vm/codegen/promise.h>

View File

@ -12,7 +12,7 @@
#define AVIAN_CODEGEN_COMPILER_H
#include <avian/vm/system/system.h>
#include "zone.h"
#include "avian/zone.h"
#include "assembler.h"
namespace avian {

View File

@ -11,7 +11,7 @@
#ifndef AVIAN_CODEGEN_PROMISE_H
#define AVIAN_CODEGEN_PROMISE_H
#include "allocator.h"
#include "avian/allocator.h"
namespace avian {
namespace codegen {

View File

@ -11,7 +11,7 @@
#ifndef AVIAN_CODEGEN_REGISTERS_H
#define AVIAN_CODEGEN_REGISTERS_H
#include "common.h"
#include "avian/common.h"
namespace avian {
namespace codegen {