1/* 2 * Copyright (C) 2015 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#ifndef ART_COMPILER_DEBUG_METHOD_DEBUG_INFO_H_ 18#define ART_COMPILER_DEBUG_METHOD_DEBUG_INFO_H_ 19 20#include "compiled_method.h" 21#include "dex_file.h" 22 23namespace art { 24namespace debug { 25 26struct MethodDebugInfo { 27 const char* trampoline_name; 28 const DexFile* dex_file; // Native methods (trampolines) do not reference dex file. 29 size_t class_def_index; 30 uint32_t dex_method_index; 31 uint32_t access_flags; 32 const DexFile::CodeItem* code_item; 33 InstructionSet isa; 34 bool deduped; 35 bool is_native_debuggable; 36 bool is_optimized; 37 bool is_code_address_text_relative; // Is the address offset from start of .text section? 38 uint64_t code_address; 39 uint32_t code_size; 40 uint32_t frame_size_in_bytes; 41 const void* code_info; 42 ArrayRef<const uint8_t> cfi; 43}; 44 45} // namespace debug 46} // namespace art 47 48#endif // ART_COMPILER_DEBUG_METHOD_DEBUG_INFO_H_ 49