Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1 | /* |
| 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 | */ |
| 16 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_COMPILER_OAT_WRITER_H_ |
| 18 | #define ART_COMPILER_OAT_WRITER_H_ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 19 | |
| 20 | #include <stdint.h> |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 21 | #include <cstddef> |
David Srbecky | 2f6cdb0 | 2015-04-11 00:17:53 +0100 | [diff] [blame] | 22 | #include <map> |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 23 | #include <memory> |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 24 | |
Vladimir Marko | b163bb7 | 2015-03-31 21:49:49 +0100 | [diff] [blame] | 25 | #include "linker/relative_patcher.h" // For linker::RelativePatcherTargetProvider. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 26 | #include "mem_map.h" |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 27 | #include "method_reference.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 28 | #include "oat.h" |
| 29 | #include "mirror/class.h" |
| 30 | #include "safe_map.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 31 | |
| 32 | namespace art { |
| 33 | |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 34 | class BitVector; |
Andreas Gampe | 7927380 | 2014-08-05 20:21:05 -0700 | [diff] [blame] | 35 | class CompiledMethod; |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 36 | class CompilerDriver; |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 37 | class ImageWriter; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 38 | class OutputStream; |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 39 | class TimingLogger; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 40 | |
| 41 | // OatHeader variable length with count of D OatDexFiles |
| 42 | // |
| 43 | // OatDexFile[0] one variable sized OatDexFile with offsets to Dex and OatClasses |
| 44 | // OatDexFile[1] |
| 45 | // ... |
| 46 | // OatDexFile[D] |
| 47 | // |
| 48 | // Dex[0] one variable sized DexFile for each OatDexFile. |
| 49 | // Dex[1] these are literal copies of the input .dex files. |
| 50 | // ... |
| 51 | // Dex[D] |
| 52 | // |
| 53 | // OatClass[0] one variable sized OatClass for each of C DexFile::ClassDefs |
| 54 | // OatClass[1] contains OatClass entries with class status, offsets to code, etc. |
| 55 | // ... |
| 56 | // OatClass[C] |
| 57 | // |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 58 | // GcMap one variable sized blob with GC map. |
| 59 | // GcMap GC maps are deduplicated. |
| 60 | // ... |
| 61 | // GcMap |
| 62 | // |
| 63 | // VmapTable one variable sized VmapTable blob (quick compiler only). |
| 64 | // VmapTable VmapTables are deduplicated. |
| 65 | // ... |
| 66 | // VmapTable |
| 67 | // |
| 68 | // MappingTable one variable sized blob with MappingTable (quick compiler only). |
| 69 | // MappingTable MappingTables are deduplicated. |
| 70 | // ... |
| 71 | // MappingTable |
| 72 | // |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 73 | // padding if necessary so that the following code will be page aligned |
| 74 | // |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 75 | // OatMethodHeader fixed size header for a CompiledMethod including the size of the MethodCode. |
| 76 | // MethodCode one variable sized blob with the code of a CompiledMethod. |
| 77 | // OatMethodHeader (OatMethodHeader, MethodCode) pairs are deduplicated. |
| 78 | // MethodCode |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 79 | // ... |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 80 | // OatMethodHeader |
| 81 | // MethodCode |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 82 | // |
| 83 | class OatWriter { |
| 84 | public: |
David Srbecky | 2f6cdb0 | 2015-04-11 00:17:53 +0100 | [diff] [blame] | 85 | typedef std::map<std::string, std::unique_ptr<std::vector<uintptr_t>>> PatchLocationsMap; |
| 86 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 87 | OatWriter(const std::vector<const DexFile*>& dex_files, |
| 88 | uint32_t image_file_location_oat_checksum, |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 89 | uintptr_t image_file_location_oat_begin, |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 90 | int32_t image_patch_delta, |
Ian Rogers | ca368cb | 2013-11-15 15:52:08 -0800 | [diff] [blame] | 91 | const CompilerDriver* compiler, |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 92 | ImageWriter* image_writer, |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 93 | TimingLogger* timings, |
| 94 | SafeMap<std::string, std::string>* key_value_store); |
Brian Carlstrom | c50d8e1 | 2013-07-23 22:35:16 -0700 | [diff] [blame] | 95 | |
| 96 | const OatHeader& GetOatHeader() const { |
| 97 | return *oat_header_; |
| 98 | } |
| 99 | |
| 100 | size_t GetSize() const { |
| 101 | return size_; |
| 102 | } |
| 103 | |
Vladimir Marko | 5c42c29 | 2015-02-25 12:02:49 +0000 | [diff] [blame] | 104 | size_t GetBssSize() const { |
| 105 | return bss_size_; |
| 106 | } |
| 107 | |
David Srbecky | 2f6cdb0 | 2015-04-11 00:17:53 +0100 | [diff] [blame] | 108 | const PatchLocationsMap& GetAbsolutePatchLocations() const { |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 109 | return absolute_patch_locations_; |
| 110 | } |
| 111 | |
David Srbecky | 2f6cdb0 | 2015-04-11 00:17:53 +0100 | [diff] [blame] | 112 | std::vector<uintptr_t>* GetAbsolutePatchLocationsFor(const char* section_name) { |
| 113 | auto it = absolute_patch_locations_.emplace( |
| 114 | std::string(section_name), std::unique_ptr<std::vector<uintptr_t>>()); |
| 115 | if (it.second) { // Inserted new item. |
| 116 | it.first->second.reset(new std::vector<uintptr_t>()); |
| 117 | } |
| 118 | return it.first->second.get(); |
| 119 | } |
| 120 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 121 | void SetOatDataOffset(size_t oat_data_offset) { |
| 122 | oat_data_offset_ = oat_data_offset; |
| 123 | } |
| 124 | |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 125 | bool Write(OutputStream* out); |
Brian Carlstrom | c50d8e1 | 2013-07-23 22:35:16 -0700 | [diff] [blame] | 126 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 127 | ~OatWriter(); |
| 128 | |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 129 | struct DebugInfo { |
David Srbecky | 0df9e1f | 2015-04-07 19:02:58 +0100 | [diff] [blame] | 130 | const DexFile* dex_file_; |
| 131 | size_t class_def_index_; |
| 132 | uint32_t dex_method_index_; |
| 133 | uint32_t access_flags_; |
| 134 | const DexFile::CodeItem *code_item_; |
| 135 | bool deduped_; |
| 136 | uint32_t low_pc_; |
| 137 | uint32_t high_pc_; |
Andreas Gampe | 7927380 | 2014-08-05 20:21:05 -0700 | [diff] [blame] | 138 | CompiledMethod* compiled_method_; |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 139 | }; |
| 140 | |
David Srbecky | 3b9d57a | 2015-04-10 00:22:14 +0100 | [diff] [blame] | 141 | const std::vector<DebugInfo>& GetMethodDebugInfo() const { |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 142 | return method_info_; |
| 143 | } |
| 144 | |
Vladimir Marko | b163bb7 | 2015-03-31 21:49:49 +0100 | [diff] [blame] | 145 | const CompilerDriver* GetCompilerDriver() { |
| 146 | return compiler_driver_; |
| 147 | } |
| 148 | |
Brian Carlstrom | c50d8e1 | 2013-07-23 22:35:16 -0700 | [diff] [blame] | 149 | private: |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 150 | // The DataAccess classes are helper classes that provide access to members related to |
| 151 | // a given map, i.e. GC map, mapping table or vmap table. By abstracting these away |
| 152 | // we can share a lot of code for processing the maps with template classes below. |
| 153 | struct GcMapDataAccess; |
| 154 | struct MappingTableDataAccess; |
| 155 | struct VmapTableDataAccess; |
| 156 | |
| 157 | // The function VisitDexMethods() below iterates through all the methods in all |
| 158 | // the compiled dex files in order of their definitions. The method visitor |
| 159 | // classes provide individual bits of processing for each of the passes we need to |
| 160 | // first collect the data we want to write to the oat file and then, in later passes, |
| 161 | // to actually write it. |
| 162 | class DexMethodVisitor; |
| 163 | class OatDexMethodVisitor; |
| 164 | class InitOatClassesMethodVisitor; |
| 165 | class InitCodeMethodVisitor; |
| 166 | template <typename DataAccess> |
| 167 | class InitMapMethodVisitor; |
| 168 | class InitImageMethodVisitor; |
| 169 | class WriteCodeMethodVisitor; |
| 170 | template <typename DataAccess> |
| 171 | class WriteMapMethodVisitor; |
| 172 | |
| 173 | // Visit all the methods in all the compiled dex files in their definition order |
| 174 | // with a given DexMethodVisitor. |
| 175 | bool VisitDexMethods(DexMethodVisitor* visitor); |
| 176 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 177 | size_t InitOatHeader(); |
| 178 | size_t InitOatDexFiles(size_t offset); |
| 179 | size_t InitDexFiles(size_t offset); |
| 180 | size_t InitOatClasses(size_t offset); |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 181 | size_t InitOatMaps(size_t offset); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 182 | size_t InitOatCode(size_t offset) |
| 183 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
| 184 | size_t InitOatCodeDexFiles(size_t offset) |
| 185 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 186 | |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 187 | bool WriteTables(OutputStream* out, const size_t file_offset); |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 188 | size_t WriteMaps(OutputStream* out, const size_t file_offset, size_t relative_offset); |
| 189 | size_t WriteCode(OutputStream* out, const size_t file_offset, size_t relative_offset); |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 190 | size_t WriteCodeDexFiles(OutputStream* out, const size_t file_offset, size_t relative_offset); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 191 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 192 | bool WriteCodeAlignment(OutputStream* out, uint32_t aligned_code_delta); |
| 193 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 194 | class OatDexFile { |
| 195 | public: |
| 196 | explicit OatDexFile(size_t offset, const DexFile& dex_file); |
| 197 | size_t SizeOf() const; |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 198 | void UpdateChecksum(OatHeader* oat_header) const; |
| 199 | bool Write(OatWriter* oat_writer, OutputStream* out, const size_t file_offset) const; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 200 | |
| 201 | // Offset of start of OatDexFile from beginning of OatHeader. It is |
| 202 | // used to validate file position when writing. |
| 203 | size_t offset_; |
| 204 | |
| 205 | // data to write |
| 206 | uint32_t dex_file_location_size_; |
| 207 | const uint8_t* dex_file_location_data_; |
| 208 | uint32_t dex_file_location_checksum_; |
| 209 | uint32_t dex_file_offset_; |
| 210 | std::vector<uint32_t> methods_offsets_; |
| 211 | |
| 212 | private: |
| 213 | DISALLOW_COPY_AND_ASSIGN(OatDexFile); |
| 214 | }; |
| 215 | |
| 216 | class OatClass { |
| 217 | public: |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 218 | explicit OatClass(size_t offset, |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 219 | const std::vector<CompiledMethod*>& compiled_methods, |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 220 | uint32_t num_non_null_compiled_methods, |
| 221 | mirror::Class::Status status); |
| 222 | ~OatClass(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 223 | size_t GetOatMethodOffsetsOffsetFromOatHeader(size_t class_def_method_index_) const; |
| 224 | size_t GetOatMethodOffsetsOffsetFromOatClass(size_t class_def_method_index_) const; |
| 225 | size_t SizeOf() const; |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 226 | void UpdateChecksum(OatHeader* oat_header) const; |
| 227 | bool Write(OatWriter* oat_writer, OutputStream* out, const size_t file_offset) const; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 228 | |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 229 | CompiledMethod* GetCompiledMethod(size_t class_def_method_index) const { |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 230 | DCHECK_LT(class_def_method_index, compiled_methods_.size()); |
| 231 | return compiled_methods_[class_def_method_index]; |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 232 | } |
| 233 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 234 | // Offset of start of OatClass from beginning of OatHeader. It is |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 235 | // used to validate file position when writing. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 236 | size_t offset_; |
| 237 | |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 238 | // CompiledMethods for each class_def_method_index, or null if no method is available. |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 239 | std::vector<CompiledMethod*> compiled_methods_; |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 240 | |
| 241 | // Offset from OatClass::offset_ to the OatMethodOffsets for the |
| 242 | // class_def_method_index. If 0, it means the corresponding |
| 243 | // CompiledMethod entry in OatClass::compiled_methods_ should be |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 244 | // null and that the OatClass::type_ should be kOatClassBitmap. |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 245 | std::vector<uint32_t> oat_method_offsets_offsets_from_oat_class_; |
| 246 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 247 | // data to write |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 248 | |
Andreas Gampe | 785d2f2 | 2014-11-03 22:57:30 -0800 | [diff] [blame] | 249 | static_assert(mirror::Class::Status::kStatusMax < (2 ^ 16), "class status won't fit in 16bits"); |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 250 | int16_t status_; |
| 251 | |
Andreas Gampe | 785d2f2 | 2014-11-03 22:57:30 -0800 | [diff] [blame] | 252 | static_assert(OatClassType::kOatClassMax < (2 ^ 16), "oat_class type won't fit in 16bits"); |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 253 | uint16_t type_; |
| 254 | |
| 255 | uint32_t method_bitmap_size_; |
| 256 | |
| 257 | // bit vector indexed by ClassDef method index. When |
| 258 | // OatClassType::type_ is kOatClassBitmap, a set bit indicates the |
| 259 | // method has an OatMethodOffsets in methods_offsets_, otherwise |
| 260 | // the entry was ommited to save space. If OatClassType::type_ is |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 261 | // not is kOatClassBitmap, the bitmap will be null. |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 262 | BitVector* method_bitmap_; |
| 263 | |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 264 | // OatMethodOffsets and OatMethodHeaders for each CompiledMethod |
| 265 | // present in the OatClass. Note that some may be missing if |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 266 | // OatClass::compiled_methods_ contains null values (and |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 267 | // oat_method_offsets_offsets_from_oat_class_ should contain 0 |
| 268 | // values in this case). |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 269 | std::vector<OatMethodOffsets> method_offsets_; |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 270 | std::vector<OatQuickMethodHeader> method_headers_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 271 | |
| 272 | private: |
| 273 | DISALLOW_COPY_AND_ASSIGN(OatClass); |
| 274 | }; |
| 275 | |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 276 | std::vector<DebugInfo> method_info_; |
| 277 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 278 | const CompilerDriver* const compiler_driver_; |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 279 | ImageWriter* const image_writer_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 280 | |
| 281 | // note OatFile does not take ownership of the DexFiles |
| 282 | const std::vector<const DexFile*>* dex_files_; |
| 283 | |
Brian Carlstrom | c50d8e1 | 2013-07-23 22:35:16 -0700 | [diff] [blame] | 284 | // Size required for Oat data structures. |
| 285 | size_t size_; |
| 286 | |
Vladimir Marko | 5c42c29 | 2015-02-25 12:02:49 +0000 | [diff] [blame] | 287 | // The size of the required .bss section holding the DexCache data. |
| 288 | size_t bss_size_; |
| 289 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 290 | // Offset of the oat data from the start of the mmapped region of the elf file. |
| 291 | size_t oat_data_offset_; |
| 292 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 293 | // dependencies on the image. |
| 294 | uint32_t image_file_location_oat_checksum_; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 295 | uintptr_t image_file_location_oat_begin_; |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 296 | int32_t image_patch_delta_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 297 | |
| 298 | // data to write |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 299 | SafeMap<std::string, std::string>* key_value_store_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 300 | OatHeader* oat_header_; |
| 301 | std::vector<OatDexFile*> oat_dex_files_; |
| 302 | std::vector<OatClass*> oat_classes_; |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 303 | std::unique_ptr<const std::vector<uint8_t>> interpreter_to_interpreter_bridge_; |
| 304 | std::unique_ptr<const std::vector<uint8_t>> interpreter_to_compiled_code_bridge_; |
| 305 | std::unique_ptr<const std::vector<uint8_t>> jni_dlsym_lookup_; |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 306 | std::unique_ptr<const std::vector<uint8_t>> quick_generic_jni_trampoline_; |
| 307 | std::unique_ptr<const std::vector<uint8_t>> quick_imt_conflict_trampoline_; |
| 308 | std::unique_ptr<const std::vector<uint8_t>> quick_resolution_trampoline_; |
| 309 | std::unique_ptr<const std::vector<uint8_t>> quick_to_interpreter_bridge_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 310 | |
| 311 | // output stats |
| 312 | uint32_t size_dex_file_alignment_; |
| 313 | uint32_t size_executable_offset_alignment_; |
| 314 | uint32_t size_oat_header_; |
Andreas Gampe | 22f8e5c | 2014-07-09 11:38:21 -0700 | [diff] [blame] | 315 | uint32_t size_oat_header_key_value_store_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 316 | uint32_t size_dex_file_; |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 317 | uint32_t size_interpreter_to_interpreter_bridge_; |
| 318 | uint32_t size_interpreter_to_compiled_code_bridge_; |
| 319 | uint32_t size_jni_dlsym_lookup_; |
Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 320 | uint32_t size_quick_generic_jni_trampoline_; |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 321 | uint32_t size_quick_imt_conflict_trampoline_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 322 | uint32_t size_quick_resolution_trampoline_; |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 323 | uint32_t size_quick_to_interpreter_bridge_; |
| 324 | uint32_t size_trampoline_alignment_; |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 325 | uint32_t size_method_header_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 326 | uint32_t size_code_; |
| 327 | uint32_t size_code_alignment_; |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 328 | uint32_t size_relative_call_thunks_; |
Vladimir Marko | c74658b | 2015-03-31 10:26:41 +0100 | [diff] [blame] | 329 | uint32_t size_misc_thunks_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 330 | uint32_t size_mapping_table_; |
| 331 | uint32_t size_vmap_table_; |
| 332 | uint32_t size_gc_map_; |
| 333 | uint32_t size_oat_dex_file_location_size_; |
| 334 | uint32_t size_oat_dex_file_location_data_; |
| 335 | uint32_t size_oat_dex_file_location_checksum_; |
| 336 | uint32_t size_oat_dex_file_offset_; |
| 337 | uint32_t size_oat_dex_file_methods_offsets_; |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 338 | uint32_t size_oat_class_type_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 339 | uint32_t size_oat_class_status_; |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 340 | uint32_t size_oat_class_method_bitmaps_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 341 | uint32_t size_oat_class_method_offsets_; |
| 342 | |
Vladimir Marko | b163bb7 | 2015-03-31 21:49:49 +0100 | [diff] [blame] | 343 | std::unique_ptr<linker::RelativePatcher> relative_patcher_; |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 344 | |
David Srbecky | 2f6cdb0 | 2015-04-11 00:17:53 +0100 | [diff] [blame] | 345 | // The locations of absolute patches relative to the start of section. |
| 346 | // The map's key is the ELF's section name (including the dot). |
| 347 | PatchLocationsMap absolute_patch_locations_; |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 348 | |
Vladimir Marko | b163bb7 | 2015-03-31 21:49:49 +0100 | [diff] [blame] | 349 | // Map method reference to assigned offset. |
| 350 | // Wrap the map in a class implementing linker::RelativePatcherTargetProvider. |
| 351 | class MethodOffsetMap FINAL : public linker::RelativePatcherTargetProvider { |
| 352 | public: |
| 353 | std::pair<bool, uint32_t> FindMethodOffset(MethodReference ref) OVERRIDE; |
| 354 | SafeMap<MethodReference, uint32_t, MethodReferenceComparator> map; |
| 355 | }; |
| 356 | MethodOffsetMap method_offset_map_; |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 357 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 358 | DISALLOW_COPY_AND_ASSIGN(OatWriter); |
| 359 | }; |
| 360 | |
| 361 | } // namespace art |
| 362 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 363 | #endif // ART_COMPILER_OAT_WRITER_H_ |