summaryrefslogtreecommitdiffstats
path: root/compiler/driver/compiler_driver.cc
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
-rw-r--r--compiler/driver/compiler_driver.cc14
1 files changed, 8 insertions, 6 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc
index bdf31ce..c2b6f5a 100644
--- a/compiler/driver/compiler_driver.cc
+++ b/compiler/driver/compiler_driver.cc
@@ -1869,12 +1869,14 @@ void CompilerDriver::CompileMethod(const DexFile::CodeItem* code_item, uint32_t
uint64_t start_ns = NanoTime();
if ((access_flags & kAccNative) != 0) {
-#if defined(__x86_64__)
- // leaving this empty will trigger the generic JNI version
-#else
- compiled_method = compiler_->JniCompile(*this, access_flags, method_idx, dex_file);
- CHECK(compiled_method != NULL);
-#endif
+ // Are we only interpreting only and have support for generic JNI down calls?
+ if ((compiler_options_->GetCompilerFilter() == CompilerOptions::kInterpretOnly) &&
+ (instruction_set_ == kX86_64)) {
+ // Leaving this empty will trigger the generic JNI version
+ } else {
+ compiled_method = compiler_->JniCompile(*this, access_flags, method_idx, dex_file);
+ CHECK(compiled_method != NULL);
+ }
} else if ((access_flags & kAccAbstract) != 0) {
} else {
MethodReference method_ref(&dex_file, method_idx);