From 89756f21c107d96e6d1bbc75811bd33078c8ceee Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Mon, 4 Mar 2013 16:40:02 -0800 Subject: Rename OatCompilationUnit to Dex.. move to compiler. Some other clean-up to make fields const and private. Change-Id: Icad66e2969385ab1f4125162bcbf8d5fa92d3ed5 --- src/compiler_llvm/compiler_llvm.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/compiler_llvm/compiler_llvm.h') diff --git a/src/compiler_llvm/compiler_llvm.h b/src/compiler_llvm/compiler_llvm.h index 0995a55edd..0470f29c4d 100644 --- a/src/compiler_llvm/compiler_llvm.h +++ b/src/compiler_llvm/compiler_llvm.h @@ -34,7 +34,7 @@ namespace art { class CompiledInvokeStub; class CompiledMethod; class CompilerDriver; - class OatCompilationUnit; + class DexCompilationUnit; namespace mirror { class AbstractMethod; class ClassLoader; @@ -76,12 +76,12 @@ class CompilerLLVM { bitcode_filename_ = filename; } - CompiledMethod* CompileDexMethod(OatCompilationUnit* oat_compilation_unit, + CompiledMethod* CompileDexMethod(DexCompilationUnit* dex_compilation_unit, InvokeType invoke_type); - CompiledMethod* CompileGBCMethod(OatCompilationUnit* oat_compilation_unit, std::string* func); + CompiledMethod* CompileGBCMethod(DexCompilationUnit* dex_compilation_unit, std::string* func); - CompiledMethod* CompileNativeMethod(OatCompilationUnit* oat_compilation_unit); + CompiledMethod* CompileNativeMethod(DexCompilationUnit* dex_compilation_unit); CompiledInvokeStub* CreateInvokeStub(bool is_static, const char *shorty); -- cgit v1.2.3-59-g8ed1b