blob: b0a9aef4f036196a601675fe544f8e1da74aae5b [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
17#include "oat.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080018#include "utils.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070019
20#include <zlib.h>
21
22namespace art {
23
24const uint8_t OatHeader::kOatMagic[] = { 'o', 'a', 't', '\n' };
Brian Carlstrom28db0122012-10-18 16:20:41 -070025const uint8_t OatHeader::kOatVersion[] = { '0', '0', '3', '\0' };
Brian Carlstrome24fa612011-09-29 00:53:55 -070026
Elliott Hughesa72ec822012-03-05 17:12:22 -080027OatHeader::OatHeader() {
28 memset(this, 0, sizeof(*this));
29}
30
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070031OatHeader::OatHeader(InstructionSet instruction_set,
32 const std::vector<const DexFile*>* dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070033 uint32_t image_file_location_oat_checksum,
Brian Carlstrom700c8d32012-11-05 10:42:02 -080034 uint32_t image_file_location_oat_data_begin,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070035 const std::string& image_file_location) {
Brian Carlstrome24fa612011-09-29 00:53:55 -070036 memcpy(magic_, kOatMagic, sizeof(kOatMagic));
37 memcpy(version_, kOatVersion, sizeof(kOatVersion));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070038
Brian Carlstrome24fa612011-09-29 00:53:55 -070039 adler32_checksum_ = adler32(0L, Z_NULL, 0);
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070040
Brian Carlstromf852fb22012-10-19 11:01:58 -070041 CHECK_NE(instruction_set, kNone);
Elliott Hughesa72ec822012-03-05 17:12:22 -080042 instruction_set_ = instruction_set;
43 UpdateChecksum(&instruction_set_, sizeof(instruction_set_));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070044
Brian Carlstrome24fa612011-09-29 00:53:55 -070045 dex_file_count_ = dex_files->size();
46 UpdateChecksum(&dex_file_count_, sizeof(dex_file_count_));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070047
Brian Carlstrom28db0122012-10-18 16:20:41 -070048 image_file_location_oat_checksum_ = image_file_location_oat_checksum;
49 UpdateChecksum(&image_file_location_oat_checksum_, sizeof(image_file_location_oat_checksum_));
50
Brian Carlstrom700c8d32012-11-05 10:42:02 -080051 CHECK(IsAligned<kPageSize>(image_file_location_oat_data_begin));
52 image_file_location_oat_data_begin_ = image_file_location_oat_data_begin;
53 UpdateChecksum(&image_file_location_oat_data_begin_, sizeof(image_file_location_oat_data_begin_));
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070054
55 image_file_location_size_ = image_file_location.size();
56 UpdateChecksum(&image_file_location_size_, sizeof(image_file_location_size_));
57 UpdateChecksum(image_file_location.data(), image_file_location_size_);
58
Brian Carlstrome24fa612011-09-29 00:53:55 -070059 executable_offset_ = 0;
60}
61
62bool OatHeader::IsValid() const {
Brian Carlstromf852fb22012-10-19 11:01:58 -070063 if (memcmp(magic_, kOatMagic, sizeof(kOatMagic)) != 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -070064 return false;
65 }
Brian Carlstromf852fb22012-10-19 11:01:58 -070066 if (memcmp(version_, kOatVersion, sizeof(kOatVersion)) != 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -070067 return false;
68 }
69 return true;
70}
71
72const char* OatHeader::GetMagic() const {
73 CHECK(IsValid());
74 return reinterpret_cast<const char*>(magic_);
75}
76
77uint32_t OatHeader::GetDexFileCount() const {
78 DCHECK(IsValid());
79 return dex_file_count_;
80}
81
82uint32_t OatHeader::GetChecksum() const {
83 CHECK(IsValid());
84 return adler32_checksum_;
85}
86
87void OatHeader::UpdateChecksum(const void* data, size_t length) {
88 DCHECK(IsValid());
89 const uint8_t* bytes = reinterpret_cast<const uint8_t*>(data);
90 adler32_checksum_ = adler32(adler32_checksum_, bytes, length);
91}
92
Elliott Hughesa72ec822012-03-05 17:12:22 -080093InstructionSet OatHeader::GetInstructionSet() const {
94 CHECK(IsValid());
95 return instruction_set_;
96}
97
Brian Carlstrome24fa612011-09-29 00:53:55 -070098uint32_t OatHeader::GetExecutableOffset() const {
99 DCHECK(IsValid());
Elliott Hughes06b37d92011-10-16 11:51:29 -0700100 DCHECK_ALIGNED(executable_offset_, kPageSize);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700101 CHECK_GT(executable_offset_, sizeof(OatHeader));
102 return executable_offset_;
103}
104
Brian Carlstrom28db0122012-10-18 16:20:41 -0700105uint32_t OatHeader::GetImageFileLocationOatChecksum() const {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700106 CHECK(IsValid());
Brian Carlstrom28db0122012-10-18 16:20:41 -0700107 return image_file_location_oat_checksum_;
108}
109
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800110uint32_t OatHeader::GetImageFileLocationOatDataBegin() const {
Brian Carlstrom28db0122012-10-18 16:20:41 -0700111 CHECK(IsValid());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800112 return image_file_location_oat_data_begin_;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700113}
114
115uint32_t OatHeader::GetImageFileLocationSize() const {
116 CHECK(IsValid());
117 return image_file_location_size_;
118}
119
120const uint8_t* OatHeader::GetImageFileLocationData() const {
121 CHECK(IsValid());
122 return image_file_location_data_;
123}
124
125std::string OatHeader::GetImageFileLocation() const {
126 CHECK(IsValid());
127 return std::string(reinterpret_cast<const char*>(GetImageFileLocationData()),
128 GetImageFileLocationSize());
129}
130
Brian Carlstrome24fa612011-09-29 00:53:55 -0700131void OatHeader::SetExecutableOffset(uint32_t executable_offset) {
Elliott Hughes06b37d92011-10-16 11:51:29 -0700132 DCHECK_ALIGNED(executable_offset, kPageSize);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700133 CHECK_GT(executable_offset, sizeof(OatHeader));
134 DCHECK(IsValid());
135 DCHECK_EQ(executable_offset_, 0U);
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700136
Brian Carlstrome24fa612011-09-29 00:53:55 -0700137 executable_offset_ = executable_offset;
138 UpdateChecksum(&executable_offset_, sizeof(executable_offset));
139}
140
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700141OatMethodOffsets::OatMethodOffsets()
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700142 : code_offset_(0),
143 frame_size_in_bytes_(0),
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700144 core_spill_mask_(0),
145 fp_spill_mask_(0),
146 mapping_table_offset_(0),
147 vmap_table_offset_(0),
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800148 gc_map_offset_(0),
Logan Chienccb7bf12012-03-28 12:52:32 +0800149 invoke_stub_offset_(0)
Logan Chienccb7bf12012-03-28 12:52:32 +0800150{}
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700151
152OatMethodOffsets::OatMethodOffsets(uint32_t code_offset,
153 uint32_t frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700154 uint32_t core_spill_mask,
155 uint32_t fp_spill_mask,
156 uint32_t mapping_table_offset,
157 uint32_t vmap_table_offset,
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800158 uint32_t gc_map_offset,
Logan Chienccb7bf12012-03-28 12:52:32 +0800159 uint32_t invoke_stub_offset
160#if defined(ART_USE_LLVM_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800161 , uint32_t proxy_stub_offset
Logan Chienccb7bf12012-03-28 12:52:32 +0800162#endif
163 )
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700164 : code_offset_(code_offset),
165 frame_size_in_bytes_(frame_size_in_bytes),
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700166 core_spill_mask_(core_spill_mask),
167 fp_spill_mask_(fp_spill_mask),
168 mapping_table_offset_(mapping_table_offset),
169 vmap_table_offset_(vmap_table_offset),
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800170 gc_map_offset_(gc_map_offset),
Logan Chienccb7bf12012-03-28 12:52:32 +0800171 invoke_stub_offset_(invoke_stub_offset)
172#if defined(ART_USE_LLVM_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800173 , proxy_stub_offset_(proxy_stub_offset)
Logan Chienccb7bf12012-03-28 12:52:32 +0800174#endif
175{}
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700176
177OatMethodOffsets::~OatMethodOffsets() {}
178
Brian Carlstrome24fa612011-09-29 00:53:55 -0700179} // namespace art