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 | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 16 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_OAT_H_ |
| 18 | #define ART_RUNTIME_OAT_H_ |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 19 | |
| 20 | #include <vector> |
| 21 | |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 22 | #include "base/macros.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 23 | #include "dex_file.h" |
Elliott Hughes | 0f3c553 | 2012-03-30 14:51:51 -0700 | [diff] [blame] | 24 | #include "instruction_set.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 25 | #include "quick/quick_method_frame_info.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 26 | |
| 27 | namespace art { |
| 28 | |
Ian Rogers | df1ce91 | 2012-11-27 17:07:11 -0800 | [diff] [blame] | 29 | class PACKED(4) OatHeader { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 30 | public: |
Brian Carlstrom | 7c3d13a | 2013-09-04 17:15:11 -0700 | [diff] [blame] | 31 | static const uint8_t kOatMagic[4]; |
| 32 | static const uint8_t kOatVersion[4]; |
| 33 | |
Elliott Hughes | a72ec82 | 2012-03-05 17:12:22 -0800 | [diff] [blame] | 34 | OatHeader(); |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 35 | OatHeader(InstructionSet instruction_set, |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 36 | const InstructionSetFeatures& instruction_set_features, |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 37 | const std::vector<const DexFile*>* dex_files, |
Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 38 | uint32_t image_file_location_oat_checksum, |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 39 | uint32_t image_file_location_oat_data_begin, |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 40 | const std::string& image_file_location); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 41 | |
| 42 | bool IsValid() const; |
| 43 | const char* GetMagic() const; |
| 44 | uint32_t GetChecksum() const; |
| 45 | void UpdateChecksum(const void* data, size_t length); |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 46 | uint32_t GetDexFileCount() const { |
| 47 | DCHECK(IsValid()); |
| 48 | return dex_file_count_; |
| 49 | } |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 50 | uint32_t GetExecutableOffset() const; |
| 51 | void SetExecutableOffset(uint32_t executable_offset); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 52 | |
| 53 | const void* GetInterpreterToInterpreterBridge() const; |
| 54 | uint32_t GetInterpreterToInterpreterBridgeOffset() const; |
| 55 | void SetInterpreterToInterpreterBridgeOffset(uint32_t offset); |
| 56 | const void* GetInterpreterToCompiledCodeBridge() const; |
| 57 | uint32_t GetInterpreterToCompiledCodeBridgeOffset() const; |
| 58 | void SetInterpreterToCompiledCodeBridgeOffset(uint32_t offset); |
| 59 | |
| 60 | const void* GetJniDlsymLookup() const; |
| 61 | uint32_t GetJniDlsymLookupOffset() const; |
| 62 | void SetJniDlsymLookupOffset(uint32_t offset); |
| 63 | |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 64 | const void* GetPortableResolutionTrampoline() const; |
| 65 | uint32_t GetPortableResolutionTrampolineOffset() const; |
| 66 | void SetPortableResolutionTrampolineOffset(uint32_t offset); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 67 | const void* GetPortableImtConflictTrampoline() const; |
| 68 | uint32_t GetPortableImtConflictTrampolineOffset() const; |
| 69 | void SetPortableImtConflictTrampolineOffset(uint32_t offset); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 70 | const void* GetPortableToInterpreterBridge() const; |
| 71 | uint32_t GetPortableToInterpreterBridgeOffset() const; |
| 72 | void SetPortableToInterpreterBridgeOffset(uint32_t offset); |
| 73 | |
Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 74 | const void* GetQuickGenericJniTrampoline() const; |
| 75 | uint32_t GetQuickGenericJniTrampolineOffset() const; |
| 76 | void SetQuickGenericJniTrampolineOffset(uint32_t offset); |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 77 | const void* GetQuickResolutionTrampoline() const; |
| 78 | uint32_t GetQuickResolutionTrampolineOffset() const; |
| 79 | void SetQuickResolutionTrampolineOffset(uint32_t offset); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 80 | const void* GetQuickImtConflictTrampoline() const; |
| 81 | uint32_t GetQuickImtConflictTrampolineOffset() const; |
| 82 | void SetQuickImtConflictTrampolineOffset(uint32_t offset); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 83 | const void* GetQuickToInterpreterBridge() const; |
| 84 | uint32_t GetQuickToInterpreterBridgeOffset() const; |
| 85 | void SetQuickToInterpreterBridgeOffset(uint32_t offset); |
| 86 | |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 87 | InstructionSet GetInstructionSet() const; |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 88 | const InstructionSetFeatures& GetInstructionSetFeatures() const; |
Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 89 | uint32_t GetImageFileLocationOatChecksum() const; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 90 | uint32_t GetImageFileLocationOatDataBegin() const; |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 91 | uint32_t GetImageFileLocationSize() const; |
| 92 | const uint8_t* GetImageFileLocationData() const; |
| 93 | std::string GetImageFileLocation() const; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 94 | |
| 95 | private: |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 96 | uint8_t magic_[4]; |
| 97 | uint8_t version_[4]; |
| 98 | uint32_t adler32_checksum_; |
Elliott Hughes | a72ec82 | 2012-03-05 17:12:22 -0800 | [diff] [blame] | 99 | |
| 100 | InstructionSet instruction_set_; |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 101 | InstructionSetFeatures instruction_set_features_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 102 | uint32_t dex_file_count_; |
| 103 | uint32_t executable_offset_; |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 104 | uint32_t interpreter_to_interpreter_bridge_offset_; |
| 105 | uint32_t interpreter_to_compiled_code_bridge_offset_; |
| 106 | uint32_t jni_dlsym_lookup_offset_; |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 107 | uint32_t portable_imt_conflict_trampoline_offset_; |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 108 | uint32_t portable_resolution_trampoline_offset_; |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 109 | uint32_t portable_to_interpreter_bridge_offset_; |
Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 110 | uint32_t quick_generic_jni_trampoline_offset_; |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 111 | uint32_t quick_imt_conflict_trampoline_offset_; |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 112 | uint32_t quick_resolution_trampoline_offset_; |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 113 | uint32_t quick_to_interpreter_bridge_offset_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 114 | |
Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 115 | uint32_t image_file_location_oat_checksum_; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 116 | uint32_t image_file_location_oat_data_begin_; |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 117 | uint32_t image_file_location_size_; |
| 118 | uint8_t image_file_location_data_[0]; // note variable width data at end |
| 119 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 120 | DISALLOW_COPY_AND_ASSIGN(OatHeader); |
| 121 | }; |
| 122 | |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 123 | // OatMethodOffsets are currently 5x32-bits=160-bits long, so if we can |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 124 | // save even one OatMethodOffsets struct, the more complicated encoding |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 125 | // using a bitmap pays for itself since few classes will have 160 |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 126 | // methods. |
| 127 | enum OatClassType { |
| 128 | kOatClassAllCompiled = 0, // OatClass is followed by an OatMethodOffsets for each method. |
| 129 | kOatClassSomeCompiled = 1, // A bitmap of which OatMethodOffsets are present follows the OatClass. |
| 130 | kOatClassNoneCompiled = 2, // All methods are interpretted so no OatMethodOffsets are necessary. |
| 131 | kOatClassMax = 3, |
| 132 | }; |
| 133 | |
| 134 | std::ostream& operator<<(std::ostream& os, const OatClassType& rhs); |
| 135 | |
Ian Rogers | df1ce91 | 2012-11-27 17:07:11 -0800 | [diff] [blame] | 136 | class PACKED(4) OatMethodOffsets { |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 137 | public: |
| 138 | OatMethodOffsets(); |
Logan Chien | 971bf3f | 2012-05-01 15:47:55 +0800 | [diff] [blame] | 139 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 140 | OatMethodOffsets(uint32_t code_offset, |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 141 | uint32_t gc_map_offset); |
Logan Chien | 971bf3f | 2012-05-01 15:47:55 +0800 | [diff] [blame] | 142 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 143 | ~OatMethodOffsets(); |
| 144 | |
| 145 | uint32_t code_offset_; |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 146 | uint32_t gc_map_offset_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 147 | }; |
| 148 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 149 | // OatQuickMethodHeader precedes the raw code chunk generated by the Quick compiler. |
| 150 | class PACKED(4) OatQuickMethodHeader { |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 151 | public: |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 152 | OatQuickMethodHeader(); |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 153 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 154 | explicit OatQuickMethodHeader(uint32_t mapping_table_offset, uint32_t vmap_table_offset, |
| 155 | uint32_t frame_size_in_bytes, uint32_t core_spill_mask, |
| 156 | uint32_t fp_spill_mask, uint32_t code_size); |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 157 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 158 | ~OatQuickMethodHeader(); |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 159 | |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 160 | // The offset in bytes from the start of the mapping table to the end of the header. |
| 161 | uint32_t mapping_table_offset_; |
| 162 | // The offset in bytes from the start of the vmap table to the end of the header. |
| 163 | uint32_t vmap_table_offset_; |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 164 | // The stack frame information. |
| 165 | QuickMethodFrameInfo frame_info_; |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 166 | // The code size in bytes. |
| 167 | uint32_t code_size_; |
| 168 | }; |
| 169 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 170 | } // namespace art |
| 171 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 172 | #endif // ART_RUNTIME_OAT_H_ |