Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [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_SSA_BUILDER_H_ |
| 18 | #define ART_COMPILER_OPTIMIZING_SSA_BUILDER_H_ |
| 19 | |
Vladimir Marko | 71bf809 | 2015-09-15 15:33:14 +0100 | [diff] [blame] | 20 | #include "base/arena_containers.h" |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 21 | #include "nodes.h" |
Nicolas Geoffray | 3159674 | 2014-11-24 15:28:45 +0000 | [diff] [blame] | 22 | #include "optimization.h" |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 23 | |
| 24 | namespace art { |
| 25 | |
David Brazdil | 6032891 | 2016-04-04 17:47:42 +0000 | [diff] [blame] | 26 | static constexpr int kDefaultNumberOfLoops = 2; |
| 27 | |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 28 | /** |
| 29 | * Transforms a graph into SSA form. The liveness guarantees of |
| 30 | * this transformation are listed below. A DEX register |
| 31 | * being killed means its value at a given position in the code |
| 32 | * will not be available to its environment uses. A merge in the |
| 33 | * following text is materialized as a `HPhi`. |
| 34 | * |
| 35 | * (a) Dex registers that do not require merging (that is, they do not |
| 36 | * have different values at a join block) are available to all their |
Nicolas Geoffray | 915b9d0 | 2015-03-11 15:11:19 +0000 | [diff] [blame] | 37 | * environment uses. Note that it does not imply the instruction will |
| 38 | * have a physical location after register allocation. See the |
| 39 | * SsaLivenessAnalysis phase. |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 40 | * |
| 41 | * (b) Dex registers that require merging, and the merging gives |
| 42 | * incompatible types, will be killed for environment uses of that merge. |
| 43 | * |
| 44 | * (c) When the `debuggable` flag is passed to the compiler, Dex registers |
| 45 | * that require merging and have a proper type after the merge, are |
| 46 | * available to all their environment uses. If the `debuggable` flag |
| 47 | * is not set, values of Dex registers only used by environments |
| 48 | * are killed. |
| 49 | */ |
David Brazdil | 6032891 | 2016-04-04 17:47:42 +0000 | [diff] [blame] | 50 | class SsaBuilder : public HGraphVisitor { |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 51 | public: |
David Brazdil | 6032891 | 2016-04-04 17:47:42 +0000 | [diff] [blame] | 52 | SsaBuilder(HGraph* graph, const DexFile::CodeItem& code_item, StackHandleScopeCollection* handles) |
| 53 | : HGraphVisitor(graph), |
| 54 | code_item_(code_item), |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 55 | handles_(handles), |
| 56 | agets_fixed_(false), |
David Brazdil | 6032891 | 2016-04-04 17:47:42 +0000 | [diff] [blame] | 57 | current_locals_(nullptr), |
| 58 | loop_headers_(graph->GetArena()->Adapter(kArenaAllocSsaBuilder)), |
| 59 | ambiguous_agets_(graph->GetArena()->Adapter(kArenaAllocSsaBuilder)), |
| 60 | ambiguous_asets_(graph->GetArena()->Adapter(kArenaAllocSsaBuilder)), |
| 61 | uninitialized_strings_(graph->GetArena()->Adapter(kArenaAllocSsaBuilder)), |
| 62 | locals_for_(graph->GetBlocks().size(), |
| 63 | ArenaVector<HInstruction*>(graph->GetArena()->Adapter(kArenaAllocSsaBuilder)), |
| 64 | graph->GetArena()->Adapter(kArenaAllocSsaBuilder)) { |
| 65 | loop_headers_.reserve(kDefaultNumberOfLoops); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 66 | } |
| 67 | |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 68 | GraphAnalysisResult BuildSsa(); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 69 | |
David Brazdil | 6032891 | 2016-04-04 17:47:42 +0000 | [diff] [blame] | 70 | // Returns locals vector for `block`. If it is a catch block, the vector will be |
| 71 | // prepopulated with catch phis for vregs which are defined in `current_locals_`. |
| 72 | ArenaVector<HInstruction*>* GetLocalsFor(HBasicBlock* block); |
| 73 | HInstruction* ValueOfLocal(HBasicBlock* block, size_t local); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 74 | |
David Brazdil | 6032891 | 2016-04-04 17:47:42 +0000 | [diff] [blame] | 75 | void VisitBasicBlock(HBasicBlock* block) OVERRIDE; |
| 76 | void VisitLoadLocal(HLoadLocal* load) OVERRIDE; |
| 77 | void VisitStoreLocal(HStoreLocal* store) OVERRIDE; |
| 78 | void VisitInstruction(HInstruction* instruction) OVERRIDE; |
| 79 | void VisitArrayGet(HArrayGet* aget) OVERRIDE; |
| 80 | void VisitArraySet(HArraySet* aset) OVERRIDE; |
| 81 | void VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) OVERRIDE; |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 82 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 83 | private: |
David Brazdil | 809d70f | 2015-11-19 10:29:39 +0000 | [diff] [blame] | 84 | void SetLoopHeaderPhiInputs(); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 85 | void FixEnvironmentPhis(); |
Calin Juravle | a4f8831 | 2015-04-16 12:57:19 +0100 | [diff] [blame] | 86 | void FixNullConstantType(); |
| 87 | void EquivalentPhisCleanup(); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 88 | void RunPrimitiveTypePropagation(); |
Calin Juravle | a4f8831 | 2015-04-16 12:57:19 +0100 | [diff] [blame] | 89 | |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 90 | // Attempts to resolve types of aget(-wide) instructions and type values passed |
| 91 | // to aput(-wide) instructions from reference type information on the array |
| 92 | // input. Returns false if the type of an array is unknown. |
| 93 | bool FixAmbiguousArrayOps(); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 94 | |
| 95 | bool TypeInputsOfPhi(HPhi* phi, ArenaVector<HPhi*>* worklist); |
| 96 | bool UpdatePrimitiveType(HPhi* phi, ArenaVector<HPhi*>* worklist); |
| 97 | void ProcessPrimitiveTypePropagationWorklist(ArenaVector<HPhi*>* worklist); |
| 98 | |
David Brazdil | 6032891 | 2016-04-04 17:47:42 +0000 | [diff] [blame] | 99 | HInstruction* GetFloatOrDoubleEquivalent(HInstruction* instruction, Primitive::Type type); |
| 100 | HInstruction* GetReferenceTypeEquivalent(HInstruction* instruction); |
| 101 | |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 102 | HFloatConstant* GetFloatEquivalent(HIntConstant* constant); |
| 103 | HDoubleConstant* GetDoubleEquivalent(HLongConstant* constant); |
| 104 | HPhi* GetFloatDoubleOrReferenceEquivalentOfPhi(HPhi* phi, Primitive::Type type); |
| 105 | HArrayGet* GetFloatOrDoubleEquivalentOfArrayGet(HArrayGet* aget); |
| 106 | |
David Brazdil | 65902e8 | 2016-01-15 09:35:13 +0000 | [diff] [blame] | 107 | void RemoveRedundantUninitializedStrings(); |
| 108 | |
David Brazdil | 6032891 | 2016-04-04 17:47:42 +0000 | [diff] [blame] | 109 | // Returns whether `instruction` is the first generated HInstruction for its |
| 110 | // dex_pc position. |
| 111 | bool IsFirstAtThrowingDexPc(HInstruction* instruction) const; |
| 112 | |
| 113 | const DexFile::CodeItem& code_item_; |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 114 | StackHandleScopeCollection* const handles_; |
| 115 | |
| 116 | // True if types of ambiguous ArrayGets have been resolved. |
| 117 | bool agets_fixed_; |
David Brazdil | 8d5b8b2 | 2015-03-24 10:51:52 +0000 | [diff] [blame] | 118 | |
David Brazdil | 6032891 | 2016-04-04 17:47:42 +0000 | [diff] [blame] | 119 | // Locals for the current block being visited. |
| 120 | ArenaVector<HInstruction*>* current_locals_; |
| 121 | |
| 122 | // Keep track of loop headers found. The last phase of the analysis iterates |
| 123 | // over these blocks to set the inputs of their phis. |
| 124 | ArenaVector<HBasicBlock*> loop_headers_; |
| 125 | |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 126 | ArenaVector<HArrayGet*> ambiguous_agets_; |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 127 | ArenaVector<HArraySet*> ambiguous_asets_; |
David Brazdil | 65902e8 | 2016-01-15 09:35:13 +0000 | [diff] [blame] | 128 | ArenaVector<HNewInstance*> uninitialized_strings_; |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 129 | |
David Brazdil | 6032891 | 2016-04-04 17:47:42 +0000 | [diff] [blame] | 130 | // HEnvironment for each block. |
| 131 | ArenaVector<ArenaVector<HInstruction*>> locals_for_; |
| 132 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 133 | DISALLOW_COPY_AND_ASSIGN(SsaBuilder); |
| 134 | }; |
| 135 | |
| 136 | } // namespace art |
| 137 | |
| 138 | #endif // ART_COMPILER_OPTIMIZING_SSA_BUILDER_H_ |