From 76592633b491e294d78db2c4dbc44ca679004b71 Mon Sep 17 00:00:00 2001 From: buzbee Date: Fri, 29 Jun 2012 15:18:35 -0700 Subject: 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 --- src/compiler/Frontend.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/compiler/Frontend.cc') 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; } -- cgit v1.2.3-59-g8ed1b