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 | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 21 | #include "driver/compiler_driver.h" |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 22 | #include "driver/dex_compilation_unit.h" |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 23 | #include "primitive.h" |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 24 | #include "utils/allocation.h" |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 25 | #include "utils/growable_array.h" |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 26 | #include "nodes.h" |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 27 | |
| 28 | namespace art { |
| 29 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 30 | class Instruction; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 31 | |
| 32 | class HGraphBuilder : public ValueObject { |
| 33 | public: |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 34 | HGraphBuilder(ArenaAllocator* arena, |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 35 | DexCompilationUnit* dex_compilation_unit = nullptr, |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 36 | const DexFile* dex_file = nullptr, |
| 37 | CompilerDriver* driver = nullptr) |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 38 | : arena_(arena), |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 39 | branch_targets_(arena, 0), |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 40 | locals_(arena, 0), |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 41 | entry_block_(nullptr), |
| 42 | exit_block_(nullptr), |
| 43 | current_block_(nullptr), |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 44 | graph_(nullptr), |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 45 | constant0_(nullptr), |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 46 | constant1_(nullptr), |
| 47 | dex_file_(dex_file), |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 48 | dex_compilation_unit_(dex_compilation_unit), |
| 49 | compiler_driver_(driver) {} |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 50 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 51 | HGraph* BuildGraph(const DexFile::CodeItem& code); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 52 | |
| 53 | private: |
| 54 | // Analyzes the dex instruction and adds HInstruction to the graph |
| 55 | // to execute that instruction. Returns whether the instruction can |
| 56 | // be handled. |
Nicolas Geoffray | 7e3652c | 2014-09-15 14:34:01 +0000 | [diff] [blame] | 57 | bool AnalyzeDexInstruction(const Instruction& instruction, int32_t dex_offset); |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 58 | |
| 59 | // Finds all instructions that start a new block, and populates branch_targets_ with |
| 60 | // the newly created blocks. |
| 61 | void ComputeBranchTargets(const uint16_t* start, const uint16_t* end); |
| 62 | void MaybeUpdateCurrentBlock(size_t index); |
| 63 | HBasicBlock* FindBlockStartingAt(int32_t index) const; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 64 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 65 | HIntConstant* GetIntConstant0(); |
| 66 | HIntConstant* GetIntConstant1(); |
| 67 | HIntConstant* GetIntConstant(int32_t constant); |
| 68 | HLongConstant* GetLongConstant(int64_t constant); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 69 | void InitializeLocals(uint16_t count); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 70 | HLocal* GetLocalAt(int register_index) const; |
| 71 | void UpdateLocal(int register_index, HInstruction* instruction) const; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 72 | HInstruction* LoadLocal(int register_index, Primitive::Type type) const; |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 73 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 74 | // Temporarily returns whether the compiler supports the parameters |
| 75 | // of the method. |
| 76 | bool InitializeParameters(uint16_t number_of_parameters); |
| 77 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 78 | template<typename T> |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 79 | void Binop_23x(const Instruction& instruction, Primitive::Type type); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 80 | |
| 81 | template<typename T> |
| 82 | void Binop_12x(const Instruction& instruction, Primitive::Type type); |
| 83 | |
| 84 | template<typename T> |
| 85 | void Binop_22b(const Instruction& instruction, bool reverse); |
| 86 | |
| 87 | template<typename T> |
| 88 | void Binop_22s(const Instruction& instruction, bool reverse); |
| 89 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 90 | template<typename T> void If_21t(const Instruction& instruction, uint32_t dex_offset); |
| 91 | 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] | 92 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 93 | void BuildReturn(const Instruction& instruction, Primitive::Type type); |
| 94 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 95 | bool BuildFieldAccess(const Instruction& instruction, uint32_t dex_offset, bool is_get); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 96 | void BuildArrayAccess(const Instruction& instruction, |
| 97 | uint32_t dex_offset, |
| 98 | bool is_get, |
| 99 | Primitive::Type anticipated_type); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 100 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 101 | // Builds an invocation node and returns whether the instruction is supported. |
| 102 | bool BuildInvoke(const Instruction& instruction, |
| 103 | uint32_t dex_offset, |
| 104 | uint32_t method_idx, |
| 105 | uint32_t number_of_vreg_arguments, |
| 106 | bool is_range, |
| 107 | uint32_t* args, |
| 108 | uint32_t register_index); |
| 109 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 110 | ArenaAllocator* const arena_; |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 111 | |
| 112 | // A list of the size of the dex code holding block information for |
| 113 | // the method. If an entry contains a block, then the dex instruction |
| 114 | // starting at that entry is the first instruction of a new block. |
| 115 | GrowableArray<HBasicBlock*> branch_targets_; |
| 116 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 117 | GrowableArray<HLocal*> locals_; |
| 118 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 119 | HBasicBlock* entry_block_; |
| 120 | HBasicBlock* exit_block_; |
| 121 | HBasicBlock* current_block_; |
| 122 | HGraph* graph_; |
| 123 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 124 | HIntConstant* constant0_; |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 125 | HIntConstant* constant1_; |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 126 | |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 127 | const DexFile* const dex_file_; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 128 | DexCompilationUnit* const dex_compilation_unit_; |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 129 | CompilerDriver* const compiler_driver_; |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 130 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 131 | DISALLOW_COPY_AND_ASSIGN(HGraphBuilder); |
| 132 | }; |
| 133 | |
| 134 | } // namespace art |
| 135 | |
| 136 | #endif // ART_COMPILER_OPTIMIZING_BUILDER_H_ |