From 68a5fefa90f03fdf5a238ac85c9439c6b03eae96 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Tue, 18 Feb 2014 16:43:35 +0000 Subject: Initial check-in of an optimizing compiler. The classes and the names are very much inspired by V8/Dart. It currently only supports the RETURN_VOID dex instruction, and there is a pretty printer to check if the building of the graph is correct. Change-Id: Id5ef1b317ab997010d4e3888e456c26bef1ab9c0 --- compiler/dex/backend.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'compiler/dex/backend.h') diff --git a/compiler/dex/backend.h b/compiler/dex/backend.h index 01959b77f5..596b3c9802 100644 --- a/compiler/dex/backend.h +++ b/compiler/dex/backend.h @@ -17,11 +17,11 @@ #ifndef ART_COMPILER_DEX_BACKEND_H_ #define ART_COMPILER_DEX_BACKEND_H_ -#include "compiled_method.h" -#include "arena_allocator.h" - namespace art { +class ArenaAllocator; +class CompiledMethod; + class Backend { public: virtual ~Backend() {} -- cgit v1.2.3-59-g8ed1b