| 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" |
| David Sehr | 67bf42e | 2018-02-26 16:43:04 -0800 | [diff] [blame] | 24 | #include "base/safe_map.h" |
| Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 25 | #include "compiler_filter.h" |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 26 | |
| 27 | namespace art { |
| 28 | |
| Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 29 | class InstructionSetFeatures; |
| 30 | |
| Ian Rogers | df1ce91 | 2012-11-27 17:07:11 -0800 | [diff] [blame] | 31 | class PACKED(4) OatHeader { |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 32 | public: |
| Andreas Gampe | 2bcb3b2 | 2014-12-12 15:25:14 -0800 | [diff] [blame] | 33 | static constexpr uint8_t kOatMagic[] = { 'o', 'a', 't', '\n' }; |
| David Srbecky | 776f3f7 | 2018-10-15 18:03:55 +0100 | [diff] [blame] | 34 | // Last oat version changed reason: Remove interpreter alt tables. |
| 35 | static constexpr uint8_t kOatVersion[] = { '1', '6', '3', '\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* kDex2OatCmdLineKey = "dex2oat-cmdline"; |
| 38 | static constexpr const char* kDex2OatHostKey = "dex2oat-host"; |
| Sebastien Hertz | 0de1133 | 2015-05-13 12:14:05 +0200 | [diff] [blame] | 39 | static constexpr const char* kDebuggableKey = "debuggable"; |
| David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 40 | static constexpr const char* kNativeDebuggableKey = "native-debuggable"; |
| Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 41 | static constexpr const char* kCompilerFilter = "compiler-filter"; |
| Andreas Gampe | 7848da4 | 2015-04-09 11:15:04 -0700 | [diff] [blame] | 42 | static constexpr const char* kClassPathKey = "classpath"; |
| Jeff Hao | f0192c8 | 2016-03-28 20:39:50 -0700 | [diff] [blame] | 43 | static constexpr const char* kBootClassPathKey = "bootclasspath"; |
| Andreas Gampe | f8cd890 | 2017-01-18 16:05:01 -0800 | [diff] [blame] | 44 | static constexpr const char* kConcurrentCopying = "concurrent-copying"; |
| Calin Juravle | 0e09dfc | 2018-02-12 19:01:09 -0800 | [diff] [blame] | 45 | static constexpr const char* kCompilationReasonKey = "compilation-reason"; |
| Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 46 | |
| Sebastien Hertz | 0de1133 | 2015-05-13 12:14:05 +0200 | [diff] [blame] | 47 | static constexpr const char kTrueValue[] = "true"; |
| 48 | static constexpr const char kFalseValue[] = "false"; |
| Calin Juravle | b077e15 | 2016-02-18 18:47:37 +0000 | [diff] [blame] | 49 | |
| Sebastien Hertz | 0de1133 | 2015-05-13 12:14:05 +0200 | [diff] [blame] | 50 | |
| Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 51 | static OatHeader* Create(InstructionSet instruction_set, |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 52 | const InstructionSetFeatures* instruction_set_features, |
| Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 53 | uint32_t dex_file_count, |
| Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 54 | const SafeMap<std::string, std::string>* variable_data); |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 55 | |
| 56 | bool IsValid() const; |
| Andreas Gampe | 2bcb3b2 | 2014-12-12 15:25:14 -0800 | [diff] [blame] | 57 | std::string GetValidationErrorMessage() const; |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 58 | const char* GetMagic() const; |
| 59 | uint32_t GetChecksum() const; |
| Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 60 | void UpdateChecksumWithHeaderData(); |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 61 | void UpdateChecksum(const void* data, size_t length); |
| Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 62 | uint32_t GetDexFileCount() const { |
| 63 | DCHECK(IsValid()); |
| 64 | return dex_file_count_; |
| 65 | } |
| Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 66 | uint32_t GetOatDexFilesOffset() const; |
| 67 | void SetOatDexFilesOffset(uint32_t oat_dex_files_offset); |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 68 | uint32_t GetExecutableOffset() const; |
| 69 | void SetExecutableOffset(uint32_t executable_offset); |
| Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 70 | |
| 71 | const void* GetInterpreterToInterpreterBridge() const; |
| 72 | uint32_t GetInterpreterToInterpreterBridgeOffset() const; |
| 73 | void SetInterpreterToInterpreterBridgeOffset(uint32_t offset); |
| 74 | const void* GetInterpreterToCompiledCodeBridge() const; |
| 75 | uint32_t GetInterpreterToCompiledCodeBridgeOffset() const; |
| 76 | void SetInterpreterToCompiledCodeBridgeOffset(uint32_t offset); |
| 77 | |
| 78 | const void* GetJniDlsymLookup() const; |
| 79 | uint32_t GetJniDlsymLookupOffset() const; |
| 80 | void SetJniDlsymLookupOffset(uint32_t offset); |
| 81 | |
| Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 82 | const void* GetQuickGenericJniTrampoline() const; |
| 83 | uint32_t GetQuickGenericJniTrampolineOffset() const; |
| 84 | void SetQuickGenericJniTrampolineOffset(uint32_t offset); |
| Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 85 | const void* GetQuickResolutionTrampoline() const; |
| 86 | uint32_t GetQuickResolutionTrampolineOffset() const; |
| 87 | void SetQuickResolutionTrampolineOffset(uint32_t offset); |
| Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 88 | const void* GetQuickImtConflictTrampoline() const; |
| 89 | uint32_t GetQuickImtConflictTrampolineOffset() const; |
| 90 | void SetQuickImtConflictTrampolineOffset(uint32_t offset); |
| Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 91 | const void* GetQuickToInterpreterBridge() const; |
| 92 | uint32_t GetQuickToInterpreterBridgeOffset() const; |
| 93 | void SetQuickToInterpreterBridgeOffset(uint32_t offset); |
| 94 | |
| Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 95 | InstructionSet GetInstructionSet() const; |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 96 | uint32_t GetInstructionSetFeaturesBitmap() const; |
| Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 97 | |
| Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 98 | uint32_t GetImageFileLocationOatChecksum() const; |
| Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 99 | void SetImageFileLocationOatChecksum(uint32_t image_file_location_oat_checksum); |
| Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 100 | |
| 101 | uint32_t GetKeyValueStoreSize() const; |
| 102 | const uint8_t* GetKeyValueStore() const; |
| 103 | const char* GetStoreValueByKey(const char* key) const; |
| 104 | bool GetStoreKeyValuePairByIndex(size_t index, const char** key, const char** value) const; |
| 105 | |
| 106 | size_t GetHeaderSize() const; |
| Sebastien Hertz | 0de1133 | 2015-05-13 12:14:05 +0200 | [diff] [blame] | 107 | bool IsDebuggable() const; |
| David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 108 | bool IsNativeDebuggable() const; |
| Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 109 | CompilerFilter::Filter GetCompilerFilter() const; |
| Andreas Gampe | f8cd890 | 2017-01-18 16:05:01 -0800 | [diff] [blame] | 110 | bool IsConcurrentCopying() const; |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 111 | |
| 112 | private: |
| Calin Juravle | b077e15 | 2016-02-18 18:47:37 +0000 | [diff] [blame] | 113 | bool KeyHasValue(const char* key, const char* value, size_t value_size) const; |
| 114 | |
| Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 115 | OatHeader(InstructionSet instruction_set, |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 116 | const InstructionSetFeatures* instruction_set_features, |
| Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 117 | uint32_t dex_file_count, |
| Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 118 | const SafeMap<std::string, std::string>* variable_data); |
| 119 | |
| Sebastien Hertz | 0de1133 | 2015-05-13 12:14:05 +0200 | [diff] [blame] | 120 | // Returns true if the value of the given key is "true", false otherwise. |
| 121 | bool IsKeyEnabled(const char* key) const; |
| 122 | |
| Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 123 | void Flatten(const SafeMap<std::string, std::string>* variable_data); |
| 124 | |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 125 | uint8_t magic_[4]; |
| 126 | uint8_t version_[4]; |
| 127 | uint32_t adler32_checksum_; |
| Elliott Hughes | a72ec82 | 2012-03-05 17:12:22 -0800 | [diff] [blame] | 128 | |
| 129 | InstructionSet instruction_set_; |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 130 | uint32_t instruction_set_features_bitmap_; |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 131 | uint32_t dex_file_count_; |
| Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 132 | uint32_t oat_dex_files_offset_; |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 133 | uint32_t executable_offset_; |
| Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 134 | uint32_t interpreter_to_interpreter_bridge_offset_; |
| 135 | uint32_t interpreter_to_compiled_code_bridge_offset_; |
| 136 | uint32_t jni_dlsym_lookup_offset_; |
| Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 137 | uint32_t quick_generic_jni_trampoline_offset_; |
| Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 138 | uint32_t quick_imt_conflict_trampoline_offset_; |
| Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 139 | uint32_t quick_resolution_trampoline_offset_; |
| Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 140 | uint32_t quick_to_interpreter_bridge_offset_; |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 141 | |
| Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 142 | uint32_t image_file_location_oat_checksum_; |
| Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 143 | |
| 144 | uint32_t key_value_store_size_; |
| 145 | uint8_t key_value_store_[0]; // note variable width data at end |
| Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 146 | |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 147 | DISALLOW_COPY_AND_ASSIGN(OatHeader); |
| 148 | }; |
| 149 | |
| Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 150 | // OatMethodOffsets are currently 5x32-bits=160-bits long, so if we can |
| Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 151 | // save even one OatMethodOffsets struct, the more complicated encoding |
| Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 152 | // using a bitmap pays for itself since few classes will have 160 |
| Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 153 | // methods. |
| 154 | enum OatClassType { |
| 155 | kOatClassAllCompiled = 0, // OatClass is followed by an OatMethodOffsets for each method. |
| 156 | kOatClassSomeCompiled = 1, // A bitmap of which OatMethodOffsets are present follows the OatClass. |
| Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 157 | kOatClassNoneCompiled = 2, // All methods are interpreted so no OatMethodOffsets are necessary. |
| Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 158 | kOatClassMax = 3, |
| 159 | }; |
| 160 | |
| 161 | std::ostream& operator<<(std::ostream& os, const OatClassType& rhs); |
| 162 | |
| Ian Rogers | df1ce91 | 2012-11-27 17:07:11 -0800 | [diff] [blame] | 163 | class PACKED(4) OatMethodOffsets { |
| Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 164 | public: |
| Chih-Hung Hsieh | a593118 | 2016-09-01 15:08:13 -0700 | [diff] [blame] | 165 | explicit OatMethodOffsets(uint32_t code_offset = 0); |
| Logan Chien | 971bf3f | 2012-05-01 15:47:55 +0800 | [diff] [blame] | 166 | |
| Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 167 | ~OatMethodOffsets(); |
| 168 | |
| Yi Kong | 2665bc8 | 2017-05-09 15:55:57 -0700 | [diff] [blame] | 169 | OatMethodOffsets(const OatMethodOffsets&) = default; |
| Andreas Gampe | 758a801 | 2015-04-03 21:28:42 -0700 | [diff] [blame] | 170 | OatMethodOffsets& operator=(const OatMethodOffsets&) = default; |
| 171 | |
| Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 172 | uint32_t code_offset_; |
| Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 173 | }; |
| 174 | |
| Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 175 | } // namespace art |
| 176 | |
| Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 177 | #endif // ART_RUNTIME_OAT_H_ |