blob: 2aa5783bde255338975c03c8e28a047ab5b42cd5 [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"
Brian Carlstrome24fa612011-09-29 00:53:55 -070024#include "dex_file.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010025#include "quick/quick_method_frame_info.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' };
Andreas Gampe3cfa4d02015-10-06 17:04:01 -070035 static constexpr uint8_t kOatVersion[] = { '0', '7', '2', '\0' };
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070036
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070037 static constexpr const char* kImageLocationKey = "image-location";
38 static constexpr const char* kDex2OatCmdLineKey = "dex2oat-cmdline";
39 static constexpr const char* kDex2OatHostKey = "dex2oat-host";
Andreas Gampe7ba64962014-10-23 11:37:40 -070040 static constexpr const char* kPicKey = "pic";
Sebastien Hertz0de11332015-05-13 12:14:05 +020041 static constexpr const char* kDebuggableKey = "debuggable";
Andreas Gampe7848da42015-04-09 11:15:04 -070042 static constexpr const char* kClassPathKey = "classpath";
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070043
Sebastien Hertz0de11332015-05-13 12:14:05 +020044 static constexpr const char kTrueValue[] = "true";
45 static constexpr const char kFalseValue[] = "false";
46
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070047 static OatHeader* Create(InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -070048 const InstructionSetFeatures* instruction_set_features,
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070049 const std::vector<const DexFile*>* dex_files,
50 uint32_t image_file_location_oat_checksum,
51 uint32_t image_file_location_oat_data_begin,
52 const SafeMap<std::string, std::string>* variable_data);
Brian Carlstrome24fa612011-09-29 00:53:55 -070053
54 bool IsValid() const;
Andreas Gampe2bcb3b22014-12-12 15:25:14 -080055 std::string GetValidationErrorMessage() const;
Brian Carlstrome24fa612011-09-29 00:53:55 -070056 const char* GetMagic() const;
57 uint32_t GetChecksum() const;
58 void UpdateChecksum(const void* data, size_t length);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070059 uint32_t GetDexFileCount() const {
60 DCHECK(IsValid());
61 return dex_file_count_;
62 }
Brian Carlstrome24fa612011-09-29 00:53:55 -070063 uint32_t GetExecutableOffset() const;
64 void SetExecutableOffset(uint32_t executable_offset);
Ian Rogers468532e2013-08-05 10:56:33 -070065
66 const void* GetInterpreterToInterpreterBridge() const;
67 uint32_t GetInterpreterToInterpreterBridgeOffset() const;
68 void SetInterpreterToInterpreterBridgeOffset(uint32_t offset);
69 const void* GetInterpreterToCompiledCodeBridge() const;
70 uint32_t GetInterpreterToCompiledCodeBridgeOffset() const;
71 void SetInterpreterToCompiledCodeBridgeOffset(uint32_t offset);
72
73 const void* GetJniDlsymLookup() const;
74 uint32_t GetJniDlsymLookupOffset() const;
75 void SetJniDlsymLookupOffset(uint32_t offset);
76
Andreas Gampe2da88232014-02-27 12:26:20 -080077 const void* GetQuickGenericJniTrampoline() const;
78 uint32_t GetQuickGenericJniTrampolineOffset() const;
79 void SetQuickGenericJniTrampolineOffset(uint32_t offset);
Jeff Hao0aba0ba2013-06-03 14:49:28 -070080 const void* GetQuickResolutionTrampoline() const;
81 uint32_t GetQuickResolutionTrampolineOffset() const;
82 void SetQuickResolutionTrampolineOffset(uint32_t offset);
Jeff Hao88474b42013-10-23 16:24:40 -070083 const void* GetQuickImtConflictTrampoline() const;
84 uint32_t GetQuickImtConflictTrampolineOffset() const;
85 void SetQuickImtConflictTrampolineOffset(uint32_t offset);
Ian Rogers468532e2013-08-05 10:56:33 -070086 const void* GetQuickToInterpreterBridge() const;
87 uint32_t GetQuickToInterpreterBridgeOffset() const;
88 void SetQuickToInterpreterBridgeOffset(uint32_t offset);
89
Alex Lighta59dd802014-07-02 16:28:08 -070090 int32_t GetImagePatchDelta() const;
91 void RelocateOat(off_t delta);
92 void SetImagePatchDelta(int32_t off);
93
Jeff Hao0aba0ba2013-06-03 14:49:28 -070094 InstructionSet GetInstructionSet() const;
Ian Rogers6f3dbba2014-10-14 17:41:57 -070095 uint32_t GetInstructionSetFeaturesBitmap() const;
Brian Carlstrom28db0122012-10-18 16:20:41 -070096 uint32_t GetImageFileLocationOatChecksum() const;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080097 uint32_t GetImageFileLocationOatDataBegin() const;
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070098
99 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;
Igor Murashkin46774762014-10-22 11:37:02 -0700105 bool IsPic() const;
Sebastien Hertz0de11332015-05-13 12:14:05 +0200106 bool IsDebuggable() const;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700107
108 private:
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700109 OatHeader(InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700110 const InstructionSetFeatures* instruction_set_features,
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700111 const std::vector<const DexFile*>* dex_files,
112 uint32_t image_file_location_oat_checksum,
113 uint32_t image_file_location_oat_data_begin,
114 const SafeMap<std::string, std::string>* variable_data);
115
Sebastien Hertz0de11332015-05-13 12:14:05 +0200116 // Returns true if the value of the given key is "true", false otherwise.
117 bool IsKeyEnabled(const char* key) const;
118
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700119 void Flatten(const SafeMap<std::string, std::string>* variable_data);
120
Brian Carlstrome24fa612011-09-29 00:53:55 -0700121 uint8_t magic_[4];
122 uint8_t version_[4];
123 uint32_t adler32_checksum_;
Elliott Hughesa72ec822012-03-05 17:12:22 -0800124
125 InstructionSet instruction_set_;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700126 uint32_t instruction_set_features_bitmap_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700127 uint32_t dex_file_count_;
128 uint32_t executable_offset_;
Ian Rogers468532e2013-08-05 10:56:33 -0700129 uint32_t interpreter_to_interpreter_bridge_offset_;
130 uint32_t interpreter_to_compiled_code_bridge_offset_;
131 uint32_t jni_dlsym_lookup_offset_;
Andreas Gampe2da88232014-02-27 12:26:20 -0800132 uint32_t quick_generic_jni_trampoline_offset_;
Jeff Hao88474b42013-10-23 16:24:40 -0700133 uint32_t quick_imt_conflict_trampoline_offset_;
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700134 uint32_t quick_resolution_trampoline_offset_;
Ian Rogers468532e2013-08-05 10:56:33 -0700135 uint32_t quick_to_interpreter_bridge_offset_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700136
Alex Lighta59dd802014-07-02 16:28:08 -0700137 // The amount that the image this oat is associated with has been patched.
138 int32_t image_patch_delta_;
139
Brian Carlstrom28db0122012-10-18 16:20:41 -0700140 uint32_t image_file_location_oat_checksum_;
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800141 uint32_t image_file_location_oat_data_begin_;
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700142
143 uint32_t key_value_store_size_;
144 uint8_t key_value_store_[0]; // note variable width data at end
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700145
Brian Carlstrome24fa612011-09-29 00:53:55 -0700146 DISALLOW_COPY_AND_ASSIGN(OatHeader);
147};
148
Vladimir Marko8a630572014-04-09 18:45:35 +0100149// OatMethodOffsets are currently 5x32-bits=160-bits long, so if we can
Brian Carlstromba150c32013-08-27 17:31:03 -0700150// save even one OatMethodOffsets struct, the more complicated encoding
Vladimir Marko8a630572014-04-09 18:45:35 +0100151// using a bitmap pays for itself since few classes will have 160
Brian Carlstromba150c32013-08-27 17:31:03 -0700152// methods.
153enum OatClassType {
154 kOatClassAllCompiled = 0, // OatClass is followed by an OatMethodOffsets for each method.
155 kOatClassSomeCompiled = 1, // A bitmap of which OatMethodOffsets are present follows the OatClass.
Ian Rogers7b078e82014-09-10 14:44:24 -0700156 kOatClassNoneCompiled = 2, // All methods are interpreted so no OatMethodOffsets are necessary.
Brian Carlstromba150c32013-08-27 17:31:03 -0700157 kOatClassMax = 3,
158};
159
160std::ostream& operator<<(std::ostream& os, const OatClassType& rhs);
161
Ian Rogersdf1ce912012-11-27 17:07:11 -0800162class PACKED(4) OatMethodOffsets {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700163 public:
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800164 OatMethodOffsets(uint32_t code_offset = 0);
Logan Chien971bf3f2012-05-01 15:47:55 +0800165
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700166 ~OatMethodOffsets();
167
Andreas Gampe758a8012015-04-03 21:28:42 -0700168 OatMethodOffsets& operator=(const OatMethodOffsets&) = default;
169
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700170 uint32_t code_offset_;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700171};
172
Vladimir Marko7624d252014-05-02 14:40:15 +0100173// OatQuickMethodHeader precedes the raw code chunk generated by the Quick compiler.
174class PACKED(4) OatQuickMethodHeader {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100175 public:
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800176 OatQuickMethodHeader(uint32_t mapping_table_offset = 0U, uint32_t vmap_table_offset = 0U,
177 uint32_t gc_map_offset = 0U, uint32_t frame_size_in_bytes = 0U,
178 uint32_t core_spill_mask = 0U, uint32_t fp_spill_mask = 0U,
179 uint32_t code_size = 0U);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100180
Vladimir Marko7624d252014-05-02 14:40:15 +0100181 ~OatQuickMethodHeader();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100182
Andreas Gampe758a8012015-04-03 21:28:42 -0700183 OatQuickMethodHeader& operator=(const OatQuickMethodHeader&) = default;
184
Vladimir Marko8a630572014-04-09 18:45:35 +0100185 // The offset in bytes from the start of the mapping table to the end of the header.
186 uint32_t mapping_table_offset_;
187 // The offset in bytes from the start of the vmap table to the end of the header.
188 uint32_t vmap_table_offset_;
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800189 // The offset in bytes from the start of the gc map to the end of the header.
190 uint32_t gc_map_offset_;
Vladimir Marko7624d252014-05-02 14:40:15 +0100191 // The stack frame information.
192 QuickMethodFrameInfo frame_info_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100193 // The code size in bytes.
194 uint32_t code_size_;
195};
196
Brian Carlstrome24fa612011-09-29 00:53:55 -0700197} // namespace art
198
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700199#endif // ART_RUNTIME_OAT_H_