Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +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_BUILDER_H_ |
| 18 | #define ART_COMPILER_OPTIMIZING_BUILDER_H_ |
| 19 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 20 | #include "dex_file.h" |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 21 | #include "dex_file-inl.h" |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 22 | #include "driver/compiler_driver.h" |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 23 | #include "driver/dex_compilation_unit.h" |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 24 | #include "primitive.h" |
Ian Rogers | 0279ebb | 2014-10-08 17:27:48 -0700 | [diff] [blame] | 25 | #include "utils/arena_object.h" |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 26 | #include "utils/growable_array.h" |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 27 | #include "nodes.h" |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 28 | |
| 29 | namespace art { |
| 30 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 31 | class Instruction; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 32 | |
| 33 | class HGraphBuilder : public ValueObject { |
| 34 | public: |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 35 | HGraphBuilder(ArenaAllocator* arena, |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 36 | DexCompilationUnit* dex_compilation_unit, |
| 37 | const DexFile* dex_file, |
| 38 | CompilerDriver* driver) |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 39 | : arena_(arena), |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 40 | branch_targets_(arena, 0), |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 41 | locals_(arena, 0), |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 42 | entry_block_(nullptr), |
| 43 | exit_block_(nullptr), |
| 44 | current_block_(nullptr), |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 45 | graph_(nullptr), |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 46 | constant0_(nullptr), |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 47 | constant1_(nullptr), |
| 48 | dex_file_(dex_file), |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 49 | dex_compilation_unit_(dex_compilation_unit), |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 50 | compiler_driver_(driver), |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 51 | return_type_(Primitive::GetType(dex_compilation_unit_->GetShorty()[0])), |
| 52 | code_start_(nullptr), |
| 53 | latest_result_(nullptr) {} |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 54 | |
| 55 | // Only for unit testing. |
| 56 | HGraphBuilder(ArenaAllocator* arena, Primitive::Type return_type = Primitive::kPrimInt) |
| 57 | : arena_(arena), |
| 58 | branch_targets_(arena, 0), |
| 59 | locals_(arena, 0), |
| 60 | entry_block_(nullptr), |
| 61 | exit_block_(nullptr), |
| 62 | current_block_(nullptr), |
| 63 | graph_(nullptr), |
| 64 | constant0_(nullptr), |
| 65 | constant1_(nullptr), |
| 66 | dex_file_(nullptr), |
| 67 | dex_compilation_unit_(nullptr), |
| 68 | compiler_driver_(nullptr), |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 69 | return_type_(return_type), |
| 70 | code_start_(nullptr), |
| 71 | latest_result_(nullptr) {} |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 72 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 73 | HGraph* BuildGraph(const DexFile::CodeItem& code); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 74 | |
| 75 | private: |
| 76 | // Analyzes the dex instruction and adds HInstruction to the graph |
| 77 | // to execute that instruction. Returns whether the instruction can |
| 78 | // be handled. |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 79 | bool AnalyzeDexInstruction(const Instruction& instruction, uint32_t dex_offset); |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 80 | |
| 81 | // Finds all instructions that start a new block, and populates branch_targets_ with |
| 82 | // the newly created blocks. |
| 83 | void ComputeBranchTargets(const uint16_t* start, const uint16_t* end); |
| 84 | void MaybeUpdateCurrentBlock(size_t index); |
| 85 | HBasicBlock* FindBlockStartingAt(int32_t index) const; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 86 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 87 | HIntConstant* GetIntConstant0(); |
| 88 | HIntConstant* GetIntConstant1(); |
| 89 | HIntConstant* GetIntConstant(int32_t constant); |
| 90 | HLongConstant* GetLongConstant(int64_t constant); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 91 | void InitializeLocals(uint16_t count); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 92 | HLocal* GetLocalAt(int register_index) const; |
| 93 | void UpdateLocal(int register_index, HInstruction* instruction) const; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 94 | HInstruction* LoadLocal(int register_index, Primitive::Type type) const; |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 95 | void PotentiallyAddSuspendCheck(int32_t target_offset, uint32_t dex_offset); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 96 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 97 | // Temporarily returns whether the compiler supports the parameters |
| 98 | // of the method. |
| 99 | bool InitializeParameters(uint16_t number_of_parameters); |
| 100 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 101 | template<typename T> |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 102 | void Unop_12x(const Instruction& instruction, Primitive::Type type); |
| 103 | |
| 104 | template<typename T> |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 105 | void Binop_23x(const Instruction& instruction, Primitive::Type type); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 106 | |
| 107 | template<typename T> |
| 108 | void Binop_12x(const Instruction& instruction, Primitive::Type type); |
| 109 | |
| 110 | template<typename T> |
| 111 | void Binop_22b(const Instruction& instruction, bool reverse); |
| 112 | |
| 113 | template<typename T> |
| 114 | void Binop_22s(const Instruction& instruction, bool reverse); |
| 115 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 116 | template<typename T> void If_21t(const Instruction& instruction, uint32_t dex_offset); |
| 117 | template<typename T> void If_22t(const Instruction& instruction, uint32_t dex_offset); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 118 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 119 | void Conversion_12x(const Instruction& instruction, |
| 120 | Primitive::Type input_type, |
| 121 | Primitive::Type result_type); |
| 122 | |
Calin Juravle | 865fc88 | 2014-11-06 17:09:03 +0000 | [diff] [blame^] | 123 | void BuildCheckedDiv(uint16_t out_reg, |
| 124 | uint16_t first_reg, |
| 125 | uint16_t second_reg, |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 126 | uint32_t dex_offset, |
| 127 | Primitive::Type type, |
| 128 | bool second_is_lit); |
| 129 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 130 | void BuildReturn(const Instruction& instruction, Primitive::Type type); |
| 131 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 132 | // Builds an instance field access node and returns whether the instruction is supported. |
| 133 | bool BuildInstanceFieldAccess(const Instruction& instruction, uint32_t dex_offset, bool is_put); |
| 134 | |
| 135 | // Builds a static field access node and returns whether the instruction is supported. |
| 136 | bool BuildStaticFieldAccess(const Instruction& instruction, uint32_t dex_offset, bool is_put); |
| 137 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 138 | void BuildArrayAccess(const Instruction& instruction, |
| 139 | uint32_t dex_offset, |
| 140 | bool is_get, |
| 141 | Primitive::Type anticipated_type); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 142 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 143 | // Builds an invocation node and returns whether the instruction is supported. |
| 144 | bool BuildInvoke(const Instruction& instruction, |
| 145 | uint32_t dex_offset, |
| 146 | uint32_t method_idx, |
| 147 | uint32_t number_of_vreg_arguments, |
| 148 | bool is_range, |
| 149 | uint32_t* args, |
| 150 | uint32_t register_index); |
| 151 | |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 152 | // Builds a new array node and the instructions that fill it. |
| 153 | void BuildFilledNewArray(uint32_t dex_offset, |
| 154 | uint32_t type_index, |
| 155 | uint32_t number_of_vreg_arguments, |
| 156 | bool is_range, |
| 157 | uint32_t* args, |
| 158 | uint32_t register_index); |
| 159 | |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 160 | void BuildFillArrayData(const Instruction& instruction, uint32_t dex_offset); |
| 161 | |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 162 | // Fills the given object with data as specified in the fill-array-data |
| 163 | // instruction. Currently only used for non-reference and non-floating point |
| 164 | // arrays. |
| 165 | template <typename T> |
| 166 | void BuildFillArrayData(HInstruction* object, |
| 167 | const T* data, |
| 168 | uint32_t element_count, |
| 169 | Primitive::Type anticipated_type, |
| 170 | uint32_t dex_offset); |
| 171 | |
| 172 | // Fills the given object with data as specified in the fill-array-data |
| 173 | // instruction. The data must be for long and double arrays. |
| 174 | void BuildFillWideArrayData(HInstruction* object, |
Nicolas Geoffray | 8d6ae52 | 2014-10-23 18:32:13 +0100 | [diff] [blame] | 175 | const int64_t* data, |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 176 | uint32_t element_count, |
| 177 | uint32_t dex_offset); |
| 178 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 179 | ArenaAllocator* const arena_; |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 180 | |
| 181 | // A list of the size of the dex code holding block information for |
| 182 | // the method. If an entry contains a block, then the dex instruction |
| 183 | // starting at that entry is the first instruction of a new block. |
| 184 | GrowableArray<HBasicBlock*> branch_targets_; |
| 185 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 186 | GrowableArray<HLocal*> locals_; |
| 187 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 188 | HBasicBlock* entry_block_; |
| 189 | HBasicBlock* exit_block_; |
| 190 | HBasicBlock* current_block_; |
| 191 | HGraph* graph_; |
| 192 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 193 | HIntConstant* constant0_; |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 194 | HIntConstant* constant1_; |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 195 | |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 196 | const DexFile* const dex_file_; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 197 | DexCompilationUnit* const dex_compilation_unit_; |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 198 | CompilerDriver* const compiler_driver_; |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 199 | const Primitive::Type return_type_; |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 200 | |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 201 | // The pointer in the dex file where the instructions of the code item |
| 202 | // being currently compiled start. |
| 203 | const uint16_t* code_start_; |
| 204 | |
| 205 | // The last invoke or fill-new-array being built. Only to be |
| 206 | // used by move-result instructions. |
| 207 | HInstruction* latest_result_; |
| 208 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 209 | DISALLOW_COPY_AND_ASSIGN(HGraphBuilder); |
| 210 | }; |
| 211 | |
| 212 | } // namespace art |
| 213 | |
| 214 | #endif // ART_COMPILER_OPTIMIZING_BUILDER_H_ |