blob: c4a983e78b87c1a30b9bfd4c37fe213701849d0f [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
20#include <vector>
21
Ian Rogersd582fa42014-11-05 23:46:43 -080022#include "arch/instruction_set.h"
Elliott Hughes76160052012-12-12 16:31:20 -080023#include "base/macros.h"
Andreas Gampe29d38e72016-03-23 15:31:51 +000024#include "compiler_filter.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070025#include "dex_file.h"
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070026#include "safe_map.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070027
28namespace art {
29
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:
Andreas Gampe2bcb3b22014-12-12 15:25:14 -080034 static constexpr uint8_t kOatMagic[] = { 'o', 'a', 't', '\n' };
Alexey Frunze4147fcc2017-06-17 19:57:27 -070035 // Last oat version changed reason: MIPS Baker thunks.
36 static constexpr uint8_t kOatVersion[] = { '1', '3', '1', '\0' };
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070037
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070038 static constexpr const char* kImageLocationKey = "image-location";
39 static constexpr const char* kDex2OatCmdLineKey = "dex2oat-cmdline";
40 static constexpr const char* kDex2OatHostKey = "dex2oat-host";
Andreas Gampe7ba64962014-10-23 11:37:40 -070041 static constexpr const char* kPicKey = "pic";
Sebastien Hertz0de11332015-05-13 12:14:05 +020042 static constexpr const char* kDebuggableKey = "debuggable";
David Srbecky5d950762016-03-07 20:47:29 +000043 static constexpr const char* kNativeDebuggableKey = "native-debuggable";
Andreas Gampe29d38e72016-03-23 15:31:51 +000044 static constexpr const char* kCompilerFilter = "compiler-filter";
Andreas Gampe7848da42015-04-09 11:15:04 -070045 static constexpr const char* kClassPathKey = "classpath";
Jeff Haof0192c82016-03-28 20:39:50 -070046 static constexpr const char* kBootClassPathKey = "bootclasspath";
Andreas Gampef8cd8902017-01-18 16:05:01 -080047 static constexpr const char* kConcurrentCopying = "concurrent-copying";
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;
Brian Carlstrome24fa612011-09-29 00:53:55 -070060 const char* GetMagic() const;
61 uint32_t GetChecksum() const;
Vladimir Marko49b0f452015-12-10 13:49:19 +000062 void UpdateChecksumWithHeaderData();
Brian Carlstrome24fa612011-09-29 00:53:55 -070063 void UpdateChecksum(const void* data, size_t length);
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
73 const void* GetInterpreterToInterpreterBridge() const;
74 uint32_t GetInterpreterToInterpreterBridgeOffset() const;
75 void SetInterpreterToInterpreterBridgeOffset(uint32_t offset);
76 const void* GetInterpreterToCompiledCodeBridge() const;
77 uint32_t GetInterpreterToCompiledCodeBridgeOffset() const;
78 void SetInterpreterToCompiledCodeBridgeOffset(uint32_t offset);
79
80 const void* GetJniDlsymLookup() const;
81 uint32_t GetJniDlsymLookupOffset() const;
82 void SetJniDlsymLookupOffset(uint32_t offset);
83
Andreas Gampe2da88232014-02-27 12:26:20 -080084 const void* GetQuickGenericJniTrampoline() const;
85 uint32_t GetQuickGenericJniTrampolineOffset() const;
86 void SetQuickGenericJniTrampolineOffset(uint32_t offset);
Jeff Hao0aba0ba2013-06-03 14:49:28 -070087 const void* GetQuickResolutionTrampoline() const;
88 uint32_t GetQuickResolutionTrampolineOffset() const;
89 void SetQuickResolutionTrampolineOffset(uint32_t offset);
Jeff Hao88474b42013-10-23 16:24:40 -070090 const void* GetQuickImtConflictTrampoline() const;
91 uint32_t GetQuickImtConflictTrampolineOffset() const;
92 void SetQuickImtConflictTrampolineOffset(uint32_t offset);
Ian Rogers468532e2013-08-05 10:56:33 -070093 const void* GetQuickToInterpreterBridge() const;
94 uint32_t GetQuickToInterpreterBridgeOffset() const;
95 void SetQuickToInterpreterBridgeOffset(uint32_t offset);
96
Alex Lighta59dd802014-07-02 16:28:08 -070097 int32_t GetImagePatchDelta() const;
98 void RelocateOat(off_t delta);
99 void SetImagePatchDelta(int32_t off);
100
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700101 InstructionSet GetInstructionSet() const;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700102 uint32_t GetInstructionSetFeaturesBitmap() const;
Vladimir Marko49b0f452015-12-10 13:49:19 +0000103
Brian Carlstrom28db0122012-10-18 16:20:41 -0700104 uint32_t GetImageFileLocationOatChecksum() const;
Vladimir Marko49b0f452015-12-10 13:49:19 +0000105 void SetImageFileLocationOatChecksum(uint32_t image_file_location_oat_checksum);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800106 uint32_t GetImageFileLocationOatDataBegin() const;
Vladimir Marko49b0f452015-12-10 13:49:19 +0000107 void SetImageFileLocationOatDataBegin(uint32_t image_file_location_oat_data_begin);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700108
109 uint32_t GetKeyValueStoreSize() const;
110 const uint8_t* GetKeyValueStore() const;
111 const char* GetStoreValueByKey(const char* key) const;
112 bool GetStoreKeyValuePairByIndex(size_t index, const char** key, const char** value) const;
113
114 size_t GetHeaderSize() const;
Igor Murashkin46774762014-10-22 11:37:02 -0700115 bool IsPic() const;
Sebastien Hertz0de11332015-05-13 12:14:05 +0200116 bool IsDebuggable() const;
David Srbecky5d950762016-03-07 20:47:29 +0000117 bool IsNativeDebuggable() const;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000118 CompilerFilter::Filter GetCompilerFilter() const;
Andreas Gampef8cd8902017-01-18 16:05:01 -0800119 bool IsConcurrentCopying() const;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700120
121 private:
Calin Juravleb077e152016-02-18 18:47:37 +0000122 bool KeyHasValue(const char* key, const char* value, size_t value_size) const;
123
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700124 OatHeader(InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700125 const InstructionSetFeatures* instruction_set_features,
Vladimir Marko49b0f452015-12-10 13:49:19 +0000126 uint32_t dex_file_count,
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700127 const SafeMap<std::string, std::string>* variable_data);
128
Sebastien Hertz0de11332015-05-13 12:14:05 +0200129 // Returns true if the value of the given key is "true", false otherwise.
130 bool IsKeyEnabled(const char* key) const;
131
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700132 void Flatten(const SafeMap<std::string, std::string>* variable_data);
133
Brian Carlstrome24fa612011-09-29 00:53:55 -0700134 uint8_t magic_[4];
135 uint8_t version_[4];
136 uint32_t adler32_checksum_;
Elliott Hughesa72ec822012-03-05 17:12:22 -0800137
138 InstructionSet instruction_set_;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700139 uint32_t instruction_set_features_bitmap_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700140 uint32_t dex_file_count_;
Vladimir Marko0eb882b2017-05-15 13:39:18 +0100141 uint32_t oat_dex_files_offset_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700142 uint32_t executable_offset_;
Ian Rogers468532e2013-08-05 10:56:33 -0700143 uint32_t interpreter_to_interpreter_bridge_offset_;
144 uint32_t interpreter_to_compiled_code_bridge_offset_;
145 uint32_t jni_dlsym_lookup_offset_;
Andreas Gampe2da88232014-02-27 12:26:20 -0800146 uint32_t quick_generic_jni_trampoline_offset_;
Jeff Hao88474b42013-10-23 16:24:40 -0700147 uint32_t quick_imt_conflict_trampoline_offset_;
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700148 uint32_t quick_resolution_trampoline_offset_;
Ian Rogers468532e2013-08-05 10:56:33 -0700149 uint32_t quick_to_interpreter_bridge_offset_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700150
Alex Lighta59dd802014-07-02 16:28:08 -0700151 // The amount that the image this oat is associated with has been patched.
152 int32_t image_patch_delta_;
153
Brian Carlstrom28db0122012-10-18 16:20:41 -0700154 uint32_t image_file_location_oat_checksum_;
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800155 uint32_t image_file_location_oat_data_begin_;
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700156
157 uint32_t key_value_store_size_;
158 uint8_t key_value_store_[0]; // note variable width data at end
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700159
Brian Carlstrome24fa612011-09-29 00:53:55 -0700160 DISALLOW_COPY_AND_ASSIGN(OatHeader);
161};
162
Vladimir Marko8a630572014-04-09 18:45:35 +0100163// OatMethodOffsets are currently 5x32-bits=160-bits long, so if we can
Brian Carlstromba150c32013-08-27 17:31:03 -0700164// save even one OatMethodOffsets struct, the more complicated encoding
Vladimir Marko8a630572014-04-09 18:45:35 +0100165// using a bitmap pays for itself since few classes will have 160
Brian Carlstromba150c32013-08-27 17:31:03 -0700166// methods.
167enum OatClassType {
168 kOatClassAllCompiled = 0, // OatClass is followed by an OatMethodOffsets for each method.
169 kOatClassSomeCompiled = 1, // A bitmap of which OatMethodOffsets are present follows the OatClass.
Ian Rogers7b078e82014-09-10 14:44:24 -0700170 kOatClassNoneCompiled = 2, // All methods are interpreted so no OatMethodOffsets are necessary.
Brian Carlstromba150c32013-08-27 17:31:03 -0700171 kOatClassMax = 3,
172};
173
174std::ostream& operator<<(std::ostream& os, const OatClassType& rhs);
175
Ian Rogersdf1ce912012-11-27 17:07:11 -0800176class PACKED(4) OatMethodOffsets {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700177 public:
Chih-Hung Hsieha5931182016-09-01 15:08:13 -0700178 explicit OatMethodOffsets(uint32_t code_offset = 0);
Logan Chien971bf3f2012-05-01 15:47:55 +0800179
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700180 ~OatMethodOffsets();
181
Yi Kong2665bc82017-05-09 15:55:57 -0700182 OatMethodOffsets(const OatMethodOffsets&) = default;
Andreas Gampe758a8012015-04-03 21:28:42 -0700183 OatMethodOffsets& operator=(const OatMethodOffsets&) = default;
184
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700185 uint32_t code_offset_;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700186};
187
Brian Carlstrome24fa612011-09-29 00:53:55 -0700188} // namespace art
189
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700190#endif // ART_RUNTIME_OAT_H_