1*795d594fSAndroid Build Coastguard Worker /* 2*795d594fSAndroid Build Coastguard Worker * Copyright (C) 2016 The Android Open Source Project 3*795d594fSAndroid Build Coastguard Worker * 4*795d594fSAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License"); 5*795d594fSAndroid Build Coastguard Worker * you may not use this file except in compliance with the License. 6*795d594fSAndroid Build Coastguard Worker * You may obtain a copy of the License at 7*795d594fSAndroid Build Coastguard Worker * 8*795d594fSAndroid Build Coastguard Worker * http://www.apache.org/licenses/LICENSE-2.0 9*795d594fSAndroid Build Coastguard Worker * 10*795d594fSAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software 11*795d594fSAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS, 12*795d594fSAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*795d594fSAndroid Build Coastguard Worker * See the License for the specific language governing permissions and 14*795d594fSAndroid Build Coastguard Worker * limitations under the License. 15*795d594fSAndroid Build Coastguard Worker */ 16*795d594fSAndroid Build Coastguard Worker 17*795d594fSAndroid Build Coastguard Worker #ifndef ART_COMPILER_DEBUG_ELF_DEBUG_WRITER_H_ 18*795d594fSAndroid Build Coastguard Worker #define ART_COMPILER_DEBUG_ELF_DEBUG_WRITER_H_ 19*795d594fSAndroid Build Coastguard Worker 20*795d594fSAndroid Build Coastguard Worker #include <vector> 21*795d594fSAndroid Build Coastguard Worker 22*795d594fSAndroid Build Coastguard Worker #include "arch/instruction_set_features.h" 23*795d594fSAndroid Build Coastguard Worker #include "base/array_ref.h" 24*795d594fSAndroid Build Coastguard Worker #include "base/macros.h" 25*795d594fSAndroid Build Coastguard Worker #include "base/mutex.h" 26*795d594fSAndroid Build Coastguard Worker #include "debug/debug_info.h" 27*795d594fSAndroid Build Coastguard Worker #include "dwarf/dwarf_constants.h" 28*795d594fSAndroid Build Coastguard Worker #include "elf/elf_builder.h" 29*795d594fSAndroid Build Coastguard Worker 30*795d594fSAndroid Build Coastguard Worker namespace art HIDDEN { 31*795d594fSAndroid Build Coastguard Worker class OatHeader; 32*795d594fSAndroid Build Coastguard Worker struct JITCodeEntry; 33*795d594fSAndroid Build Coastguard Worker namespace mirror { 34*795d594fSAndroid Build Coastguard Worker class Class; 35*795d594fSAndroid Build Coastguard Worker } // namespace mirror 36*795d594fSAndroid Build Coastguard Worker namespace debug { 37*795d594fSAndroid Build Coastguard Worker struct MethodDebugInfo; 38*795d594fSAndroid Build Coastguard Worker 39*795d594fSAndroid Build Coastguard Worker template <typename ElfTypes> 40*795d594fSAndroid Build Coastguard Worker EXPORT void WriteDebugInfo( 41*795d594fSAndroid Build Coastguard Worker ElfBuilder<ElfTypes>* builder, 42*795d594fSAndroid Build Coastguard Worker const DebugInfo& debug_info); 43*795d594fSAndroid Build Coastguard Worker 44*795d594fSAndroid Build Coastguard Worker EXPORT std::vector<uint8_t> MakeMiniDebugInfo( 45*795d594fSAndroid Build Coastguard Worker InstructionSet isa, 46*795d594fSAndroid Build Coastguard Worker const InstructionSetFeatures* features, 47*795d594fSAndroid Build Coastguard Worker uint64_t text_section_address, 48*795d594fSAndroid Build Coastguard Worker size_t text_section_size, 49*795d594fSAndroid Build Coastguard Worker uint64_t dex_section_address, 50*795d594fSAndroid Build Coastguard Worker size_t dex_section_size, 51*795d594fSAndroid Build Coastguard Worker const DebugInfo& debug_info); 52*795d594fSAndroid Build Coastguard Worker 53*795d594fSAndroid Build Coastguard Worker std::vector<uint8_t> MakeElfFileForJIT( 54*795d594fSAndroid Build Coastguard Worker InstructionSet isa, 55*795d594fSAndroid Build Coastguard Worker const InstructionSetFeatures* features, 56*795d594fSAndroid Build Coastguard Worker bool mini_debug_info, 57*795d594fSAndroid Build Coastguard Worker const MethodDebugInfo& method_info); 58*795d594fSAndroid Build Coastguard Worker 59*795d594fSAndroid Build Coastguard Worker std::vector<uint8_t> PackElfFileForJIT( 60*795d594fSAndroid Build Coastguard Worker ArrayRef<const JITCodeEntry*> jit_entries, 61*795d594fSAndroid Build Coastguard Worker ArrayRef<const void*> removed_symbols, 62*795d594fSAndroid Build Coastguard Worker bool compress, 63*795d594fSAndroid Build Coastguard Worker /*out*/ size_t* num_symbols); 64*795d594fSAndroid Build Coastguard Worker 65*795d594fSAndroid Build Coastguard Worker std::vector<uint8_t> WriteDebugElfFileForClasses( 66*795d594fSAndroid Build Coastguard Worker InstructionSet isa, 67*795d594fSAndroid Build Coastguard Worker const InstructionSetFeatures* features, 68*795d594fSAndroid Build Coastguard Worker const ArrayRef<mirror::Class*>& types) 69*795d594fSAndroid Build Coastguard Worker REQUIRES_SHARED(Locks::mutator_lock_); 70*795d594fSAndroid Build Coastguard Worker 71*795d594fSAndroid Build Coastguard Worker } // namespace debug 72*795d594fSAndroid Build Coastguard Worker } // namespace art 73*795d594fSAndroid Build Coastguard Worker 74*795d594fSAndroid Build Coastguard Worker #endif // ART_COMPILER_DEBUG_ELF_DEBUG_WRITER_H_ 75