| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2012 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 |  | 
|  | 17 | #include "elf_writer.h" | 
|  | 18 |  | 
|  | 19 | #include "base/unix_file/fd_file.h" | 
|  | 20 | #include "class_linker.h" | 
|  | 21 | #include "dex_file-inl.h" | 
|  | 22 | #include "dex_method_iterator.h" | 
|  | 23 | #include "driver/compiler_driver.h" | 
|  | 24 | #include "elf_file.h" | 
|  | 25 | #include "invoke_type.h" | 
| Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 26 | #include "mirror/art_method-inl.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 27 | #include "mirror/object-inl.h" | 
|  | 28 | #include "oat.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 29 | #include "scoped_thread_state_change.h" | 
|  | 30 |  | 
|  | 31 | namespace art { | 
|  | 32 |  | 
|  | 33 | ElfWriter::ElfWriter(const CompilerDriver& driver, File* elf_file) | 
|  | 34 | : compiler_driver_(&driver), elf_file_(elf_file) {} | 
|  | 35 |  | 
|  | 36 | ElfWriter::~ElfWriter() {} | 
|  | 37 |  | 
| Nicolas Geoffray | 50cfe74 | 2014-02-19 13:27:42 +0000 | [diff] [blame] | 38 | Elf32_Addr ElfWriter::GetOatDataAddress(ElfFile* elf_file) { | 
|  | 39 | Elf32_Addr oatdata_address = elf_file->FindSymbolAddress(SHT_DYNSYM, | 
|  | 40 | "oatdata", | 
|  | 41 | false); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 42 | CHECK_NE(0U, oatdata_address); | 
|  | 43 | return oatdata_address; | 
|  | 44 | } | 
|  | 45 |  | 
|  | 46 | void ElfWriter::GetOatElfInformation(File* file, | 
|  | 47 | size_t& oat_loaded_size, | 
|  | 48 | size_t& oat_data_offset) { | 
| Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 49 | std::string error_msg; | 
|  | 50 | UniquePtr<ElfFile> elf_file(ElfFile::Open(file, false, false, &error_msg)); | 
|  | 51 | CHECK(elf_file.get() != NULL) << error_msg; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 52 |  | 
|  | 53 | oat_loaded_size = elf_file->GetLoadedSize(); | 
|  | 54 | CHECK_NE(0U, oat_loaded_size); | 
|  | 55 | oat_data_offset = GetOatDataAddress(elf_file.get()); | 
|  | 56 | CHECK_NE(0U, oat_data_offset); | 
|  | 57 | } | 
|  | 58 |  | 
|  | 59 | }  // namespace art |