summaryrefslogtreecommitdiff
path: root/src/compiler_llvm/compiler_llvm.h
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2013-03-04 16:40:02 -0800
committer Ian Rogers <irogers@google.com> 2013-03-04 16:44:57 -0800
commit89756f21c107d96e6d1bbc75811bd33078c8ceee (patch)
tree952c5df22b0eaf6c4a01b78259db04f3797c8c17 /src/compiler_llvm/compiler_llvm.h
parent219b5a847ef74be5d3de4c16a29ec6413cc42af1 (diff)
Rename OatCompilationUnit to Dex.. move to compiler.
Some other clean-up to make fields const and private. Change-Id: Icad66e2969385ab1f4125162bcbf8d5fa92d3ed5
Diffstat (limited to 'src/compiler_llvm/compiler_llvm.h')
-rw-r--r--src/compiler_llvm/compiler_llvm.h8
1 files changed, 4 insertions, 4 deletions
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);