/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfCompileUnit.h | 17 #include "DIE.h" 39 /// Die - Compile unit debug information entry. 41 const OwningPtr<DIE> CUDie; 49 DIE *IndexTyDie; 53 DenseMap<const MDNode *, DIE *> MDNodeToDieMap; 61 StringMap<DIE*> Globals; 65 StringMap<DIE*> GlobalTypes; 71 CompileUnit(unsigned I, DIE *D, AsmPrinter *A, DwarfDebug *DW); 76 DIE* getCUDie() const { return CUDie.get(); } 77 const StringMap<DIE*> &getGlobals() const { return Globals; [all...] |
DwarfDebug.h | 20 #include "DIE.h" 40 class DIE; 103 /// labels are referenced is used to find debug_loc offset for a given DIE. 126 DIE *TheDIE; // Variable DIE. 134 void setDIE(DIE *D) { TheDIE = D; } 135 DIE *getDIE() const { return TheDIE; } 214 DenseMap<const MDNode *, DIE *> AbstractSPDies; 237 SmallPtrSet<const DIE *, 4> UseDotDebugLocEntry; 245 SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs [all...] |
DIE.h | 1 //===--- lib/CodeGen/DIE.h - DWARF Info Entries -----------------*- C++ -*-===// 110 /// DIE - A structured debug information entry. Has an abbreviation which 114 class DIE { 130 std::vector<DIE *> Children; 132 DIE *Parent; 141 explicit DIE(unsigned Tag) 144 virtual ~DIE(); 152 const std::vector<DIE *> &getChildren() const { return Children; } 154 DIE *getParent() const { return Parent; } 159 /// addValue - Add a value and attributes to a DIE [all...] |
DwarfCompileUnit.cpp | 30 CompileUnit::CompileUnit(unsigned I, DIE *D, AsmPrinter *A, DwarfDebug *DW) 43 DIEEntry *CompileUnit::createDIEEntry(DIE *Entry) { 50 void CompileUnit::addUInt(DIE *Die, unsigned Attribute, 55 Die->addValue(Attribute, Form, Value); 60 void CompileUnit::addSInt(DIE *Die, unsigned Attribute, 64 Die->addValue(Attribute, Form, Value); 69 void CompileUnit::addString(DIE *Die, unsigned Attribute, unsigned Form [all...] |
Android.mk | 15 DIE.cpp \
|
DIE.cpp | 1 //===--- lib/CodeGen/DIE.cpp - DWARF Info Entries -------------------------===// 14 #include "DIE.h" 107 // DIE Implementation 110 DIE::~DIE() { 115 /// addSiblingOffset - Add a sibling offset field to the front of the DIE. 117 DIEValue *DIE::addSiblingOffset(BumpPtrAllocator &A) { 125 void DIE::print(raw_ostream &O, unsigned IncIndent) { 132 << "Die: " 172 void DIE::dump() [all...] |
DwarfDebug.cpp | 16 #include "DIE.h" 314 /// createSubprogramDIE - Create new DIE using SP. 315 DIE *DwarfDebug::createSubprogramDIE(DISubprogram SP) { 317 DIE *SPDie = SPCU->getDIE(SP); 321 SPDie = new DIE(dwarf::DW_TAG_subprogram); 323 // DW_TAG_inlined_subroutine may refer to this DIE. 337 // If this DIE is going to refer declaration info using AT_specification 384 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter); 449 /// updateSubprogramScopeDIE - Find DIE for the given subprogram an [all...] |
/external/bluetooth/glib/ |
autogen.sh | 13 DIE=0 29 DIE=1 37 DIE=1 45 DIE=1 59 DIE=1 63 if test "$DIE" -eq 1; then
|
/external/dbus/ |
autogen.sh | 14 DIE=0 27 DIE=1 43 DIE=1 50 DIE=1 53 if test "$DIE" -eq 1; then
|
/external/harfbuzz/ |
autogen.sh | 21 DIE=0 37 DIE=1 45 DIE=1 69 DIE=1 72 if test "$DIE" -eq 1; then
|
/system/extras/fatblock/ |
utils.h | 25 #define DIE(...) do { EPRINT(__VA_ARGS__); exit(EXIT_FAILURE); } while (0) 32 void die(char *msg);
|
fatblock.c | 162 DIE("Usage: fatblock <path> <size in MB>\n"); 171 DIE("fatblock: chdir(%s) failed: %s; aborting\n", path, strerror(errno)); 175 DIE("fatblock: couldn't import filesystem; aborting\n"); 181 DIE("fatblock: couldn't create block device; aborting\n"); 184 DIE("fatblock: invalid ublock index %d; aborting\n", index);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
atmmpc.h | 104 #define DIE 207 /* tell the daemon to exit() */
|
/external/clang/lib/Sema/ |
SemaInit.cpp | 216 InitListExpr *IList, DesignatedInitExpr *DIE, [all...] |
/external/chromium/sdch/open-vcdiff/src/ |
gflags.cc | 202 // Whether we should die when reporting an error. 203 enum DieWhenReporting { DIE, DO_NOT_DIE }; 211 if (should_die == DIE) 688 ReportError(DIE, "ERROR: flag '%s' was defined more than once " 694 ReportError(DIE, "ERROR: something wrong with flag '%s' in file '%s'. " [all...] |
/external/clang/lib/AST/ |
Expr.cpp | [all...] |
/frameworks/base/core/java/android/view/ |
ViewRootImpl.java | 3665 public void die(boolean immediate) { method in class:ViewRootImpl [all...] |