diff options
| author | 2012-06-29 15:18:35 -0700 | |
|---|---|---|
| committer | 2012-06-29 15:18:35 -0700 | |
| commit | 76592633b491e294d78db2c4dbc44ca679004b71 (patch) | |
| tree | e836e4fb045e400b09326bd3228e7e6f8f416a6e /src/compiler/Frontend.cc | |
| parent | 101305f7ca3da8c665e3c5f7cdf9e1f22f009567 (diff) | |
Quick compiler: conversions, bug fixes
Added support for the remaining conversions, misc. bugs fixed. Still
left is switch support, rework of type handling and lots of bug
fixes.
Change-Id: Ib370a4176555d628f222e35776e0b3f0be8de0c4
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; } |