blob: 0dfce6e40feff77ee29bf55f9da9867fc177852f [file] [log] [blame]
Brian Carlstrom700c8d32012-11-05 10:42:02 -08001/*
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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_COMPILER_ELF_WRITER_H_
18#define ART_COMPILER_ELF_WRITER_H_
Brian Carlstrom700c8d32012-11-05 10:42:02 -080019
Brian Carlstrom265091e2013-01-30 14:08:26 -080020#include <stdint.h>
Brian Carlstrom700c8d32012-11-05 10:42:02 -080021
Brian Carlstrom265091e2013-01-30 14:08:26 -080022#include <cstddef>
Brian Carlstrom6a47b9d2013-05-17 10:58:25 -070023#include <string>
Ian Rogers1212a022013-03-04 10:48:41 -080024#include <vector>
25
Brian Carlstrom265091e2013-01-30 14:08:26 -080026#include <llvm/Support/ELF.h>
27
Brian Carlstrom6a47b9d2013-05-17 10:58:25 -070028#include "base/macros.h"
Brian Carlstrom265091e2013-01-30 14:08:26 -080029#include "os.h"
30
Brian Carlstrom700c8d32012-11-05 10:42:02 -080031namespace art {
Brian Carlstrom265091e2013-01-30 14:08:26 -080032
Ian Rogers1212a022013-03-04 10:48:41 -080033class CompilerDriver;
Brian Carlstrom6a47b9d2013-05-17 10:58:25 -070034class DexFile;
Brian Carlstrom265091e2013-01-30 14:08:26 -080035class ElfFile;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080036
37class ElfWriter {
38 public:
Brian Carlstrom700c8d32012-11-05 10:42:02 -080039 // Looks up information about location of oat file in elf file container.
40 // Used for ImageWriter to perform memory layout.
41 static void GetOatElfInformation(File* file,
42 size_t& oat_loaded_size,
43 size_t& oat_data_offset);
44
Brian Carlstrom6a47b9d2013-05-17 10:58:25 -070045 // Returns runtime oat_data runtime address for an opened ElfFile.
46 static llvm::ELF::Elf32_Addr GetOatDataAddress(ElfFile* elf_file);
47
48 protected:
Brian Carlstrom265091e2013-01-30 14:08:26 -080049 ElfWriter(const CompilerDriver& driver, File* elf_file);
Brian Carlstromfb6996f2013-07-18 18:21:14 -070050 virtual ~ElfWriter();
Brian Carlstrom700c8d32012-11-05 10:42:02 -080051
Brian Carlstrom6a47b9d2013-05-17 10:58:25 -070052 virtual bool Write(std::vector<uint8_t>& oat_contents,
53 const std::vector<const DexFile*>& dex_files,
54 const std::string& android_root,
55 bool is_host)
56 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Brian Carlstrom265091e2013-01-30 14:08:26 -080057
58 // Setup by constructor
59 const CompilerDriver* compiler_driver_;
60 File* elf_file_;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080061};
62
63} // namespace art
64
Brian Carlstromfc0e3212013-07-17 14:40:12 -070065#endif // ART_COMPILER_ELF_WRITER_H_