blob: bb09f7e814a6f01578ac2dc783e4adf5fcad85d5 [file] [log] [blame]
Vladimir Marko10c13562015-11-25 14:33:36 +00001/*
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
David Srbecky4fda4eb2016-02-05 13:34:46 +000017#ifndef ART_COMPILER_DEBUG_METHOD_DEBUG_INFO_H_
18#define ART_COMPILER_DEBUG_METHOD_DEBUG_INFO_H_
Vladimir Marko10c13562015-11-25 14:33:36 +000019
David Srbeckyc5bfa972016-02-05 15:49:10 +000020#include "compiled_method.h"
Vladimir Marko10c13562015-11-25 14:33:36 +000021#include "dex_file.h"
22
23namespace art {
David Srbeckyc5bfa972016-02-05 15:49:10 +000024namespace debug {
Vladimir Marko10c13562015-11-25 14:33:36 +000025
26struct MethodDebugInfo {
David Srbeckyc5bfa972016-02-05 15:49:10 +000027 const DexFile* dex_file;
28 size_t class_def_index;
29 uint32_t dex_method_index;
30 uint32_t access_flags;
31 const DexFile::CodeItem* code_item;
32 bool deduped;
David Srbecky91cc06c2016-03-07 16:13:58 +000033 bool is_native_debuggable;
David Srbeckyc5bfa972016-02-05 15:49:10 +000034 uintptr_t low_pc;
35 uintptr_t high_pc;
36 CompiledMethod* compiled_method;
37
38 bool IsFromOptimizingCompiler() const {
39 return compiled_method->GetQuickCode().size() > 0 &&
40 compiled_method->GetVmapTable().size() > 0 &&
41 compiled_method->GetGcMap().size() == 0 &&
42 code_item != nullptr;
43 }
Vladimir Marko10c13562015-11-25 14:33:36 +000044};
45
David Srbeckyc5bfa972016-02-05 15:49:10 +000046} // namespace debug
Vladimir Marko10c13562015-11-25 14:33:36 +000047} // namespace art
48
David Srbecky4fda4eb2016-02-05 13:34:46 +000049#endif // ART_COMPILER_DEBUG_METHOD_DEBUG_INFO_H_