blob: e7e9a5863e001ad879545d60b81f7b4827d014bb [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 Carlstrome24fa612011-09-29 00:53:55 -070016
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_OAT_H_
18#define ART_RUNTIME_OAT_H_
Brian Carlstrome24fa612011-09-29 00:53:55 -070019
David Srbeckye5d93b52019-02-27 15:10:52 +000020#include <array>
Brian Carlstrome24fa612011-09-29 00:53:55 -070021#include <vector>
22
Eric Holkc7ac91b2021-02-04 21:44:01 +000023#include "base/compiler_filter.h"
Elliott Hughes76160052012-12-12 16:31:20 -080024#include "base/macros.h"
David Sehr67bf42e2018-02-26 16:43:04 -080025#include "base/safe_map.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070026
27namespace art {
28
Andreas Gampe639b2b12019-01-08 10:32:50 -080029enum class InstructionSet;
Ian Rogersd582fa42014-11-05 23:46:43 -080030class InstructionSetFeatures;
31
Ian Rogersdf1ce912012-11-27 17:07:11 -080032class PACKED(4) OatHeader {
Brian Carlstrome24fa612011-09-29 00:53:55 -070033 public:
David Srbeckye5d93b52019-02-27 15:10:52 +000034 static constexpr std::array<uint8_t, 4> kOatMagic { { 'o', 'a', 't', '\n' } };
Nicolas Geoffrayc39af942021-01-25 08:43:57 +000035 // Last oat version changed reason: Nterp trampoline.
36 static constexpr std::array<uint8_t, 4> kOatVersion { { '1', '9', '0', '\0' } };
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070037
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070038 static constexpr const char* kDex2OatCmdLineKey = "dex2oat-cmdline";
Sebastien Hertz0de11332015-05-13 12:14:05 +020039 static constexpr const char* kDebuggableKey = "debuggable";
David Srbecky5d950762016-03-07 20:47:29 +000040 static constexpr const char* kNativeDebuggableKey = "native-debuggable";
Andreas Gampe29d38e72016-03-23 15:31:51 +000041 static constexpr const char* kCompilerFilter = "compiler-filter";
Andreas Gampe7848da42015-04-09 11:15:04 -070042 static constexpr const char* kClassPathKey = "classpath";
Jeff Haof0192c82016-03-28 20:39:50 -070043 static constexpr const char* kBootClassPathKey = "bootclasspath";
Vladimir Marko0ace5632018-12-14 11:11:47 +000044 static constexpr const char* kBootClassPathChecksumsKey = "bootclasspath-checksums";
Andreas Gampef8cd8902017-01-18 16:05:01 -080045 static constexpr const char* kConcurrentCopying = "concurrent-copying";
Calin Juravle0e09dfc2018-02-12 19:01:09 -080046 static constexpr const char* kCompilationReasonKey = "compilation-reason";
Eric Holkbc89ed42020-04-29 19:59:24 +000047 static constexpr const char* kRequiresImage = "requires-image";
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070048
Sebastien Hertz0de11332015-05-13 12:14:05 +020049 static constexpr const char kTrueValue[] = "true";
50 static constexpr const char kFalseValue[] = "false";
Calin Juravleb077e152016-02-18 18:47:37 +000051
Sebastien Hertz0de11332015-05-13 12:14:05 +020052
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070053 static OatHeader* Create(InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -070054 const InstructionSetFeatures* instruction_set_features,
Vladimir Marko49b0f452015-12-10 13:49:19 +000055 uint32_t dex_file_count,
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070056 const SafeMap<std::string, std::string>* variable_data);
Brian Carlstrome24fa612011-09-29 00:53:55 -070057
58 bool IsValid() const;
Andreas Gampe2bcb3b22014-12-12 15:25:14 -080059 std::string GetValidationErrorMessage() const;
David Srbeckye5d93b52019-02-27 15:10:52 +000060 static void CheckOatVersion(std::array<uint8_t, 4> version);
Brian Carlstrome24fa612011-09-29 00:53:55 -070061 const char* GetMagic() const;
62 uint32_t GetChecksum() const;
Vladimir Markoc10a0c62018-11-16 11:39:22 +000063 void SetChecksum(uint32_t checksum);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070064 uint32_t GetDexFileCount() const {
65 DCHECK(IsValid());
66 return dex_file_count_;
67 }
Vladimir Marko0eb882b2017-05-15 13:39:18 +010068 uint32_t GetOatDexFilesOffset() const;
69 void SetOatDexFilesOffset(uint32_t oat_dex_files_offset);
Brian Carlstrome24fa612011-09-29 00:53:55 -070070 uint32_t GetExecutableOffset() const;
71 void SetExecutableOffset(uint32_t executable_offset);
Ian Rogers468532e2013-08-05 10:56:33 -070072
Vladimir Marko7dac8642019-11-06 17:09:30 +000073 const void* GetJniDlsymLookupTrampoline() const;
74 uint32_t GetJniDlsymLookupTrampolineOffset() const;
75 void SetJniDlsymLookupTrampolineOffset(uint32_t offset);
Vladimir Markofa458ac2020-02-12 14:08:07 +000076 const void* GetJniDlsymLookupCriticalTrampoline() const;
77 uint32_t GetJniDlsymLookupCriticalTrampolineOffset() const;
78 void SetJniDlsymLookupCriticalTrampolineOffset(uint32_t offset);
Ian Rogers468532e2013-08-05 10:56:33 -070079
Andreas Gampe2da88232014-02-27 12:26:20 -080080 const void* GetQuickGenericJniTrampoline() const;
81 uint32_t GetQuickGenericJniTrampolineOffset() const;
82 void SetQuickGenericJniTrampolineOffset(uint32_t offset);
Jeff Hao0aba0ba2013-06-03 14:49:28 -070083 const void* GetQuickResolutionTrampoline() const;
84 uint32_t GetQuickResolutionTrampolineOffset() const;
85 void SetQuickResolutionTrampolineOffset(uint32_t offset);
Jeff Hao88474b42013-10-23 16:24:40 -070086 const void* GetQuickImtConflictTrampoline() const;
87 uint32_t GetQuickImtConflictTrampolineOffset() const;
88 void SetQuickImtConflictTrampolineOffset(uint32_t offset);
Ian Rogers468532e2013-08-05 10:56:33 -070089 const void* GetQuickToInterpreterBridge() const;
90 uint32_t GetQuickToInterpreterBridgeOffset() const;
91 void SetQuickToInterpreterBridgeOffset(uint32_t offset);
Nicolas Geoffrayc39af942021-01-25 08:43:57 +000092 const void* GetNterpTrampoline() const;
93 uint32_t GetNterpTrampolineOffset() const;
94 void SetNterpTrampolineOffset(uint32_t offset);
Ian Rogers468532e2013-08-05 10:56:33 -070095
Jeff Hao0aba0ba2013-06-03 14:49:28 -070096 InstructionSet GetInstructionSet() const;
Ian Rogers6f3dbba2014-10-14 17:41:57 -070097 uint32_t GetInstructionSetFeaturesBitmap() const;
Vladimir Marko49b0f452015-12-10 13:49:19 +000098
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070099 uint32_t GetKeyValueStoreSize() const;
100 const uint8_t* GetKeyValueStore() const;
101 const char* GetStoreValueByKey(const char* key) const;
102 bool GetStoreKeyValuePairByIndex(size_t index, const char** key, const char** value) const;
103
104 size_t GetHeaderSize() const;
Sebastien Hertz0de11332015-05-13 12:14:05 +0200105 bool IsDebuggable() const;
David Srbecky5d950762016-03-07 20:47:29 +0000106 bool IsNativeDebuggable() const;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000107 CompilerFilter::Filter GetCompilerFilter() const;
Andreas Gampef8cd8902017-01-18 16:05:01 -0800108 bool IsConcurrentCopying() const;
Eric Holkbc89ed42020-04-29 19:59:24 +0000109 bool RequiresImage() const;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700110
111 private:
Calin Juravleb077e152016-02-18 18:47:37 +0000112 bool KeyHasValue(const char* key, const char* value, size_t value_size) const;
113
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700114 OatHeader(InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700115 const InstructionSetFeatures* instruction_set_features,
Vladimir Marko49b0f452015-12-10 13:49:19 +0000116 uint32_t dex_file_count,
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700117 const SafeMap<std::string, std::string>* variable_data);
118
Sebastien Hertz0de11332015-05-13 12:14:05 +0200119 // Returns true if the value of the given key is "true", false otherwise.
120 bool IsKeyEnabled(const char* key) const;
121
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700122 void Flatten(const SafeMap<std::string, std::string>* variable_data);
123
David Srbeckye5d93b52019-02-27 15:10:52 +0000124 std::array<uint8_t, 4> magic_;
125 std::array<uint8_t, 4> version_;
Vladimir Markoc10a0c62018-11-16 11:39:22 +0000126 uint32_t oat_checksum_;
Elliott Hughesa72ec822012-03-05 17:12:22 -0800127
128 InstructionSet instruction_set_;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700129 uint32_t instruction_set_features_bitmap_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700130 uint32_t dex_file_count_;
Vladimir Marko0eb882b2017-05-15 13:39:18 +0100131 uint32_t oat_dex_files_offset_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700132 uint32_t executable_offset_;
Vladimir Marko7dac8642019-11-06 17:09:30 +0000133 uint32_t jni_dlsym_lookup_trampoline_offset_;
Vladimir Markofa458ac2020-02-12 14:08:07 +0000134 uint32_t jni_dlsym_lookup_critical_trampoline_offset_;
Andreas Gampe2da88232014-02-27 12:26:20 -0800135 uint32_t quick_generic_jni_trampoline_offset_;
Jeff Hao88474b42013-10-23 16:24:40 -0700136 uint32_t quick_imt_conflict_trampoline_offset_;
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700137 uint32_t quick_resolution_trampoline_offset_;
Ian Rogers468532e2013-08-05 10:56:33 -0700138 uint32_t quick_to_interpreter_bridge_offset_;
Nicolas Geoffrayc39af942021-01-25 08:43:57 +0000139 uint32_t nterp_trampoline_offset_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700140
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700141 uint32_t key_value_store_size_;
142 uint8_t key_value_store_[0]; // note variable width data at end
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700143
Brian Carlstrome24fa612011-09-29 00:53:55 -0700144 DISALLOW_COPY_AND_ASSIGN(OatHeader);
145};
146
Brian Carlstrome24fa612011-09-29 00:53:55 -0700147} // namespace art
148
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700149#endif // ART_RUNTIME_OAT_H_