diff options
| author | 2012-07-02 08:56:57 -0700 | |
|---|---|---|
| committer | 2012-07-02 08:56:57 -0700 | |
| commit | fbfc9a480fb5b31b0ca52449b0ce5a45c8cd377d (patch) | |
| tree | 694dedba0a0435801a909dfee79a59524d10f8ec /src/compiler/Frontend.cc | |
| parent | 0ec569a3e653e0358fcb59c89f2aad708843db53 (diff) | |
| parent | 76592633b491e294d78db2c4dbc44ca679004b71 (diff) | |
Merge "Quick compiler: conversions, bug fixes" into ics-mr1-plus-art
Diffstat (limited to 'src/compiler/Frontend.cc')
| -rw-r--r-- | src/compiler/Frontend.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/compiler/Frontend.cc b/src/compiler/Frontend.cc index 140f6811f3..d617be56db 100644 --- a/src/compiler/Frontend.cc +++ b/src/compiler/Frontend.cc @@ -759,6 +759,11 @@ CompiledMethod* oatCompileMethod(Compiler& compiler, #if defined(ART_USE_QUICK_COMPILER) // TODO: remove - temp for Quick compiler bring-up if ((PrettyMethod(method_idx, dex_file).find("fibonacci") != std::string::npos) + || (PrettyMethod(method_idx, dex_file).find("Array") != std::string::npos) + || (PrettyMethod(method_idx, dex_file).find("Monitor") != std::string::npos) + || (PrettyMethod(method_idx, dex_file).find("InternedString") != std::string::npos) + || (PrettyMethod(method_idx, dex_file).find("StaticField") != std::string::npos) + || (PrettyMethod(method_idx, dex_file).find("UnresClass") != std::string::npos) || (PrettyMethod(method_idx, dex_file).find("HelloWorld") != std::string::npos) || (PrettyMethod(method_idx, dex_file).find("count10_006") != std::string::npos) || (PrettyMethod(method_idx, dex_file).find("exceptions_007") != std::string::npos) @@ -775,6 +780,7 @@ CompiledMethod* oatCompileMethod(Compiler& compiler, || (PrettyMethod(method_idx, dex_file).find("shiftTest1") != std::string::npos) || (PrettyMethod(method_idx, dex_file).find("shiftTest2") != std::string::npos) || (PrettyMethod(method_idx, dex_file).find("unsignedShiftTest") != std::string::npos) + || (PrettyMethod(method_idx, dex_file).find("convTest") != std::string::npos) ) { cUnit->genBitcode = true; } |