Home
last modified time | relevance | path

Searched refs:DebugInfo (Results 1 – 25 of 81) sorted by relevance

1234

/external/valgrind/include/
Dpub_tool_debuginfo.h214 typedef struct _DebugInfo DebugInfo; typedef
218 DebugInfo* VG_(find_DebugInfo) ( Addr a );
221 Addr VG_(DebugInfo_get_text_avma) ( const DebugInfo *di );
222 SizeT VG_(DebugInfo_get_text_size) ( const DebugInfo *di );
223 Addr VG_(DebugInfo_get_bss_avma) ( const DebugInfo *di );
224 SizeT VG_(DebugInfo_get_bss_size) ( const DebugInfo *di );
225 Addr VG_(DebugInfo_get_plt_avma) ( const DebugInfo *di );
226 SizeT VG_(DebugInfo_get_plt_size) ( const DebugInfo *di );
227 Addr VG_(DebugInfo_get_gotplt_avma) ( const DebugInfo *di );
228 SizeT VG_(DebugInfo_get_gotplt_size) ( const DebugInfo *di );
[all …]
/external/llvm/include/llvm/
Dmodule.modulemap54 module DIContext { header "DebugInfo/DIContext.h" export * }
60 umbrella "DebugInfo/DWARF"
67 umbrella "DebugInfo/PDB"
74 exclude header "DebugInfo/PDB/DIA/DIADataStream.h"
75 exclude header "DebugInfo/PDB/DIA/DIAEnumDebugStreams.h"
76 exclude header "DebugInfo/PDB/DIA/DIAEnumLineNumbers.h"
77 exclude header "DebugInfo/PDB/DIA/DIAEnumSourceFiles.h"
78 exclude header "DebugInfo/PDB/DIA/DIAEnumSymbols.h"
79 exclude header "DebugInfo/PDB/DIA/DIALineNumber.h"
80 exclude header "DebugInfo/PDB/DIA/DIARawSymbol.h"
[all …]
/external/valgrind/coregrind/m_debuginfo/
Ddebuginfo.c118 static DebugInfo* debugInfo_list = NULL;
126 static void move_DebugInfo_one_step_forward ( DebugInfo* di ) in move_DebugInfo_one_step_forward()
128 DebugInfo *di0, *di1, *di2; in move_DebugInfo_one_step_forward()
143 DebugInfo* tmp; in move_DebugInfo_one_step_forward()
177 DebugInfo* alloc_DebugInfo( const HChar* filename ) in alloc_DebugInfo()
180 DebugInfo* di; in alloc_DebugInfo()
184 di = ML_(dinfo_zalloc)("di.debuginfo.aDI.1", sizeof(DebugInfo)); in alloc_DebugInfo()
208 static void free_DebugInfo ( DebugInfo* di ) in free_DebugInfo()
310 static void discard_DebugInfo ( DebugInfo* di ) in discard_DebugInfo()
314 DebugInfo** prev_next_ptr = &debugInfo_list; in discard_DebugInfo()
[all …]
Dpriv_storage.h1020 extern const HChar* ML_(fndn_ix2filename) (const DebugInfo* di,
1025 extern const HChar* ML_(fndn_ix2dirname) (const DebugInfo* di,
1030 extern UInt ML_(fndn_ix) (const DebugInfo* di, Word locno);
1064 DiCfSI_m* ML_(get_cfsi_m) (const DebugInfo* di, UInt pos);
1068 extern const HChar* ML_(addStr) ( DebugInfo* di, const HChar* str, Int len );
1073 extern const HChar* ML_(addStrFromCursor)( DebugInfo* di, DiCursor c );
1106 extern Word ML_(search_one_symtab) ( const DebugInfo* di, Addr ptr,
1112 extern Word ML_(search_one_loctab) ( const DebugInfo* di, Addr ptr );
1116 extern Word ML_(search_one_cfitab) ( const DebugInfo* di, Addr ptr );
1120 extern Word ML_(search_one_fpotab) ( const DebugInfo* di, Addr ptr );
[all …]
Dpriv_readdwarf.h49 ( DebugInfo* di,
61 void ML_(read_debuginfo_dwarf1) ( DebugInfo* di,
70 ( /*OUT*/ DebugInfo* di,
Dpriv_readmacho.h48 extern Bool ML_(read_macho_debug_info) ( DebugInfo* si );
Dpriv_readelf.h55 extern Bool ML_(read_elf_debug_info) ( DebugInfo* di );
Dpriv_readexidx.h40 void ML_(read_exidx) ( /*MOD*/DebugInfo* di,
Dpriv_d3basics.h663 const RegSummary* regs, const DebugInfo* di );
674 const DebugInfo* di,
684 GXResult ML_(evaluate_trivial_GX)( const GExpr* gx, const DebugInfo* di );
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DDexBackedMethodImplementation.java37 import org.jf.dexlib2.dexbacked.util.DebugInfo;
125 private DebugInfo getDebugInfo() {
129 return DebugInfo.newOrEmpty(dexFile, 0, this);
133 return DebugInfo.newOrEmpty(dexFile, 0, this);
135 return DebugInfo.newOrEmpty(dexFile, debugOffset, this);
/external/v8/src/debug/
Ddebug.h67 static BreakLocation FromAddress(Handle<DebugInfo> debug_info, Address pc);
69 static void FromAddressSameStatement(Handle<DebugInfo> debug_info, Address pc,
72 static BreakLocation FromPosition(Handle<DebugInfo> debug_info, int position,
110 BreakLocation(Handle<DebugInfo> debug_info, RelocInfo* rinfo, int position,
115 Iterator(Handle<DebugInfo> debug_info, BreakLocatorType type);
139 Handle<DebugInfo> debug_info_;
152 static int BreakIndexFromAddress(Handle<DebugInfo> debug_info, Address pc);
164 Handle<DebugInfo> debug_info_;
177 explicit DebugInfoListNode(DebugInfo* debug_info);
182 Handle<DebugInfo> debug_info() { return Handle<DebugInfo>(debug_info_); } in debug_info()
[all …]
Ddebug.cc62 BreakLocation::BreakLocation(Handle<DebugInfo> debug_info, RelocInfo* rinfo, in BreakLocation()
72 BreakLocation::Iterator::Iterator(Handle<DebugInfo> debug_info, in Iterator()
147 BreakLocation BreakLocation::FromAddress(Handle<DebugInfo> debug_info, in FromAddress()
157 void BreakLocation::FromAddressSameStatement(Handle<DebugInfo> debug_info, in FromAddressSameStatement()
171 int BreakLocation::BreakIndexFromAddress(Handle<DebugInfo> debug_info, in BreakIndexFromAddress()
189 BreakLocation BreakLocation::FromPosition(Handle<DebugInfo> debug_info, in FromPosition()
225 DebugInfo::SetBreakPoint(debug_info_, pc_offset_, position_, in SetBreakPoint()
232 DebugInfo::ClearBreakPoint(debug_info_, pc_offset_, break_point_object); in ClearBreakPoint()
359 DebugInfoListNode::DebugInfoListNode(DebugInfo* debug_info): next_(NULL) { in DebugInfoListNode()
363 Handle<DebugInfo>::cast(global_handles->Create(debug_info)).location(); in DebugInfoListNode()
[all …]
/external/llvm/test/DebugInfo/X86/
D2011-09-26-GlobalVarContext.ll26 !6 = !DIFile(filename: "test.c", directory: "/work/llvm/vanilla/test/DebugInfo")
37 !20 = !DIFile(filename: "test.c", directory: "/work/llvm/vanilla/test/DebugInfo")
43 ; CHECK: DW_AT_decl_file [DW_FORM_data1] ("/work/llvm/vanilla/test/DebugInfo{{[/\\]}}test.c")
51 ; CHECK: DW_AT_decl_file [DW_FORM_data1] ("/work/llvm/vanilla/test/DebugInfo{{[/\\]}}test.c")
/external/valgrind/coregrind/
Dpub_core_redir.h66 extern void VG_(redir_notify_new_DebugInfo)( const DebugInfo* );
70 extern void VG_(redir_notify_delete_DebugInfo)( const DebugInfo* );
Dpub_core_debuginfo.h211 Int VG_(DebugInfo_syms_howmany) ( const DebugInfo *di );
212 void VG_(DebugInfo_syms_getidx) ( const DebugInfo *di,
/external/llvm/lib/DebugInfo/DWARF/
DCMakeLists.txt22 ${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo/DWARF
23 ${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo
DLLVMBuild.txt1 ;===- ./lib/DebugInfo/DWARF/LLVMBuild.txt ----------------------*- Conf -*--===;
21 parent = DebugInfo
/external/llvm/lib/DebugInfo/Symbolize/
DLLVMBuild.txt1 ;===- ./lib/DebugInfo/Symbolize/LLVMBuild.txt ------------------*- Conf -*--===;
21 parent = DebugInfo
DCMakeLists.txt7 ${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo/Symbolize
/external/llvm/lib/DebugInfo/
DLLVMBuild.txt1 ;===- ./lib/DebugInfo/LLVMBuild.txt ----------------------------*- Conf -*--===;
23 name = DebugInfo
/external/llvm/lib/DebugInfo/PDB/
DLLVMBuild.txt1 ;===- ./lib/DebugInfo/PDB/LLVMBuild.txt ------------------------*- Conf -*--===;
21 parent = DebugInfo
DCMakeLists.txt26 set(LIBPDB_ADDITIONAL_HEADER_DIRS "${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo/PDB/DIA")
30 list(APPEND LIBPDB_ADDITIONAL_HEADER_DIRS "${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo/PDB")
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DDebugInfo.java52 public abstract class DebugInfo implements Iterable<DebugItem> { class
62 public static DebugInfo newOrEmpty(@Nonnull DexBackedDexFile dexFile, int debugInfoOffset, in newOrEmpty()
70 private static class EmptyDebugInfo extends DebugInfo {
83 private static class DebugInfoImpl extends DebugInfo {
/external/llvm/
DAndroid.mk34 lib/DebugInfo/DWARF \
35 lib/DebugInfo/PDB \
36 lib/DebugInfo/Symbolize \
/external/valgrind/callgrind/
Dfn.c229 obj_node* new_obj_node(DebugInfo* di, obj_node* next) in new_obj_node()
264 obj_node* CLG_(get_obj_node)(DebugInfo* di) in CLG_()
413 fn_node* get_fn_node_inseg(DebugInfo* di, in get_fn_node_inseg()
430 DebugInfo** pDebugInfo) in CLG_()
491 DebugInfo* di; in CLG_()

1234