HomeSort by relevance Sort by last modified time
    Searched full:debuginfo (Results 126 - 150 of 415) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/lib/DebugInfo/DWARF/
DWARFTypeUnit.cpp 10 #include "llvm/DebugInfo/DWARF/DWARFTypeUnit.h"
DWARFAbbreviationDeclaration.cpp 10 #include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
DWARFDebugRangeList.cpp 10 #include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
  /external/llvm/lib/IR/
Android.mk 14 DebugInfo.cpp \
  /external/llvm/lib/
LLVMBuild.txt 19 subdirectories = Analysis AsmParser Bitcode CodeGen DebugInfo ExecutionEngine LineEditor Linker IR IRReader LTO MC Object Option Passes ProfileData Support TableGen Target Transforms
  /external/llvm/tools/llvm-pdbdump/
FunctionDumper.h 13 #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
  /external/antlr/antlr-3.4/runtime/C/
configure.ac 38 AC_ARG_ENABLE([debuginfo],
39 [AS_HELP_STRING([--enable-debuginfo], [Compiles debug info into the library (default --disable-debuginfo)])],
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugInfoEntry.h 14 #include "llvm/DebugInfo/DWARF/DIContext.h"
15 #include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
16 #include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
DWARFUnit.h 14 #include "llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h"
15 #include "llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h"
16 #include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
17 #include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
18 #include "llvm/DebugInfo/DWARF/DWARFSection.h"
DWARFDebugLoc.h 14 #include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedMethodImplementation.java 37 import org.jf.dexlib2.dexbacked.util.DebugInfo;
125 private DebugInfo getDebugInfo() {
126 return DebugInfo.newOrEmpty(dexFile, dexFile.readSmallUint(codeOffset + CodeItem.DEBUG_INFO_OFFSET), this);
  /external/valgrind/
README_PACKAGERS 13 debuginfo package by default, or make ld.so.debuginfo be a
28 not any debuginfo or extra symbols for any other libraries.
  /external/valgrind/coregrind/
pub_core_redir.h 59 #include "pub_core_debuginfo.h" // DebugInfo
65 /* Notify the module of a new DebugInfo (called from m_debuginfo). */
66 extern void VG_(redir_notify_new_DebugInfo)( const DebugInfo* );
68 /* Notify the module of the disappearance of a DebugInfo (also called
70 extern void VG_(redir_notify_delete_DebugInfo)( const DebugInfo* );
m_redir.c 73 That calls VG_(redir_notify_new_DebugInfo) when a new DebugInfo
179 When a new DebugInfo appears:
185 DebugInfo to find new specs. Each of these needs to be compared
189 - (existing Specs x new DebugInfo): scan all symbols in the
190 DebugInfo, trying to match them to any existing specs, also
193 - (new Specs x new DebugInfo): scan all symbols in the new
194 DebugInfo, trying to match them against the new specs, to
206 When a DebugInfo disappears:
251 /* Top-level data structure. It contains a pointer to a DebugInfo and
252 also a list of the specs harvested from that DebugInfo. Note tha
    [all...]
  /external/linux-tools-perf/src/tools/perf/util/
probe-event.c 205 /* Open new debuginfo of given module */
206 static struct debuginfo *open_debuginfo(const char *module)
226 * Convert trace point to probe point with debuginfo
236 struct debuginfo *dinfo;
250 pr_debug("Failed to open debuginfo at 0x%" PRIx64 "\n",
257 "debuginfo. Use kprobe event information.\n");
300 /* Try to find perf_probe_event with debuginfo */
306 struct debuginfo *dinfo;
311 pr_warning("Debuginfo-analysis is not yet supported"
322 pr_warning("Failed to open debuginfo file.\n")
    [all...]
probe-finder.c 118 static int debuginfo__init_offline_dwarf(struct debuginfo *self,
183 static int debuginfo__init_online_kernel_dwarf(struct debuginfo *self,
208 struct debuginfo *debuginfo__new(const char *path)
210 struct debuginfo *self = zalloc(sizeof(struct debuginfo));
222 struct debuginfo *debuginfo__new_online_kernel(unsigned long addr)
224 struct debuginfo *self = zalloc(sizeof(struct debuginfo));
236 void debuginfo__delete(struct debuginfo *self)
1050 /* Find probe points from debuginfo */
    [all...]
  /external/linux-tools-perf/src/tools/perf/Documentation/
perf-probe.txt 26 without debuginfo, or by C expressions (C line numbers, C function names,
27 and C local variables) with debuginfo.
34 Specify vmlinux path which has debuginfo (Dwarf binary).
137 'TYPE' casts the type of this argument (optional). If omitted, perf probe automatically set the type based on debuginfo. You can specify 'string' type only for the local variable or structure member which is an array of or a pointer to 'char' or 'unsigned char' type.
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIADataStream.cpp 10 #include "llvm/DebugInfo/PDB/DIA/DIADataStream.h"
DIALineNumber.cpp 10 #include "llvm/DebugInfo/PDB/DIA/DIALineNumber.h"
  /external/llvm/test/DebugInfo/
debuginfofinder-forward-declaration.ll 1 ; RUN: opt -analyze -module-debuginfo < %s | FileCheck %s
debuginfofinder-multiple-cu.ll 1 ; RUN: opt -analyze -module-debuginfo < %s | FileCheck %s
  /external/llvm/tools/dsymutil/
dsymutil.h 40 /// \brief Link the Dwarf debuginfo as directed by the passed DebugMap
  /external/llvm/utils/
test_debuginfo.pl 59 $my_debugger = "/usr/bin/env python $path/../tools/clang/test/debuginfo-tests/llgdb.py";
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DebugInfo.java 52 public abstract class DebugInfo implements Iterable<DebugItem> {
62 public static DebugInfo newOrEmpty(@Nonnull DexBackedDexFile dexFile, int debugInfoOffset,
70 private static class EmptyDebugInfo extends DebugInfo {
79 private static class DebugInfoImpl extends DebugInfo {
  /external/valgrind/none/tests/
cmdline1.stdout.exp 72 --extra-debuginfo-path=path absolute path to search for additional
75 --debuginfo-server=ipaddr:port also query this server
77 --allow-mismatched-debuginfo=no|yes [no]
78 for the above two flags only, accept debuginfo

Completed in 1664 milliseconds

1 2 3 4 56 7 8 91011>>