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 | |
David Srbecky | e5d93b5 | 2019-02-27 15:10:52 +0000 | [diff] [blame] | 20 | #include <array> |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 21 | #include <vector> |
| 22 | |
Eric Holk | c7ac91b | 2021-02-04 21:44:01 +0000 | [diff] [blame] | 23 | #include "base/compiler_filter.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 24 | #include "base/macros.h" |
David Sehr | 67bf42e | 2018-02-26 16:43:04 -0800 | [diff] [blame] | 25 | #include "base/safe_map.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 26 | |
| 27 | namespace art { |
| 28 | |
Andreas Gampe | 639b2b1 | 2019-01-08 10:32:50 -0800 | [diff] [blame] | 29 | enum class InstructionSet; |
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: |
David Srbecky | e5d93b5 | 2019-02-27 15:10:52 +0000 | [diff] [blame] | 34 | static constexpr std::array<uint8_t, 4> kOatMagic { { 'o', 'a', 't', '\n' } }; |
Santiago Aboy Solanes | 69a87e3 | 2022-03-08 16:43:54 +0000 | [diff] [blame] | 35 | // Last oat version changed reason: Revert^4 "bss support for inlining BCP into non-BCP". |
| 36 | static constexpr std::array<uint8_t, 4> kOatVersion { { '2', '2', '5', '\0' } }; |
Brian Carlstrom | 7c3d13a | 2013-09-04 17:15:11 -0700 | [diff] [blame] | 37 | |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 38 | static constexpr const char* kDex2OatCmdLineKey = "dex2oat-cmdline"; |
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"; |
Vladimir Marko | 0ace563 | 2018-12-14 11:11:47 +0000 | [diff] [blame] | 44 | static constexpr const char* kBootClassPathChecksumsKey = "bootclasspath-checksums"; |
Nicolas Geoffray | d3c45c2 | 2021-04-27 13:21:28 +0100 | [diff] [blame] | 45 | static constexpr const char* kApexVersionsKey = "apex-versions"; |
Andreas Gampe | f8cd890 | 2017-01-18 16:05:01 -0800 | [diff] [blame] | 46 | static constexpr const char* kConcurrentCopying = "concurrent-copying"; |
Calin Juravle | 0e09dfc | 2018-02-12 19:01:09 -0800 | [diff] [blame] | 47 | static constexpr const char* kCompilationReasonKey = "compilation-reason"; |
Eric Holk | bc89ed4 | 2020-04-29 19:59:24 +0000 | [diff] [blame] | 48 | static constexpr const char* kRequiresImage = "requires-image"; |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 49 | |
Sebastien Hertz | 0de1133 | 2015-05-13 12:14:05 +0200 | [diff] [blame] | 50 | static constexpr const char kTrueValue[] = "true"; |
| 51 | static constexpr const char kFalseValue[] = "false"; |
Calin Juravle | b077e15 | 2016-02-18 18:47:37 +0000 | [diff] [blame] | 52 | |
Sebastien Hertz | 0de1133 | 2015-05-13 12:14:05 +0200 | [diff] [blame] | 53 | |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 54 | static OatHeader* Create(InstructionSet instruction_set, |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 55 | const InstructionSetFeatures* instruction_set_features, |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 56 | uint32_t dex_file_count, |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 57 | const SafeMap<std::string, std::string>* variable_data); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 58 | |
| 59 | bool IsValid() const; |
Andreas Gampe | 2bcb3b2 | 2014-12-12 15:25:14 -0800 | [diff] [blame] | 60 | std::string GetValidationErrorMessage() const; |
David Srbecky | e5d93b5 | 2019-02-27 15:10:52 +0000 | [diff] [blame] | 61 | static void CheckOatVersion(std::array<uint8_t, 4> version); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 62 | const char* GetMagic() const; |
| 63 | uint32_t GetChecksum() const; |
Vladimir Marko | c10a0c6 | 2018-11-16 11:39:22 +0000 | [diff] [blame] | 64 | void SetChecksum(uint32_t checksum); |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 65 | uint32_t GetDexFileCount() const { |
| 66 | DCHECK(IsValid()); |
| 67 | return dex_file_count_; |
| 68 | } |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 69 | uint32_t GetOatDexFilesOffset() const; |
| 70 | void SetOatDexFilesOffset(uint32_t oat_dex_files_offset); |
Santiago Aboy Solanes | 69a87e3 | 2022-03-08 16:43:54 +0000 | [diff] [blame] | 71 | uint32_t GetBcpBssInfoOffset() const; |
| 72 | void SetBcpBssInfoOffset(uint32_t bcp_info_offset); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 73 | uint32_t GetExecutableOffset() const; |
| 74 | void SetExecutableOffset(uint32_t executable_offset); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 75 | |
Vladimir Marko | 7dac864 | 2019-11-06 17:09:30 +0000 | [diff] [blame] | 76 | const void* GetJniDlsymLookupTrampoline() const; |
| 77 | uint32_t GetJniDlsymLookupTrampolineOffset() const; |
| 78 | void SetJniDlsymLookupTrampolineOffset(uint32_t offset); |
Vladimir Marko | fa458ac | 2020-02-12 14:08:07 +0000 | [diff] [blame] | 79 | const void* GetJniDlsymLookupCriticalTrampoline() const; |
| 80 | uint32_t GetJniDlsymLookupCriticalTrampolineOffset() const; |
| 81 | void SetJniDlsymLookupCriticalTrampolineOffset(uint32_t offset); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 82 | |
Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 83 | const void* GetQuickGenericJniTrampoline() const; |
| 84 | uint32_t GetQuickGenericJniTrampolineOffset() const; |
| 85 | void SetQuickGenericJniTrampolineOffset(uint32_t offset); |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 86 | const void* GetQuickResolutionTrampoline() const; |
| 87 | uint32_t GetQuickResolutionTrampolineOffset() const; |
| 88 | void SetQuickResolutionTrampolineOffset(uint32_t offset); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 89 | const void* GetQuickImtConflictTrampoline() const; |
| 90 | uint32_t GetQuickImtConflictTrampolineOffset() const; |
| 91 | void SetQuickImtConflictTrampolineOffset(uint32_t offset); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 92 | const void* GetQuickToInterpreterBridge() const; |
| 93 | uint32_t GetQuickToInterpreterBridgeOffset() const; |
| 94 | void SetQuickToInterpreterBridgeOffset(uint32_t offset); |
Nicolas Geoffray | c39af94 | 2021-01-25 08:43:57 +0000 | [diff] [blame] | 95 | const void* GetNterpTrampoline() const; |
| 96 | uint32_t GetNterpTrampolineOffset() const; |
| 97 | void SetNterpTrampolineOffset(uint32_t offset); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 98 | |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 99 | InstructionSet GetInstructionSet() const; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 100 | uint32_t GetInstructionSetFeaturesBitmap() const; |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 101 | |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 102 | uint32_t GetKeyValueStoreSize() const; |
| 103 | const uint8_t* GetKeyValueStore() const; |
| 104 | const char* GetStoreValueByKey(const char* key) const; |
| 105 | bool GetStoreKeyValuePairByIndex(size_t index, const char** key, const char** value) const; |
| 106 | |
| 107 | size_t GetHeaderSize() const; |
Sebastien Hertz | 0de1133 | 2015-05-13 12:14:05 +0200 | [diff] [blame] | 108 | bool IsDebuggable() const; |
David Srbecky | 5d95076 | 2016-03-07 20:47:29 +0000 | [diff] [blame] | 109 | bool IsNativeDebuggable() const; |
Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 110 | CompilerFilter::Filter GetCompilerFilter() const; |
Andreas Gampe | f8cd890 | 2017-01-18 16:05:01 -0800 | [diff] [blame] | 111 | bool IsConcurrentCopying() const; |
Eric Holk | bc89ed4 | 2020-04-29 19:59:24 +0000 | [diff] [blame] | 112 | bool RequiresImage() const; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 113 | |
| 114 | private: |
Calin Juravle | b077e15 | 2016-02-18 18:47:37 +0000 | [diff] [blame] | 115 | bool KeyHasValue(const char* key, const char* value, size_t value_size) const; |
| 116 | |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 117 | OatHeader(InstructionSet instruction_set, |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 118 | const InstructionSetFeatures* instruction_set_features, |
Vladimir Marko | 49b0f45 | 2015-12-10 13:49:19 +0000 | [diff] [blame] | 119 | uint32_t dex_file_count, |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 120 | const SafeMap<std::string, std::string>* variable_data); |
| 121 | |
Sebastien Hertz | 0de1133 | 2015-05-13 12:14:05 +0200 | [diff] [blame] | 122 | // Returns true if the value of the given key is "true", false otherwise. |
| 123 | bool IsKeyEnabled(const char* key) const; |
| 124 | |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 125 | void Flatten(const SafeMap<std::string, std::string>* variable_data); |
| 126 | |
David Srbecky | e5d93b5 | 2019-02-27 15:10:52 +0000 | [diff] [blame] | 127 | std::array<uint8_t, 4> magic_; |
| 128 | std::array<uint8_t, 4> version_; |
Vladimir Marko | c10a0c6 | 2018-11-16 11:39:22 +0000 | [diff] [blame] | 129 | uint32_t oat_checksum_; |
Elliott Hughes | a72ec82 | 2012-03-05 17:12:22 -0800 | [diff] [blame] | 130 | |
| 131 | InstructionSet instruction_set_; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 132 | uint32_t instruction_set_features_bitmap_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 133 | uint32_t dex_file_count_; |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 134 | uint32_t oat_dex_files_offset_; |
Santiago Aboy Solanes | 69a87e3 | 2022-03-08 16:43:54 +0000 | [diff] [blame] | 135 | uint32_t bcp_bss_info_offset_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 136 | uint32_t executable_offset_; |
Vladimir Marko | 7dac864 | 2019-11-06 17:09:30 +0000 | [diff] [blame] | 137 | uint32_t jni_dlsym_lookup_trampoline_offset_; |
Vladimir Marko | fa458ac | 2020-02-12 14:08:07 +0000 | [diff] [blame] | 138 | uint32_t jni_dlsym_lookup_critical_trampoline_offset_; |
Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 139 | uint32_t quick_generic_jni_trampoline_offset_; |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 140 | uint32_t quick_imt_conflict_trampoline_offset_; |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 141 | uint32_t quick_resolution_trampoline_offset_; |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 142 | uint32_t quick_to_interpreter_bridge_offset_; |
Nicolas Geoffray | c39af94 | 2021-01-25 08:43:57 +0000 | [diff] [blame] | 143 | uint32_t nterp_trampoline_offset_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 144 | |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 145 | uint32_t key_value_store_size_; |
| 146 | uint8_t key_value_store_[0]; // note variable width data at end |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 147 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 148 | DISALLOW_COPY_AND_ASSIGN(OatHeader); |
| 149 | }; |
| 150 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 151 | } // namespace art |
| 152 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 153 | #endif // ART_RUNTIME_OAT_H_ |