blob: de840b58700e61bfa9367bb0b56353a56663258c [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
Elliott Hughes76160052012-12-12 16:31:20 -080022#include "base/macros.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070023#include "dex_file.h"
Elliott Hughes0f3c5532012-03-30 14:51:51 -070024#include "instruction_set.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070025
26namespace art {
27
Ian Rogersdf1ce912012-11-27 17:07:11 -080028class PACKED(4) OatHeader {
Brian Carlstrome24fa612011-09-29 00:53:55 -070029 public:
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070030 static const uint8_t kOatMagic[4];
31 static const uint8_t kOatVersion[4];
32
Elliott Hughesa72ec822012-03-05 17:12:22 -080033 OatHeader();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070034 OatHeader(InstructionSet instruction_set,
Dave Allison70202782013-10-22 17:52:19 -070035 const InstructionSetFeatures& instruction_set_features,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070036 const std::vector<const DexFile*>* dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070037 uint32_t image_file_location_oat_checksum,
Brian Carlstrom700c8d32012-11-05 10:42:02 -080038 uint32_t image_file_location_oat_data_begin,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070039 const std::string& image_file_location);
Brian Carlstrome24fa612011-09-29 00:53:55 -070040
41 bool IsValid() const;
42 const char* GetMagic() const;
43 uint32_t GetChecksum() const;
44 void UpdateChecksum(const void* data, size_t length);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070045 uint32_t GetDexFileCount() const {
46 DCHECK(IsValid());
47 return dex_file_count_;
48 }
Brian Carlstrome24fa612011-09-29 00:53:55 -070049 uint32_t GetExecutableOffset() const;
50 void SetExecutableOffset(uint32_t executable_offset);
Ian Rogers468532e2013-08-05 10:56:33 -070051
52 const void* GetInterpreterToInterpreterBridge() const;
53 uint32_t GetInterpreterToInterpreterBridgeOffset() const;
54 void SetInterpreterToInterpreterBridgeOffset(uint32_t offset);
55 const void* GetInterpreterToCompiledCodeBridge() const;
56 uint32_t GetInterpreterToCompiledCodeBridgeOffset() const;
57 void SetInterpreterToCompiledCodeBridgeOffset(uint32_t offset);
58
59 const void* GetJniDlsymLookup() const;
60 uint32_t GetJniDlsymLookupOffset() const;
61 void SetJniDlsymLookupOffset(uint32_t offset);
62
Jeff Hao0aba0ba2013-06-03 14:49:28 -070063 const void* GetPortableResolutionTrampoline() const;
64 uint32_t GetPortableResolutionTrampolineOffset() const;
65 void SetPortableResolutionTrampolineOffset(uint32_t offset);
Jeff Hao88474b42013-10-23 16:24:40 -070066 const void* GetPortableImtConflictTrampoline() const;
67 uint32_t GetPortableImtConflictTrampolineOffset() const;
68 void SetPortableImtConflictTrampolineOffset(uint32_t offset);
Ian Rogers468532e2013-08-05 10:56:33 -070069 const void* GetPortableToInterpreterBridge() const;
70 uint32_t GetPortableToInterpreterBridgeOffset() const;
71 void SetPortableToInterpreterBridgeOffset(uint32_t offset);
72
Jeff Hao0aba0ba2013-06-03 14:49:28 -070073 const void* GetQuickResolutionTrampoline() const;
74 uint32_t GetQuickResolutionTrampolineOffset() const;
75 void SetQuickResolutionTrampolineOffset(uint32_t offset);
Jeff Hao88474b42013-10-23 16:24:40 -070076 const void* GetQuickImtConflictTrampoline() const;
77 uint32_t GetQuickImtConflictTrampolineOffset() const;
78 void SetQuickImtConflictTrampolineOffset(uint32_t offset);
Ian Rogers468532e2013-08-05 10:56:33 -070079 const void* GetQuickToInterpreterBridge() const;
80 uint32_t GetQuickToInterpreterBridgeOffset() const;
81 void SetQuickToInterpreterBridgeOffset(uint32_t offset);
82
Jeff Hao0aba0ba2013-06-03 14:49:28 -070083 InstructionSet GetInstructionSet() const;
Dave Allison70202782013-10-22 17:52:19 -070084 const InstructionSetFeatures& GetInstructionSetFeatures() const;
Brian Carlstrom28db0122012-10-18 16:20:41 -070085 uint32_t GetImageFileLocationOatChecksum() const;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080086 uint32_t GetImageFileLocationOatDataBegin() const;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070087 uint32_t GetImageFileLocationSize() const;
88 const uint8_t* GetImageFileLocationData() const;
89 std::string GetImageFileLocation() const;
Brian Carlstrome24fa612011-09-29 00:53:55 -070090
91 private:
Brian Carlstrome24fa612011-09-29 00:53:55 -070092 uint8_t magic_[4];
93 uint8_t version_[4];
94 uint32_t adler32_checksum_;
Elliott Hughesa72ec822012-03-05 17:12:22 -080095
96 InstructionSet instruction_set_;
Dave Allison70202782013-10-22 17:52:19 -070097 InstructionSetFeatures instruction_set_features_;
Brian Carlstrome24fa612011-09-29 00:53:55 -070098 uint32_t dex_file_count_;
99 uint32_t executable_offset_;
Ian Rogers468532e2013-08-05 10:56:33 -0700100 uint32_t interpreter_to_interpreter_bridge_offset_;
101 uint32_t interpreter_to_compiled_code_bridge_offset_;
102 uint32_t jni_dlsym_lookup_offset_;
Jeff Hao88474b42013-10-23 16:24:40 -0700103 uint32_t portable_imt_conflict_trampoline_offset_;
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700104 uint32_t portable_resolution_trampoline_offset_;
Ian Rogers468532e2013-08-05 10:56:33 -0700105 uint32_t portable_to_interpreter_bridge_offset_;
Jeff Hao88474b42013-10-23 16:24:40 -0700106 uint32_t quick_imt_conflict_trampoline_offset_;
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700107 uint32_t quick_resolution_trampoline_offset_;
Ian Rogers468532e2013-08-05 10:56:33 -0700108 uint32_t quick_to_interpreter_bridge_offset_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700109
Brian Carlstrom28db0122012-10-18 16:20:41 -0700110 uint32_t image_file_location_oat_checksum_;
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800111 uint32_t image_file_location_oat_data_begin_;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700112 uint32_t image_file_location_size_;
113 uint8_t image_file_location_data_[0]; // note variable width data at end
114
Brian Carlstrome24fa612011-09-29 00:53:55 -0700115 DISALLOW_COPY_AND_ASSIGN(OatHeader);
116};
117
Brian Carlstromba150c32013-08-27 17:31:03 -0700118// OatMethodOffsets are currently 7x32-bits=224-bits long, so if we can
119// save even one OatMethodOffsets struct, the more complicated encoding
120// using a bitmap pays for itself since few classes will have 224
121// methods.
122enum OatClassType {
123 kOatClassAllCompiled = 0, // OatClass is followed by an OatMethodOffsets for each method.
124 kOatClassSomeCompiled = 1, // A bitmap of which OatMethodOffsets are present follows the OatClass.
125 kOatClassNoneCompiled = 2, // All methods are interpretted so no OatMethodOffsets are necessary.
126 kOatClassMax = 3,
127};
128
129std::ostream& operator<<(std::ostream& os, const OatClassType& rhs);
130
Ian Rogersdf1ce912012-11-27 17:07:11 -0800131class PACKED(4) OatMethodOffsets {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700132 public:
133 OatMethodOffsets();
Logan Chien971bf3f2012-05-01 15:47:55 +0800134
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700135 OatMethodOffsets(uint32_t code_offset,
136 uint32_t frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700137 uint32_t core_spill_mask,
138 uint32_t fp_spill_mask,
139 uint32_t mapping_table_offset,
140 uint32_t vmap_table_offset,
Brian Carlstromdf629502013-07-17 22:39:56 -0700141 uint32_t gc_map_offset);
Logan Chien971bf3f2012-05-01 15:47:55 +0800142
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700143 ~OatMethodOffsets();
144
145 uint32_t code_offset_;
146 uint32_t frame_size_in_bytes_;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700147 uint32_t core_spill_mask_;
148 uint32_t fp_spill_mask_;
149 uint32_t mapping_table_offset_;
150 uint32_t vmap_table_offset_;
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800151 uint32_t gc_map_offset_;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700152};
153
Brian Carlstrome24fa612011-09-29 00:53:55 -0700154} // namespace art
155
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700156#endif // ART_RUNTIME_OAT_H_