blob: 54da446e6d5e2cfcf98fc5721756b1da810ffd82 [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 Sehrc431b9d2018-03-02 12:01:51 -080022#include "base/utils.h"
David Sehr9e734c72018-01-04 17:56:19 -080023#include "dex/code_item_accessors-inl.h"
Andreas Gampe3f1dcd32018-12-28 09:39:56 -080024#include "dex/dex_file.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070025#include "driver/compiler_driver.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070026#include "optimizing/optimizing_compiler.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000027
28namespace art {
29
Ian Rogers72d32622014-05-06 16:20:11 -070030Compiler* Compiler::Create(CompilerDriver* driver, Compiler::Kind kind) {
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000031 switch (kind) {
32 case kQuick:
Nicolas Geoffray3c94f092016-03-21 17:10:24 +000033 // TODO: Remove Quick in options.
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000034 case kOptimizing:
Andreas Gampe53c913b2014-08-12 23:19:23 -070035 return CreateOptimizingCompiler(driver);
36
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000037 default:
38 LOG(FATAL) << "UNREACHABLE";
Ian Rogers2c4257b2014-10-24 14:20:06 -070039 UNREACHABLE();
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000040 }
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000041}
42
Andreas Gampe3f1dcd32018-12-28 09:39:56 -080043bool Compiler::IsPathologicalCase(const dex::CodeItem& code_item,
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +000044 uint32_t method_idx,
45 const DexFile& dex_file) {
46 /*
47 * Skip compilation for pathologically large methods - either by instruction count or num vregs.
48 * Dalvik uses 16-bit uints for instruction and register counts. We'll limit to a quarter
49 * of that, which also guarantees we cannot overflow our 16-bit internal Quick SSA name space.
50 */
Mathieu Chartier698ebbc2018-01-05 11:00:42 -080051 CodeItemDataAccessor accessor(dex_file, &code_item);
Mathieu Chartier808c7a52017-12-15 11:19:33 -080052 if (accessor.InsnsSizeInCodeUnits() >= UINT16_MAX / 4) {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +000053 LOG(INFO) << "Method exceeds compiler instruction limit: "
Mathieu Chartier808c7a52017-12-15 11:19:33 -080054 << accessor.InsnsSizeInCodeUnits()
David Sehr709b0702016-10-13 09:12:37 -070055 << " in " << dex_file.PrettyMethod(method_idx);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +000056 return true;
57 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -080058 if (accessor.RegistersSize() >= UINT16_MAX / 4) {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +000059 LOG(INFO) << "Method exceeds compiler virtual register limit: "
Mathieu Chartier808c7a52017-12-15 11:19:33 -080060 << accessor.RegistersSize() << " in " << dex_file.PrettyMethod(method_idx);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +000061 return true;
62 }
63 return false;
64}
65
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000066} // namespace art