From 8ca100552be43ed11351a27497e3581abb055311 Mon Sep 17 00:00:00 2001 From: TDYa127 Date: Sat, 5 May 2012 19:57:06 -0700 Subject: TBAA, separate RuntimeInfo and JRuntime. Change-Id: Ia540883349e2699503d7eeb1d4b602beeb74510f --- src/compiler_llvm/jni_compiler.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/compiler_llvm/jni_compiler.cc') diff --git a/src/compiler_llvm/jni_compiler.cc b/src/compiler_llvm/jni_compiler.cc index 4994e69336..1fa0ce76b8 100644 --- a/src/compiler_llvm/jni_compiler.cc +++ b/src/compiler_llvm/jni_compiler.cc @@ -90,7 +90,7 @@ CompiledMethod* JniCompiler::Compile() { irb_.LoadFromObjectOffset(method_object_addr, Method::DeclaringClassOffset().Int32Value(), irb_.getJObjectTy(), - kTBAARuntimeInfo); + kTBAAJRuntime); } // Actual argument (ignore method and this object) arg_begin = arg_iter; @@ -143,7 +143,7 @@ CompiledMethod* JniCompiler::Compile() { irb_.LoadFromObjectOffset(thread_object_addr, Thread::JniEnvOffset().Int32Value(), irb_.getJObjectTy(), - kTBAARuntimeInfo); + kTBAAJRuntime); // Set thread state to kNative irb_.StoreToObjectOffset(thread_object_addr, @@ -156,7 +156,7 @@ CompiledMethod* JniCompiler::Compile() { irb_.LoadFromObjectOffset(method_object_addr, Method::NativeMethodOffset().Int32Value(), GetFunctionType(method_idx_, is_static, true)->getPointerTo(), - kTBAARuntimeInfo); + kTBAAJRuntime); // Load actual parameters std::vector args; -- cgit v1.2.3-59-g8ed1b