blob: 286f48a183cc3a3b2e89c4afa5b59a6920b1cbab [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
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010017#include <fstream>
Nicolas Geoffray787c3072014-03-17 10:20:19 +000018#include <stdint.h>
19
20#include "builder.h"
21#include "code_generator.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000022#include "compilers.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000023#include "driver/compiler_driver.h"
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000024#include "driver/dex_compilation_unit.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010025#include "graph_visualizer.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000026#include "nodes.h"
Nicolas Geoffray804d0932014-05-02 08:46:00 +010027#include "ssa_liveness_analysis.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000028#include "utils/arena_allocator.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000029
30namespace art {
31
Nicolas Geoffray787c3072014-03-17 10:20:19 +000032/**
33 * Used by the code generator, to allocate the code in a vector.
34 */
35class CodeVectorAllocator FINAL : public CodeAllocator {
36 public:
37 CodeVectorAllocator() { }
38
39 virtual uint8_t* Allocate(size_t size) {
40 size_ = size;
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000041 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000042 return &memory_[0];
43 }
44
45 size_t GetSize() const { return size_; }
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000046 const std::vector<uint8_t>& GetMemory() const { return memory_; }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000047
48 private:
49 std::vector<uint8_t> memory_;
50 size_t size_;
51
52 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
53};
54
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010055/**
56 * If set to true, generates a file suitable for the c1visualizer tool and IRHydra.
57 */
58static bool kIsVisualizerEnabled = false;
59
60/**
61 * Filter to apply to the visualizer. Methods whose name contain that filter will
62 * be in the file.
63 */
64static const char* kStringFilter = "";
65
66OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver) : QuickCompiler(driver) {
67 if (kIsVisualizerEnabled) {
68 visualizer_output_.reset(new std::ofstream("art.cfg"));
69 }
70}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000071
Ian Rogers72d32622014-05-06 16:20:11 -070072CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_item,
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000073 uint32_t access_flags,
74 InvokeType invoke_type,
75 uint16_t class_def_idx,
76 uint32_t method_idx,
77 jobject class_loader,
78 const DexFile& dex_file) const {
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000079 DexCompilationUnit dex_compilation_unit(
80 nullptr, class_loader, art::Runtime::Current()->GetClassLinker(), dex_file, code_item,
Ian Rogers72d32622014-05-06 16:20:11 -070081 class_def_idx, method_idx, access_flags,
82 GetCompilerDriver()->GetVerifiedMethod(&dex_file, method_idx));
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000083
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000084 // For testing purposes, we put a special marker on method names that should be compiled
85 // with this compiler. This makes sure we're not regressing.
86 bool shouldCompile = dex_compilation_unit.GetSymbol().find("00024opt_00024") != std::string::npos;
87
Nicolas Geoffray787c3072014-03-17 10:20:19 +000088 ArenaPool pool;
89 ArenaAllocator arena(&pool);
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000090 HGraphBuilder builder(&arena, &dex_compilation_unit, &dex_file);
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010091
Nicolas Geoffray787c3072014-03-17 10:20:19 +000092 HGraph* graph = builder.BuildGraph(*code_item);
93 if (graph == nullptr) {
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000094 if (shouldCompile) {
95 LOG(FATAL) << "Could not build graph in optimizing compiler";
96 }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000097 return nullptr;
98 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010099 HGraphVisualizer visualizer(visualizer_output_.get(), graph, kStringFilter, dex_compilation_unit);
100 visualizer.DumpGraph("builder");
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000101
Ian Rogers72d32622014-05-06 16:20:11 -0700102 InstructionSet instruction_set = GetCompilerDriver()->GetInstructionSet();
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000103 // The optimizing compiler currently does not have a Thumb2 assembler.
104 if (instruction_set == kThumb2) {
105 instruction_set = kArm;
106 }
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000107 CodeGenerator* codegen = CodeGenerator::Create(&arena, graph, instruction_set);
108 if (codegen == nullptr) {
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000109 if (shouldCompile) {
110 LOG(FATAL) << "Could not find code generator for optimizing compiler";
111 }
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000112 return nullptr;
113 }
114
115 CodeVectorAllocator allocator;
116 codegen->Compile(&allocator);
117
118 std::vector<uint8_t> mapping_table;
119 codegen->BuildMappingTable(&mapping_table);
120 std::vector<uint8_t> vmap_table;
121 codegen->BuildVMapTable(&vmap_table);
122 std::vector<uint8_t> gc_map;
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000123 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000124
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100125 // Run these phases to get some test coverage.
126 graph->BuildDominatorTree();
127 graph->TransformToSSA();
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100128 visualizer.DumpGraph("ssa");
129
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100130 graph->FindNaturalLoops();
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100131 SsaLivenessAnalysis(*graph).Analyze();
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100132 visualizer.DumpGraph("liveness");
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100133
Ian Rogers72d32622014-05-06 16:20:11 -0700134 return new CompiledMethod(GetCompilerDriver(),
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000135 instruction_set,
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000136 allocator.GetMemory(),
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000137 codegen->GetFrameSize(),
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000138 codegen->GetCoreSpillMask(),
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000139 0, /* FPR spill mask, unused */
140 mapping_table,
141 vmap_table,
142 gc_map,
143 nullptr);
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000144}
145
146} // namespace art