blob: 8c97d57f4a26aca83a54e69ca08ff4e19ae3d6d4 [file] [log] [blame]
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +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#ifndef ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_
18#define ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_
19
Vladimir Markoca6fff82017-10-03 14:49:14 +010020#include "base/scoped_arena_allocator.h"
Roland Levillainccc07a92014-09-16 14:48:16 +010021#include "builder.h"
David Brazdil4833f5a2015-12-16 10:37:39 +000022#include "common_compiler_test.h"
David Sehr9e734c72018-01-04 17:56:19 -080023#include "dex/code_item_accessors-inl.h"
24#include "dex/dex_file.h"
25#include "dex/dex_instruction.h"
Vladimir Marko92f7f3c2017-10-31 11:38:30 +000026#include "driver/dex_compilation_unit.h"
Vladimir Marko69d310e2017-10-09 14:12:23 +010027#include "handle_scope-inl.h"
28#include "mirror/class_loader.h"
29#include "mirror/dex_cache.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070030#include "nodes.h"
David Brazdil4833f5a2015-12-16 10:37:39 +000031#include "scoped_thread_state_change.h"
32#include "ssa_builder.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010033#include "ssa_liveness_analysis.h"
34
Roland Levillain72bceff2014-09-15 18:29:00 +010035#include "gtest/gtest.h"
36
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010037namespace art {
38
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +000039#define NUM_INSTRUCTIONS(...) \
40 (sizeof((uint16_t[]) {__VA_ARGS__}) /sizeof(uint16_t))
41
Roland Levillain55dcfb52014-10-24 18:09:09 +010042#define N_REGISTERS_CODE_ITEM(NUM_REGS, ...) \
43 { NUM_REGS, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ }
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +000044
Roland Levillain55dcfb52014-10-24 18:09:09 +010045#define ZERO_REGISTER_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(0, __VA_ARGS__)
46#define ONE_REGISTER_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(1, __VA_ARGS__)
47#define TWO_REGISTERS_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(2, __VA_ARGS__)
48#define THREE_REGISTERS_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(3, __VA_ARGS__)
49#define FOUR_REGISTERS_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(4, __VA_ARGS__)
50#define FIVE_REGISTERS_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(5, __VA_ARGS__)
51#define SIX_REGISTERS_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(6, __VA_ARGS__)
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +000052
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010053LiveInterval* BuildInterval(const size_t ranges[][2],
54 size_t number_of_ranges,
Vladimir Markoe764d2e2017-10-05 14:35:55 +010055 ScopedArenaAllocator* allocator,
Nicolas Geoffraydd8f8872015-01-15 15:37:37 +000056 int reg = -1,
57 HInstruction* defined_by = nullptr) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010058 LiveInterval* interval =
59 LiveInterval::MakeInterval(allocator, DataType::Type::kInt32, defined_by);
Nicolas Geoffraydd8f8872015-01-15 15:37:37 +000060 if (defined_by != nullptr) {
61 defined_by->SetLiveInterval(interval);
62 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010063 for (size_t i = number_of_ranges; i > 0; --i) {
64 interval->AddRange(ranges[i - 1][0], ranges[i - 1][1]);
65 }
66 interval->SetRegister(reg);
67 return interval;
68}
69
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +000070void RemoveSuspendChecks(HGraph* graph) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +010071 for (HBasicBlock* block : graph->GetBlocks()) {
David Brazdilbadd8262016-02-02 16:28:56 +000072 if (block != nullptr) {
Alexandre Rames22aa54b2016-10-18 09:32:29 +010073 if (block->GetLoopInformation() != nullptr) {
74 block->GetLoopInformation()->SetSuspendCheck(nullptr);
75 }
David Brazdilbadd8262016-02-02 16:28:56 +000076 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
77 HInstruction* current = it.Current();
78 if (current->IsSuspendCheck()) {
79 current->GetBlock()->RemoveInstruction(current);
80 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +000081 }
82 }
83 }
84}
85
Vladimir Markoca6fff82017-10-03 14:49:14 +010086class ArenaPoolAndAllocator {
87 public:
Vladimir Markoe764d2e2017-10-05 14:35:55 +010088 ArenaPoolAndAllocator()
89 : pool_(), allocator_(&pool_), arena_stack_(&pool_), scoped_allocator_(&arena_stack_) { }
Vladimir Markoca6fff82017-10-03 14:49:14 +010090
91 ArenaAllocator* GetAllocator() { return &allocator_; }
92 ArenaStack* GetArenaStack() { return &arena_stack_; }
Vladimir Markoe764d2e2017-10-05 14:35:55 +010093 ScopedArenaAllocator* GetScopedAllocator() { return &scoped_allocator_; }
Vladimir Markoca6fff82017-10-03 14:49:14 +010094
95 private:
96 ArenaPool pool_;
97 ArenaAllocator allocator_;
98 ArenaStack arena_stack_;
Vladimir Markoe764d2e2017-10-05 14:35:55 +010099 ScopedArenaAllocator scoped_allocator_;
Vladimir Markoca6fff82017-10-03 14:49:14 +0100100};
101
102inline HGraph* CreateGraph(ArenaPoolAndAllocator* pool_and_allocator) {
103 return new (pool_and_allocator->GetAllocator()) HGraph(
104 pool_and_allocator->GetAllocator(),
105 pool_and_allocator->GetArenaStack(),
106 *reinterpret_cast<DexFile*>(pool_and_allocator->GetAllocator()->Alloc(sizeof(DexFile))),
Igor Murashkin032cacd2017-04-06 14:40:08 -0700107 /*method_idx*/-1,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700108 kRuntimeISA);
Nicolas Geoffray0a23d742015-05-07 11:57:35 +0100109}
110
Vladimir Markoca6fff82017-10-03 14:49:14 +0100111class OptimizingUnitTest : public CommonCompilerTest {
112 protected:
113 OptimizingUnitTest() : pool_and_allocator_(new ArenaPoolAndAllocator()) { }
David Brazdilbadd8262016-02-02 16:28:56 +0000114
Vladimir Markoca6fff82017-10-03 14:49:14 +0100115 ArenaAllocator* GetAllocator() { return pool_and_allocator_->GetAllocator(); }
116 ArenaStack* GetArenaStack() { return pool_and_allocator_->GetArenaStack(); }
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100117 ScopedArenaAllocator* GetScopedAllocator() { return pool_and_allocator_->GetScopedAllocator(); }
Vladimir Markoca6fff82017-10-03 14:49:14 +0100118
119 void ResetPoolAndAllocator() {
120 pool_and_allocator_.reset(new ArenaPoolAndAllocator());
121 handles_.reset(); // When getting rid of the old HGraph, we can also reset handles_.
David Brazdilbadd8262016-02-02 16:28:56 +0000122 }
Vladimir Markoca6fff82017-10-03 14:49:14 +0100123
124 HGraph* CreateGraph() {
125 return art::CreateGraph(pool_and_allocator_.get());
126 }
127
128 // Create a control-flow graph from Dex instructions.
129 HGraph* CreateCFG(const uint16_t* data, DataType::Type return_type = DataType::Type::kInt32) {
Vladimir Marko69d310e2017-10-09 14:12:23 +0100130 const DexFile::CodeItem* code_item = reinterpret_cast<const DexFile::CodeItem*>(data);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100131 HGraph* graph = CreateGraph();
132
133 {
134 ScopedObjectAccess soa(Thread::Current());
135 if (handles_ == nullptr) {
136 handles_.reset(new VariableSizedHandleScope(soa.Self()));
137 }
Vladimir Marko69d310e2017-10-09 14:12:23 +0100138 const DexCompilationUnit* dex_compilation_unit =
139 new (graph->GetAllocator()) DexCompilationUnit(
140 handles_->NewHandle<mirror::ClassLoader>(nullptr),
141 /* class_linker */ nullptr,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000142 graph->GetDexFile(),
Vladimir Marko69d310e2017-10-09 14:12:23 +0100143 code_item,
144 /* class_def_index */ DexFile::kDexNoIndex16,
145 /* method_idx */ dex::kDexNoIndex,
146 /* access_flags */ 0u,
147 /* verified_method */ nullptr,
148 handles_->NewHandle<mirror::DexCache>(nullptr));
Mathieu Chartier698ebbc2018-01-05 11:00:42 -0800149 CodeItemDebugInfoAccessor accessor(graph->GetDexFile(), code_item);
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800150 HGraphBuilder builder(graph, dex_compilation_unit, accessor, handles_.get(), return_type);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100151 bool graph_built = (builder.BuildGraph() == kAnalysisSuccess);
152 return graph_built ? graph : nullptr;
153 }
154 }
155
156 private:
157 std::unique_ptr<ArenaPoolAndAllocator> pool_and_allocator_;
158 std::unique_ptr<VariableSizedHandleScope> handles_;
159};
Roland Levillainccc07a92014-09-16 14:48:16 +0100160
Roland Levillain72bceff2014-09-15 18:29:00 +0100161// Naive string diff data type.
162typedef std::list<std::pair<std::string, std::string>> diff_t;
163
164// An alias for the empty string used to make it clear that a line is
165// removed in a diff.
Igor Murashkin2ffb7032017-11-08 13:35:21 -0800166static const std::string removed = ""; // NOLINT [runtime/string] [4]
Roland Levillain72bceff2014-09-15 18:29:00 +0100167
168// Naive patch command: apply a diff to a string.
169inline std::string Patch(const std::string& original, const diff_t& diff) {
170 std::string result = original;
171 for (const auto& p : diff) {
172 std::string::size_type pos = result.find(p.first);
David Brazdil86ea7ee2016-02-16 09:26:07 +0000173 DCHECK_NE(pos, std::string::npos)
174 << "Could not find: \"" << p.first << "\" in \"" << result << "\"";
Roland Levillain72bceff2014-09-15 18:29:00 +0100175 result.replace(pos, p.first.size(), p.second);
176 }
177 return result;
178}
179
Mingyao Yangf384f882014-10-22 16:08:18 -0700180// Returns if the instruction is removed from the graph.
181inline bool IsRemoved(HInstruction* instruction) {
182 return instruction->GetBlock() == nullptr;
183}
184
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100185} // namespace art
186
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +0000187#endif // ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_