blob: 7c7ae71d773799d9bf6f54793906c4be1ac292a2 [file] [log] [blame]
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "compiler.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000018
Andreas Gampe57943812017-12-06 21:39:13 -080019#include <android-base/logging.h>
20
21#include "base/macros.h"
David Sehr9e734c72018-01-04 17:56:19 -080022#include "dex/code_item_accessors-inl.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070023#include "driver/compiler_driver.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070024#include "optimizing/optimizing_compiler.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010025#include "utils.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000026
27namespace art {
28
Ian Rogers72d32622014-05-06 16:20:11 -070029Compiler* Compiler::Create(CompilerDriver* driver, Compiler::Kind kind) {
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000030 switch (kind) {
31 case kQuick:
Nicolas Geoffray3c94f092016-03-21 17:10:24 +000032 // TODO: Remove Quick in options.
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000033 case kOptimizing:
Andreas Gampe53c913b2014-08-12 23:19:23 -070034 return CreateOptimizingCompiler(driver);
35
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000036 default:
37 LOG(FATAL) << "UNREACHABLE";
Ian Rogers2c4257b2014-10-24 14:20:06 -070038 UNREACHABLE();
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000039 }
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000040}
41
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +000042bool Compiler::IsPathologicalCase(const DexFile::CodeItem& code_item,
43 uint32_t method_idx,
44 const DexFile& dex_file) {
45 /*
46 * Skip compilation for pathologically large methods - either by instruction count or num vregs.
47 * Dalvik uses 16-bit uints for instruction and register counts. We'll limit to a quarter
48 * of that, which also guarantees we cannot overflow our 16-bit internal Quick SSA name space.
49 */
Mathieu Chartier698ebbc2018-01-05 11:00:42 -080050 CodeItemDataAccessor accessor(dex_file, &code_item);
Mathieu Chartier808c7a52017-12-15 11:19:33 -080051 if (accessor.InsnsSizeInCodeUnits() >= UINT16_MAX / 4) {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +000052 LOG(INFO) << "Method exceeds compiler instruction limit: "
Mathieu Chartier808c7a52017-12-15 11:19:33 -080053 << accessor.InsnsSizeInCodeUnits()
David Sehr709b0702016-10-13 09:12:37 -070054 << " in " << dex_file.PrettyMethod(method_idx);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +000055 return true;
56 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -080057 if (accessor.RegistersSize() >= UINT16_MAX / 4) {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +000058 LOG(INFO) << "Method exceeds compiler virtual register limit: "
Mathieu Chartier808c7a52017-12-15 11:19:33 -080059 << accessor.RegistersSize() << " in " << dex_file.PrettyMethod(method_idx);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +000060 return true;
61 }
62 return false;
63}
64
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000065} // namespace art