Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 | */ |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 16 | |
| 17 | #ifndef ART_SRC_COMPILED_METHOD_H_ |
| 18 | #define ART_SRC_COMPILED_METHOD_H_ |
| 19 | |
| 20 | #include <vector> |
| 21 | |
Elliott Hughes | 0f3c553 | 2012-03-30 14:51:51 -0700 | [diff] [blame] | 22 | #include "instruction_set.h" |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 23 | #include "utils.h" |
TDYa127 | eead4ac | 2012-06-03 07:15:25 -0700 | [diff] [blame] | 24 | #include "UniquePtr.h" |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 25 | |
Shih-wei Liao | d1fec81 | 2012-02-13 09:51:10 -0800 | [diff] [blame] | 26 | namespace llvm { |
| 27 | class Function; |
| 28 | } |
| 29 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 30 | namespace art { |
| 31 | |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 32 | class CompiledCode { |
| 33 | public: |
| 34 | CompiledCode(InstructionSet instruction_set) |
Logan Chien | 971bf3f | 2012-05-01 15:47:55 +0800 | [diff] [blame] | 35 | : instruction_set_(instruction_set) { |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | CompiledCode(InstructionSet instruction_set, const std::vector<uint8_t>& code) |
Logan Chien | 971bf3f | 2012-05-01 15:47:55 +0800 | [diff] [blame] | 39 | : instruction_set_(instruction_set), code_(code) { |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 40 | CHECK_NE(code.size(), 0U); |
| 41 | } |
| 42 | |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 43 | InstructionSet GetInstructionSet() const { |
| 44 | return instruction_set_; |
| 45 | } |
| 46 | |
| 47 | const std::vector<uint8_t>& GetCode() const { |
| 48 | return code_; |
| 49 | } |
| 50 | |
| 51 | void SetCode(const std::vector<uint8_t>& code) { |
Logan Chien | 971bf3f | 2012-05-01 15:47:55 +0800 | [diff] [blame] | 52 | CHECK_NE(code.size(), 0U); |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 53 | code_ = code; |
| 54 | } |
| 55 | |
| 56 | bool operator==(const CompiledCode& rhs) const { |
| 57 | return (code_ == rhs.code_); |
| 58 | } |
| 59 | |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 60 | // To align an offset from a page-aligned value to make it suitable |
| 61 | // for code storage. For example on ARM, to ensure that PC relative |
| 62 | // valu computations work out as expected. |
| 63 | uint32_t AlignCode(uint32_t offset) const; |
| 64 | static uint32_t AlignCode(uint32_t offset, InstructionSet instruction_set); |
| 65 | |
| 66 | // returns the difference between the code address and a usable PC. |
| 67 | // mainly to cope with kThumb2 where the lower bit must be set. |
| 68 | size_t CodeDelta() const; |
| 69 | |
| 70 | // Returns a pointer suitable for invoking the code at the argument |
| 71 | // code_pointer address. Mainly to cope with kThumb2 where the |
| 72 | // lower bit must be set to indicate Thumb mode. |
| 73 | static const void* CodePointer(const void* code_pointer, |
| 74 | InstructionSet instruction_set); |
| 75 | |
| 76 | private: |
| 77 | const InstructionSet instruction_set_; |
| 78 | std::vector<uint8_t> code_; |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 79 | }; |
| 80 | |
| 81 | class CompiledMethod : public CompiledCode { |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 82 | public: |
Elliott Hughes | 3fa1b7e | 2012-03-13 17:06:22 -0700 | [diff] [blame] | 83 | // Constructs a CompiledMethod for the non-LLVM compilers. |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 84 | CompiledMethod(InstructionSet instruction_set, |
Ian Rogers | ab058bb | 2012-03-11 22:19:38 -0700 | [diff] [blame] | 85 | const std::vector<uint8_t>& code, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 86 | const size_t frame_size_in_bytes, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 87 | const uint32_t core_spill_mask, |
| 88 | const uint32_t fp_spill_mask, |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 89 | const std::vector<uint32_t>& mapping_table, |
| 90 | const std::vector<uint16_t>& vmap_table); |
| 91 | |
Elliott Hughes | 3fa1b7e | 2012-03-13 17:06:22 -0700 | [diff] [blame] | 92 | // Sets the GC map for a CompiledMethod. |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 93 | void SetGcMap(const std::vector<uint8_t>& gc_map); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 94 | |
Elliott Hughes | 3fa1b7e | 2012-03-13 17:06:22 -0700 | [diff] [blame] | 95 | // Constructs a CompiledMethod for the JniCompiler. |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 96 | CompiledMethod(InstructionSet instruction_set, |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 97 | const std::vector<uint8_t>& code, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 98 | const size_t frame_size_in_bytes, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 99 | const uint32_t core_spill_mask, |
| 100 | const uint32_t fp_spill_mask); |
| 101 | |
Logan Chien | 6920bce | 2012-03-17 21:44:01 +0800 | [diff] [blame] | 102 | // Constructs a CompiledMethod for the LLVM compiler. |
Logan Chien | 937105a | 2012-04-02 02:37:37 +0800 | [diff] [blame] | 103 | CompiledMethod(InstructionSet instruction_set, |
Logan Chien | 971bf3f | 2012-05-01 15:47:55 +0800 | [diff] [blame] | 104 | const std::vector<uint8_t>& code) |
| 105 | : CompiledCode(instruction_set, code), |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 106 | frame_size_in_bytes_(kStackAlignment), core_spill_mask_(0), |
| 107 | fp_spill_mask_(0) { |
| 108 | } |
Logan Chien | 6920bce | 2012-03-17 21:44:01 +0800 | [diff] [blame] | 109 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 110 | ~CompiledMethod(); |
| 111 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 112 | size_t GetFrameSizeInBytes() const; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 113 | uint32_t GetCoreSpillMask() const; |
| 114 | uint32_t GetFpSpillMask() const; |
| 115 | const std::vector<uint32_t>& GetMappingTable() const; |
| 116 | const std::vector<uint16_t>& GetVmapTable() const; |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 117 | const std::vector<uint8_t>& GetGcMap() const; |
| 118 | |
Logan Chien | 110bcba | 2012-04-16 19:11:28 +0800 | [diff] [blame] | 119 | #if defined(ART_USE_LLVM_COMPILER) |
| 120 | void SetFrameSizeInBytes(size_t new_frame_size_in_bytes) { |
| 121 | frame_size_in_bytes_ = new_frame_size_in_bytes; |
| 122 | } |
| 123 | #endif |
| 124 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 125 | private: |
Logan Chien | 110bcba | 2012-04-16 19:11:28 +0800 | [diff] [blame] | 126 | size_t frame_size_in_bytes_; |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 127 | const uint32_t core_spill_mask_; |
| 128 | const uint32_t fp_spill_mask_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 129 | std::vector<uint32_t> mapping_table_; |
| 130 | std::vector<uint16_t> vmap_table_; |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 131 | std::vector<uint8_t> gc_map_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 132 | }; |
| 133 | |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 134 | class CompiledInvokeStub : public CompiledCode { |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 135 | public: |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 136 | explicit CompiledInvokeStub(InstructionSet instruction_set); |
| 137 | |
| 138 | explicit CompiledInvokeStub(InstructionSet instruction_set, |
| 139 | const std::vector<uint8_t>& code); |
| 140 | |
Logan Chien | 6920bce | 2012-03-17 21:44:01 +0800 | [diff] [blame] | 141 | ~CompiledInvokeStub(); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 142 | }; |
| 143 | |
| 144 | } // namespace art |
| 145 | |
| 146 | #endif // ART_SRC_COMPILED_METHOD_H_ |