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 | |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 22 | #include "arch/instruction_set.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 23 | #include "base/macros.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 24 | #include "dex_file.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 25 | #include "quick/quick_method_frame_info.h" |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 26 | #include "safe_map.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 27 | |
| 28 | namespace art { |
| 29 | |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 30 | class InstructionSetFeatures; |
| 31 | |
Ian Rogers | df1ce91 | 2012-11-27 17:07:11 -0800 | [diff] [blame] | 32 | class PACKED(4) OatHeader { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 33 | public: |
Andreas Gampe | 2bcb3b2 | 2014-12-12 15:25:14 -0800 | [diff] [blame] | 34 | static constexpr uint8_t kOatMagic[] = { 'o', 'a', 't', '\n' }; |
Nicolas Geoffray | 1412dfa | 2015-03-20 14:48:13 +0000 | [diff] [blame] | 35 | static constexpr uint8_t kOatVersion[] = { '0', '6', '1', '\0' }; |
Brian Carlstrom | 7c3d13a | 2013-09-04 17:15:11 -0700 | [diff] [blame] | 36 | |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 37 | static constexpr const char* kImageLocationKey = "image-location"; |
| 38 | static constexpr const char* kDex2OatCmdLineKey = "dex2oat-cmdline"; |
| 39 | static constexpr const char* kDex2OatHostKey = "dex2oat-host"; |
Andreas Gampe | 7ba6496 | 2014-10-23 11:37:40 -0700 | [diff] [blame] | 40 | static constexpr const char* kPicKey = "pic"; |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 41 | |
| 42 | static OatHeader* Create(InstructionSet instruction_set, |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 43 | const InstructionSetFeatures* instruction_set_features, |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 44 | const std::vector<const DexFile*>* dex_files, |
| 45 | uint32_t image_file_location_oat_checksum, |
| 46 | uint32_t image_file_location_oat_data_begin, |
| 47 | const SafeMap<std::string, std::string>* variable_data); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 48 | |
| 49 | bool IsValid() const; |
Andreas Gampe | 2bcb3b2 | 2014-12-12 15:25:14 -0800 | [diff] [blame] | 50 | std::string GetValidationErrorMessage() const; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 51 | const char* GetMagic() const; |
| 52 | uint32_t GetChecksum() const; |
| 53 | void UpdateChecksum(const void* data, size_t length); |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 54 | uint32_t GetDexFileCount() const { |
| 55 | DCHECK(IsValid()); |
| 56 | return dex_file_count_; |
| 57 | } |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 58 | uint32_t GetExecutableOffset() const; |
| 59 | void SetExecutableOffset(uint32_t executable_offset); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 60 | |
| 61 | const void* GetInterpreterToInterpreterBridge() const; |
| 62 | uint32_t GetInterpreterToInterpreterBridgeOffset() const; |
| 63 | void SetInterpreterToInterpreterBridgeOffset(uint32_t offset); |
| 64 | const void* GetInterpreterToCompiledCodeBridge() const; |
| 65 | uint32_t GetInterpreterToCompiledCodeBridgeOffset() const; |
| 66 | void SetInterpreterToCompiledCodeBridgeOffset(uint32_t offset); |
| 67 | |
| 68 | const void* GetJniDlsymLookup() const; |
| 69 | uint32_t GetJniDlsymLookupOffset() const; |
| 70 | void SetJniDlsymLookupOffset(uint32_t offset); |
| 71 | |
Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 72 | const void* GetQuickGenericJniTrampoline() const; |
| 73 | uint32_t GetQuickGenericJniTrampolineOffset() const; |
| 74 | void SetQuickGenericJniTrampolineOffset(uint32_t offset); |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 75 | const void* GetQuickResolutionTrampoline() const; |
| 76 | uint32_t GetQuickResolutionTrampolineOffset() const; |
| 77 | void SetQuickResolutionTrampolineOffset(uint32_t offset); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 78 | const void* GetQuickImtConflictTrampoline() const; |
| 79 | uint32_t GetQuickImtConflictTrampolineOffset() const; |
| 80 | void SetQuickImtConflictTrampolineOffset(uint32_t offset); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 81 | const void* GetQuickToInterpreterBridge() const; |
| 82 | uint32_t GetQuickToInterpreterBridgeOffset() const; |
| 83 | void SetQuickToInterpreterBridgeOffset(uint32_t offset); |
| 84 | |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 85 | int32_t GetImagePatchDelta() const; |
| 86 | void RelocateOat(off_t delta); |
| 87 | void SetImagePatchDelta(int32_t off); |
| 88 | |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 89 | InstructionSet GetInstructionSet() const; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 90 | uint32_t GetInstructionSetFeaturesBitmap() const; |
Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 91 | uint32_t GetImageFileLocationOatChecksum() const; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 92 | uint32_t GetImageFileLocationOatDataBegin() const; |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 93 | |
| 94 | uint32_t GetKeyValueStoreSize() const; |
| 95 | const uint8_t* GetKeyValueStore() const; |
| 96 | const char* GetStoreValueByKey(const char* key) const; |
| 97 | bool GetStoreKeyValuePairByIndex(size_t index, const char** key, const char** value) const; |
| 98 | |
| 99 | size_t GetHeaderSize() const; |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 100 | bool IsPic() const; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 101 | |
| 102 | private: |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 103 | OatHeader(InstructionSet instruction_set, |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 104 | const InstructionSetFeatures* instruction_set_features, |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 105 | const std::vector<const DexFile*>* dex_files, |
| 106 | uint32_t image_file_location_oat_checksum, |
| 107 | uint32_t image_file_location_oat_data_begin, |
| 108 | const SafeMap<std::string, std::string>* variable_data); |
| 109 | |
| 110 | void Flatten(const SafeMap<std::string, std::string>* variable_data); |
| 111 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 112 | uint8_t magic_[4]; |
| 113 | uint8_t version_[4]; |
| 114 | uint32_t adler32_checksum_; |
Elliott Hughes | a72ec82 | 2012-03-05 17:12:22 -0800 | [diff] [blame] | 115 | |
| 116 | InstructionSet instruction_set_; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 117 | uint32_t instruction_set_features_bitmap_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 118 | uint32_t dex_file_count_; |
| 119 | uint32_t executable_offset_; |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 120 | uint32_t interpreter_to_interpreter_bridge_offset_; |
| 121 | uint32_t interpreter_to_compiled_code_bridge_offset_; |
| 122 | uint32_t jni_dlsym_lookup_offset_; |
Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 123 | uint32_t quick_generic_jni_trampoline_offset_; |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 124 | uint32_t quick_imt_conflict_trampoline_offset_; |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 125 | uint32_t quick_resolution_trampoline_offset_; |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 126 | uint32_t quick_to_interpreter_bridge_offset_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 127 | |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 128 | // The amount that the image this oat is associated with has been patched. |
| 129 | int32_t image_patch_delta_; |
| 130 | |
Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 131 | uint32_t image_file_location_oat_checksum_; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 132 | uint32_t image_file_location_oat_data_begin_; |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 133 | |
| 134 | uint32_t key_value_store_size_; |
| 135 | uint8_t key_value_store_[0]; // note variable width data at end |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 136 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 137 | DISALLOW_COPY_AND_ASSIGN(OatHeader); |
| 138 | }; |
| 139 | |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 140 | // OatMethodOffsets are currently 5x32-bits=160-bits long, so if we can |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 141 | // save even one OatMethodOffsets struct, the more complicated encoding |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 142 | // using a bitmap pays for itself since few classes will have 160 |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 143 | // methods. |
| 144 | enum OatClassType { |
| 145 | kOatClassAllCompiled = 0, // OatClass is followed by an OatMethodOffsets for each method. |
| 146 | kOatClassSomeCompiled = 1, // A bitmap of which OatMethodOffsets are present follows the OatClass. |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 147 | kOatClassNoneCompiled = 2, // All methods are interpreted so no OatMethodOffsets are necessary. |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 148 | kOatClassMax = 3, |
| 149 | }; |
| 150 | |
| 151 | std::ostream& operator<<(std::ostream& os, const OatClassType& rhs); |
| 152 | |
Ian Rogers | df1ce91 | 2012-11-27 17:07:11 -0800 | [diff] [blame] | 153 | class PACKED(4) OatMethodOffsets { |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 154 | public: |
Mathieu Chartier | 957ca1c | 2014-11-21 16:51:29 -0800 | [diff] [blame] | 155 | OatMethodOffsets(uint32_t code_offset = 0); |
Logan Chien | 971bf3f | 2012-05-01 15:47:55 +0800 | [diff] [blame] | 156 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 157 | ~OatMethodOffsets(); |
| 158 | |
| 159 | uint32_t code_offset_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 160 | }; |
| 161 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 162 | // OatQuickMethodHeader precedes the raw code chunk generated by the Quick compiler. |
| 163 | class PACKED(4) OatQuickMethodHeader { |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 164 | public: |
Mathieu Chartier | 957ca1c | 2014-11-21 16:51:29 -0800 | [diff] [blame] | 165 | OatQuickMethodHeader(uint32_t mapping_table_offset = 0U, uint32_t vmap_table_offset = 0U, |
| 166 | uint32_t gc_map_offset = 0U, uint32_t frame_size_in_bytes = 0U, |
| 167 | uint32_t core_spill_mask = 0U, uint32_t fp_spill_mask = 0U, |
| 168 | uint32_t code_size = 0U); |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 169 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 170 | ~OatQuickMethodHeader(); |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 171 | |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 172 | // The offset in bytes from the start of the mapping table to the end of the header. |
| 173 | uint32_t mapping_table_offset_; |
| 174 | // The offset in bytes from the start of the vmap table to the end of the header. |
| 175 | uint32_t vmap_table_offset_; |
Mathieu Chartier | 957ca1c | 2014-11-21 16:51:29 -0800 | [diff] [blame] | 176 | // The offset in bytes from the start of the gc map to the end of the header. |
| 177 | uint32_t gc_map_offset_; |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 178 | // The stack frame information. |
| 179 | QuickMethodFrameInfo frame_info_; |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 180 | // The code size in bytes. |
| 181 | uint32_t code_size_; |
| 182 | }; |
| 183 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 184 | } // namespace art |
| 185 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 186 | #endif // ART_RUNTIME_OAT_H_ |