blob: 2ad44c0827e9bdaf49d6f99d2770a5604d4c26cd [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#ifndef ART_SRC_OAT_H_
18#define ART_SRC_OAT_H_
19
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:
Elliott Hughesa72ec822012-03-05 17:12:22 -080030 OatHeader();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070031 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
37 bool IsValid() const;
38 const char* GetMagic() const;
39 uint32_t GetChecksum() const;
40 void UpdateChecksum(const void* data, size_t length);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070041 uint32_t GetDexFileCount() const {
42 DCHECK(IsValid());
43 return dex_file_count_;
44 }
Brian Carlstrome24fa612011-09-29 00:53:55 -070045 uint32_t GetExecutableOffset() const;
Elliott Hughesa72ec822012-03-05 17:12:22 -080046 InstructionSet GetInstructionSet() const;
Brian Carlstrome24fa612011-09-29 00:53:55 -070047 void SetExecutableOffset(uint32_t executable_offset);
Brian Carlstrom28db0122012-10-18 16:20:41 -070048 uint32_t GetImageFileLocationOatChecksum() const;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080049 uint32_t GetImageFileLocationOatDataBegin() const;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070050 uint32_t GetImageFileLocationSize() const;
51 const uint8_t* GetImageFileLocationData() const;
52 std::string GetImageFileLocation() const;
Brian Carlstrome24fa612011-09-29 00:53:55 -070053
54 private:
55 static const uint8_t kOatMagic[4];
56 static const uint8_t kOatVersion[4];
57
58 uint8_t magic_[4];
59 uint8_t version_[4];
60 uint32_t adler32_checksum_;
Elliott Hughesa72ec822012-03-05 17:12:22 -080061
62 InstructionSet instruction_set_;
Brian Carlstrome24fa612011-09-29 00:53:55 -070063 uint32_t dex_file_count_;
64 uint32_t executable_offset_;
65
Brian Carlstrom28db0122012-10-18 16:20:41 -070066 uint32_t image_file_location_oat_checksum_;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080067 uint32_t image_file_location_oat_data_begin_;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070068 uint32_t image_file_location_size_;
69 uint8_t image_file_location_data_[0]; // note variable width data at end
70
Brian Carlstrome24fa612011-09-29 00:53:55 -070071 DISALLOW_COPY_AND_ASSIGN(OatHeader);
72};
73
Ian Rogersdf1ce912012-11-27 17:07:11 -080074class PACKED(4) OatMethodOffsets {
Brian Carlstrom3320cf42011-10-04 14:58:28 -070075 public:
76 OatMethodOffsets();
Logan Chien971bf3f2012-05-01 15:47:55 +080077
Brian Carlstrom3320cf42011-10-04 14:58:28 -070078 OatMethodOffsets(uint32_t code_offset,
79 uint32_t frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -070080 uint32_t core_spill_mask,
81 uint32_t fp_spill_mask,
82 uint32_t mapping_table_offset,
83 uint32_t vmap_table_offset,
Brian Carlstrome7d856b2012-01-11 18:10:55 -080084 uint32_t gc_map_offset,
Logan Chienccb7bf12012-03-28 12:52:32 +080085 uint32_t invoke_stub_offset
Ian Rogersc928de92013-02-27 14:30:44 -080086#if defined(ART_USE_PORTABLE_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +080087 , uint32_t proxy_stub_offset
Logan Chienccb7bf12012-03-28 12:52:32 +080088#endif
89 );
Logan Chien971bf3f2012-05-01 15:47:55 +080090
Brian Carlstrom3320cf42011-10-04 14:58:28 -070091 ~OatMethodOffsets();
92
93 uint32_t code_offset_;
94 uint32_t frame_size_in_bytes_;
Brian Carlstrom3320cf42011-10-04 14:58:28 -070095 uint32_t core_spill_mask_;
96 uint32_t fp_spill_mask_;
97 uint32_t mapping_table_offset_;
98 uint32_t vmap_table_offset_;
Brian Carlstrome7d856b2012-01-11 18:10:55 -080099 uint32_t gc_map_offset_;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700100 uint32_t invoke_stub_offset_;
Logan Chienccb7bf12012-03-28 12:52:32 +0800101
Ian Rogersc928de92013-02-27 14:30:44 -0800102#if defined(ART_USE_PORTABLE_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800103 uint32_t proxy_stub_offset_;
Logan Chienccb7bf12012-03-28 12:52:32 +0800104#endif
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700105};
106
Brian Carlstrome24fa612011-09-29 00:53:55 -0700107} // namespace art
108
109#endif // ART_SRC_OAT_H_