Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 1 | /* |
| 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 Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 20 | #include "base/scoped_arena_allocator.h" |
Roland Levillain | ccc07a9 | 2014-09-16 14:48:16 +0100 | [diff] [blame] | 21 | #include "builder.h" |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 22 | #include "common_compiler_test.h" |
Roland Levillain | ccc07a9 | 2014-09-16 14:48:16 +0100 | [diff] [blame] | 23 | #include "dex_file.h" |
| 24 | #include "dex_instruction.h" |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 25 | #include "driver/dex_compilation_unit.h" |
Vladimir Marko | 69d310e | 2017-10-09 14:12:23 +0100 | [diff] [blame] | 26 | #include "handle_scope-inl.h" |
| 27 | #include "mirror/class_loader.h" |
| 28 | #include "mirror/dex_cache.h" |
Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 29 | #include "nodes.h" |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 30 | #include "scoped_thread_state_change.h" |
| 31 | #include "ssa_builder.h" |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 32 | #include "ssa_liveness_analysis.h" |
| 33 | |
Roland Levillain | 72bceff | 2014-09-15 18:29:00 +0100 | [diff] [blame] | 34 | #include "gtest/gtest.h" |
| 35 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 36 | namespace art { |
| 37 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 38 | #define NUM_INSTRUCTIONS(...) \ |
| 39 | (sizeof((uint16_t[]) {__VA_ARGS__}) /sizeof(uint16_t)) |
| 40 | |
Roland Levillain | 55dcfb5 | 2014-10-24 18:09:09 +0100 | [diff] [blame] | 41 | #define N_REGISTERS_CODE_ITEM(NUM_REGS, ...) \ |
| 42 | { NUM_REGS, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ } |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 43 | |
Roland Levillain | 55dcfb5 | 2014-10-24 18:09:09 +0100 | [diff] [blame] | 44 | #define ZERO_REGISTER_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(0, __VA_ARGS__) |
| 45 | #define ONE_REGISTER_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(1, __VA_ARGS__) |
| 46 | #define TWO_REGISTERS_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(2, __VA_ARGS__) |
| 47 | #define THREE_REGISTERS_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(3, __VA_ARGS__) |
| 48 | #define FOUR_REGISTERS_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(4, __VA_ARGS__) |
| 49 | #define FIVE_REGISTERS_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(5, __VA_ARGS__) |
| 50 | #define SIX_REGISTERS_CODE_ITEM(...) N_REGISTERS_CODE_ITEM(6, __VA_ARGS__) |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 51 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 52 | LiveInterval* BuildInterval(const size_t ranges[][2], |
| 53 | size_t number_of_ranges, |
Vladimir Marko | e764d2e | 2017-10-05 14:35:55 +0100 | [diff] [blame] | 54 | ScopedArenaAllocator* allocator, |
Nicolas Geoffray | dd8f887 | 2015-01-15 15:37:37 +0000 | [diff] [blame] | 55 | int reg = -1, |
| 56 | HInstruction* defined_by = nullptr) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 57 | LiveInterval* interval = |
| 58 | LiveInterval::MakeInterval(allocator, DataType::Type::kInt32, defined_by); |
Nicolas Geoffray | dd8f887 | 2015-01-15 15:37:37 +0000 | [diff] [blame] | 59 | if (defined_by != nullptr) { |
| 60 | defined_by->SetLiveInterval(interval); |
| 61 | } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 62 | for (size_t i = number_of_ranges; i > 0; --i) { |
| 63 | interval->AddRange(ranges[i - 1][0], ranges[i - 1][1]); |
| 64 | } |
| 65 | interval->SetRegister(reg); |
| 66 | return interval; |
| 67 | } |
| 68 | |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 69 | void RemoveSuspendChecks(HGraph* graph) { |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 70 | for (HBasicBlock* block : graph->GetBlocks()) { |
David Brazdil | badd826 | 2016-02-02 16:28:56 +0000 | [diff] [blame] | 71 | if (block != nullptr) { |
Alexandre Rames | 22aa54b | 2016-10-18 09:32:29 +0100 | [diff] [blame] | 72 | if (block->GetLoopInformation() != nullptr) { |
| 73 | block->GetLoopInformation()->SetSuspendCheck(nullptr); |
| 74 | } |
David Brazdil | badd826 | 2016-02-02 16:28:56 +0000 | [diff] [blame] | 75 | for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { |
| 76 | HInstruction* current = it.Current(); |
| 77 | if (current->IsSuspendCheck()) { |
| 78 | current->GetBlock()->RemoveInstruction(current); |
| 79 | } |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 80 | } |
| 81 | } |
| 82 | } |
| 83 | } |
| 84 | |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 85 | class ArenaPoolAndAllocator { |
| 86 | public: |
Vladimir Marko | e764d2e | 2017-10-05 14:35:55 +0100 | [diff] [blame] | 87 | ArenaPoolAndAllocator() |
| 88 | : pool_(), allocator_(&pool_), arena_stack_(&pool_), scoped_allocator_(&arena_stack_) { } |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 89 | |
| 90 | ArenaAllocator* GetAllocator() { return &allocator_; } |
| 91 | ArenaStack* GetArenaStack() { return &arena_stack_; } |
Vladimir Marko | e764d2e | 2017-10-05 14:35:55 +0100 | [diff] [blame] | 92 | ScopedArenaAllocator* GetScopedAllocator() { return &scoped_allocator_; } |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 93 | |
| 94 | private: |
| 95 | ArenaPool pool_; |
| 96 | ArenaAllocator allocator_; |
| 97 | ArenaStack arena_stack_; |
Vladimir Marko | e764d2e | 2017-10-05 14:35:55 +0100 | [diff] [blame] | 98 | ScopedArenaAllocator scoped_allocator_; |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 99 | }; |
| 100 | |
| 101 | inline HGraph* CreateGraph(ArenaPoolAndAllocator* pool_and_allocator) { |
| 102 | return new (pool_and_allocator->GetAllocator()) HGraph( |
| 103 | pool_and_allocator->GetAllocator(), |
| 104 | pool_and_allocator->GetArenaStack(), |
| 105 | *reinterpret_cast<DexFile*>(pool_and_allocator->GetAllocator()->Alloc(sizeof(DexFile))), |
Igor Murashkin | 032cacd | 2017-04-06 14:40:08 -0700 | [diff] [blame] | 106 | /*method_idx*/-1, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 107 | kRuntimeISA); |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 108 | } |
| 109 | |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 110 | class OptimizingUnitTest : public CommonCompilerTest { |
| 111 | protected: |
| 112 | OptimizingUnitTest() : pool_and_allocator_(new ArenaPoolAndAllocator()) { } |
David Brazdil | badd826 | 2016-02-02 16:28:56 +0000 | [diff] [blame] | 113 | |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 114 | ArenaAllocator* GetAllocator() { return pool_and_allocator_->GetAllocator(); } |
| 115 | ArenaStack* GetArenaStack() { return pool_and_allocator_->GetArenaStack(); } |
Vladimir Marko | e764d2e | 2017-10-05 14:35:55 +0100 | [diff] [blame] | 116 | ScopedArenaAllocator* GetScopedAllocator() { return pool_and_allocator_->GetScopedAllocator(); } |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 117 | |
| 118 | void ResetPoolAndAllocator() { |
| 119 | pool_and_allocator_.reset(new ArenaPoolAndAllocator()); |
| 120 | handles_.reset(); // When getting rid of the old HGraph, we can also reset handles_. |
David Brazdil | badd826 | 2016-02-02 16:28:56 +0000 | [diff] [blame] | 121 | } |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 122 | |
| 123 | HGraph* CreateGraph() { |
| 124 | return art::CreateGraph(pool_and_allocator_.get()); |
| 125 | } |
| 126 | |
| 127 | // Create a control-flow graph from Dex instructions. |
| 128 | HGraph* CreateCFG(const uint16_t* data, DataType::Type return_type = DataType::Type::kInt32) { |
Vladimir Marko | 69d310e | 2017-10-09 14:12:23 +0100 | [diff] [blame] | 129 | const DexFile::CodeItem* code_item = reinterpret_cast<const DexFile::CodeItem*>(data); |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 130 | HGraph* graph = CreateGraph(); |
| 131 | |
| 132 | { |
| 133 | ScopedObjectAccess soa(Thread::Current()); |
| 134 | if (handles_ == nullptr) { |
| 135 | handles_.reset(new VariableSizedHandleScope(soa.Self())); |
| 136 | } |
Vladimir Marko | 69d310e | 2017-10-09 14:12:23 +0100 | [diff] [blame] | 137 | const DexCompilationUnit* dex_compilation_unit = |
| 138 | new (graph->GetAllocator()) DexCompilationUnit( |
| 139 | handles_->NewHandle<mirror::ClassLoader>(nullptr), |
| 140 | /* class_linker */ nullptr, |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 141 | graph->GetDexFile(), |
Vladimir Marko | 69d310e | 2017-10-09 14:12:23 +0100 | [diff] [blame] | 142 | code_item, |
| 143 | /* class_def_index */ DexFile::kDexNoIndex16, |
| 144 | /* method_idx */ dex::kDexNoIndex, |
| 145 | /* access_flags */ 0u, |
| 146 | /* verified_method */ nullptr, |
| 147 | handles_->NewHandle<mirror::DexCache>(nullptr)); |
| 148 | HGraphBuilder builder(graph, dex_compilation_unit, *code_item, handles_.get(), return_type); |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 149 | bool graph_built = (builder.BuildGraph() == kAnalysisSuccess); |
| 150 | return graph_built ? graph : nullptr; |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | private: |
| 155 | std::unique_ptr<ArenaPoolAndAllocator> pool_and_allocator_; |
| 156 | std::unique_ptr<VariableSizedHandleScope> handles_; |
| 157 | }; |
Roland Levillain | ccc07a9 | 2014-09-16 14:48:16 +0100 | [diff] [blame] | 158 | |
Roland Levillain | 72bceff | 2014-09-15 18:29:00 +0100 | [diff] [blame] | 159 | // Naive string diff data type. |
| 160 | typedef std::list<std::pair<std::string, std::string>> diff_t; |
| 161 | |
| 162 | // An alias for the empty string used to make it clear that a line is |
| 163 | // removed in a diff. |
Igor Murashkin | 2ffb703 | 2017-11-08 13:35:21 -0800 | [diff] [blame] | 164 | static const std::string removed = ""; // NOLINT [runtime/string] [4] |
Roland Levillain | 72bceff | 2014-09-15 18:29:00 +0100 | [diff] [blame] | 165 | |
| 166 | // Naive patch command: apply a diff to a string. |
| 167 | inline std::string Patch(const std::string& original, const diff_t& diff) { |
| 168 | std::string result = original; |
| 169 | for (const auto& p : diff) { |
| 170 | std::string::size_type pos = result.find(p.first); |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 171 | DCHECK_NE(pos, std::string::npos) |
| 172 | << "Could not find: \"" << p.first << "\" in \"" << result << "\""; |
Roland Levillain | 72bceff | 2014-09-15 18:29:00 +0100 | [diff] [blame] | 173 | result.replace(pos, p.first.size(), p.second); |
| 174 | } |
| 175 | return result; |
| 176 | } |
| 177 | |
Mingyao Yang | f384f88 | 2014-10-22 16:08:18 -0700 | [diff] [blame] | 178 | // Returns if the instruction is removed from the graph. |
| 179 | inline bool IsRemoved(HInstruction* instruction) { |
| 180 | return instruction->GetBlock() == nullptr; |
| 181 | } |
| 182 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 183 | } // namespace art |
| 184 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 185 | #endif // ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_ |