Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [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 | #include <dlfcn.h> |
| 18 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 19 | #include "base/logging.h" |
| 20 | #include "base/macros.h" |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 21 | #include "bb_optimizations.h" |
| 22 | #include "compiler_internals.h" |
| 23 | #include "dataflow_iterator.h" |
| 24 | #include "dataflow_iterator-inl.h" |
| 25 | #include "pass.h" |
| 26 | #include "pass_driver.h" |
| 27 | |
| 28 | namespace art { |
| 29 | |
Jean Christophe Beyler | 775c472 | 2014-01-16 08:51:48 -0800 | [diff] [blame] | 30 | namespace { // anonymous namespace |
| 31 | |
| 32 | /** |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 33 | * @brief Helper function to create a single instance of a given Pass and can be shared across |
| 34 | * the threads. |
Jean Christophe Beyler | 775c472 | 2014-01-16 08:51:48 -0800 | [diff] [blame] | 35 | */ |
| 36 | template <typename PassType> |
| 37 | const Pass* GetPassInstance() { |
| 38 | static const PassType pass; |
| 39 | return &pass; |
| 40 | } |
| 41 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 42 | void DoWalkBasicBlocks(CompilationUnit* c_unit, const Pass* pass, DataflowIterator* iterator) { |
| 43 | // Paranoid: Check the iterator before walking the BasicBlocks. |
| 44 | DCHECK(iterator != nullptr); |
| 45 | |
| 46 | bool change = false; |
| 47 | for (BasicBlock *bb = iterator->Next(change); bb != 0; bb = iterator->Next(change)) { |
| 48 | change = pass->WalkBasicBlocks(c_unit, bb); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | template <typename Iterator> |
| 53 | inline void DoWalkBasicBlocks(CompilationUnit* c_unit, const Pass* pass) { |
| 54 | Iterator iterator(c_unit->mir_graph.get()); |
| 55 | DoWalkBasicBlocks(c_unit, pass, &iterator); |
| 56 | } |
| 57 | |
Jean Christophe Beyler | 775c472 | 2014-01-16 08:51:48 -0800 | [diff] [blame] | 58 | } // anonymous namespace |
| 59 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 60 | PassDriver::PassDriver(CompilationUnit* cu, bool create_default_passes) |
| 61 | : cu_(cu), dump_cfg_folder_("/sdcard/") { |
| 62 | DCHECK(cu != nullptr); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 63 | |
| 64 | // If need be, create the default passes. |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 65 | if (create_default_passes) { |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 66 | CreatePasses(); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | PassDriver::~PassDriver() { |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 71 | } |
| 72 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 73 | void PassDriver::InsertPass(const Pass* new_pass) { |
| 74 | DCHECK(new_pass != nullptr); |
| 75 | DCHECK(new_pass->GetName() != nullptr && new_pass->GetName()[0] != 0); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 76 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 77 | // It is an error to override an existing pass. |
| 78 | DCHECK(GetPass(new_pass->GetName()) == nullptr) |
| 79 | << "Pass name " << new_pass->GetName() << " already used."; |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 80 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 81 | // Now add to the list. |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 82 | pass_list_.push_back(new_pass); |
| 83 | } |
| 84 | |
| 85 | void PassDriver::CreatePasses() { |
| 86 | /* |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 87 | * Create the pass list. These passes are immutable and are shared across the threads. |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 88 | * |
| 89 | * Advantage is that there will be no race conditions here. |
| 90 | * Disadvantage is the passes can't change their internal states depending on CompilationUnit: |
| 91 | * - This is not yet an issue: no current pass would require it. |
| 92 | */ |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 93 | static const Pass* const passes[] = { |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 94 | GetPassInstance<CacheFieldLoweringInfo>(), |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 95 | GetPassInstance<CacheMethodLoweringInfo>(), |
Jean Christophe Beyler | 775c472 | 2014-01-16 08:51:48 -0800 | [diff] [blame] | 96 | GetPassInstance<CodeLayout>(), |
| 97 | GetPassInstance<SSATransformation>(), |
| 98 | GetPassInstance<ConstantPropagation>(), |
| 99 | GetPassInstance<InitRegLocations>(), |
| 100 | GetPassInstance<MethodUseCount>(), |
| 101 | GetPassInstance<NullCheckEliminationAndTypeInferenceInit>(), |
| 102 | GetPassInstance<NullCheckEliminationAndTypeInference>(), |
| 103 | GetPassInstance<BBCombine>(), |
| 104 | GetPassInstance<BBOptimizations>(), |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 105 | }; |
| 106 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 107 | // Insert each pass into the list via the InsertPass method. |
| 108 | pass_list_.reserve(arraysize(passes)); |
| 109 | for (const Pass* pass : passes) { |
| 110 | InsertPass(pass); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 111 | } |
| 112 | } |
| 113 | |
Jean Christophe Beyler | 775c472 | 2014-01-16 08:51:48 -0800 | [diff] [blame] | 114 | void PassDriver::HandlePassFlag(CompilationUnit* c_unit, const Pass* pass) { |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 115 | // Unused parameters for the moment. |
| 116 | UNUSED(c_unit); |
| 117 | UNUSED(pass); |
| 118 | } |
| 119 | |
Jean Christophe Beyler | 775c472 | 2014-01-16 08:51:48 -0800 | [diff] [blame] | 120 | void PassDriver::DispatchPass(CompilationUnit* c_unit, const Pass* curPass) { |
Brian Carlstrom | b3558e1 | 2014-02-21 00:05:43 -0800 | [diff] [blame] | 121 | VLOG(compiler) << "Dispatching " << curPass->GetName(); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 122 | |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 123 | DataFlowAnalysisMode mode = curPass->GetTraversal(); |
| 124 | |
| 125 | switch (mode) { |
| 126 | case kPreOrderDFSTraversal: |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 127 | DoWalkBasicBlocks<PreOrderDfsIterator>(c_unit, curPass); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 128 | break; |
| 129 | case kRepeatingPreOrderDFSTraversal: |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 130 | DoWalkBasicBlocks<RepeatingPreOrderDfsIterator>(c_unit, curPass); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 131 | break; |
| 132 | case kRepeatingPostOrderDFSTraversal: |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 133 | DoWalkBasicBlocks<RepeatingPostOrderDfsIterator>(c_unit, curPass); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 134 | break; |
| 135 | case kReversePostOrderDFSTraversal: |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 136 | DoWalkBasicBlocks<ReversePostOrderDfsIterator>(c_unit, curPass); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 137 | break; |
| 138 | case kRepeatingReversePostOrderDFSTraversal: |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 139 | DoWalkBasicBlocks<RepeatingReversePostOrderDfsIterator>(c_unit, curPass); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 140 | break; |
| 141 | case kPostOrderDOMTraversal: |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 142 | DoWalkBasicBlocks<PostOrderDOMIterator>(c_unit, curPass); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 143 | break; |
| 144 | case kAllNodes: |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 145 | DoWalkBasicBlocks<AllNodesIterator>(c_unit, curPass); |
| 146 | break; |
| 147 | case kNoNodes: |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 148 | break; |
| 149 | default: |
Brian Carlstrom | b3558e1 | 2014-02-21 00:05:43 -0800 | [diff] [blame] | 150 | LOG(FATAL) << "Iterator mode not handled in dispatcher: " << mode; |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 151 | break; |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 152 | } |
| 153 | } |
| 154 | |
Jean Christophe Beyler | 775c472 | 2014-01-16 08:51:48 -0800 | [diff] [blame] | 155 | void PassDriver::ApplyPass(CompilationUnit* c_unit, const Pass* curPass) { |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 156 | curPass->Start(c_unit); |
| 157 | DispatchPass(c_unit, curPass); |
| 158 | curPass->End(c_unit); |
| 159 | } |
| 160 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 161 | bool PassDriver::RunPass(CompilationUnit* c_unit, const Pass* pass, bool time_split) { |
| 162 | // Paranoid: c_unit and pass cannot be nullptr, and the pass should have a name. |
| 163 | DCHECK(c_unit != nullptr); |
| 164 | DCHECK(pass != nullptr); |
| 165 | DCHECK(pass->GetName() != nullptr && pass->GetName()[0] != 0); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 166 | |
| 167 | // Do we perform a time split |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 168 | if (time_split) { |
| 169 | c_unit->NewTimingSplit(pass->GetName()); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | // Check the pass gate first. |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 173 | bool should_apply_pass = pass->Gate(c_unit); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 174 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 175 | if (should_apply_pass) { |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 176 | // Applying the pass: first start, doWork, and end calls. |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 177 | ApplyPass(c_unit, pass); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 178 | |
| 179 | // Clean up if need be. |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 180 | HandlePassFlag(c_unit, pass); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 181 | |
| 182 | // Do we want to log it? |
| 183 | if ((c_unit->enable_debug& (1 << kDebugDumpCFG)) != 0) { |
| 184 | // Do we have a pass folder? |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 185 | const char* passFolder = pass->GetDumpCFGFolder(); |
| 186 | DCHECK(passFolder != nullptr); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 187 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 188 | if (passFolder[0] != 0) { |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 189 | // Create directory prefix. |
| 190 | std::string prefix = GetDumpCFGFolder(); |
| 191 | prefix += passFolder; |
| 192 | prefix += "/"; |
| 193 | |
| 194 | c_unit->mir_graph->DumpCFG(prefix.c_str(), false); |
| 195 | } |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | // If the pass gate passed, we can declare success. |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 200 | return should_apply_pass; |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 201 | } |
| 202 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 203 | bool PassDriver::RunPass(CompilationUnit* c_unit, const char* pass_name) { |
| 204 | // Paranoid: c_unit cannot be nullptr and we need a pass name. |
| 205 | DCHECK(c_unit != nullptr); |
| 206 | DCHECK(pass_name != nullptr && pass_name[0] != 0); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 207 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 208 | const Pass* cur_pass = GetPass(pass_name); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 209 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 210 | if (cur_pass != nullptr) { |
| 211 | return RunPass(c_unit, cur_pass); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | // Return false, we did not find the pass. |
| 215 | return false; |
| 216 | } |
| 217 | |
| 218 | void PassDriver::Launch() { |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 219 | for (const Pass* cur_pass : pass_list_) { |
| 220 | RunPass(cu_, cur_pass, true); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 221 | } |
| 222 | } |
| 223 | |
| 224 | void PassDriver::PrintPassNames() const { |
| 225 | LOG(INFO) << "Loop Passes are:"; |
| 226 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 227 | for (const Pass* cur_pass : pass_list_) { |
| 228 | LOG(INFO) << "\t-" << cur_pass->GetName(); |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 229 | } |
| 230 | } |
| 231 | |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 232 | const Pass* PassDriver::GetPass(const char* name) const { |
| 233 | for (const Pass* cur_pass : pass_list_) { |
| 234 | if (strcmp(name, cur_pass->GetName()) == 0) { |
| 235 | return cur_pass; |
| 236 | } |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 237 | } |
Vladimir Marko | 75ba13f | 2014-01-28 12:15:24 +0000 | [diff] [blame] | 238 | return nullptr; |
Jean Christophe Beyler | 4e97c53 | 2014-01-07 10:07:18 -0800 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | } // namespace art |