HomeSort by relevance Sort by last modified time
    Searched refs:DIE (Results 1 - 25 of 26) sorted by null

1 2

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 17 #include "DIE.h"
45 /// Die - Compile unit debug information entry.
47 const OwningPtr<DIE> CUDie;
57 DIE *IndexTyDie;
61 DenseMap<const MDNode *, DIE *> MDNodeToDieMap;
69 StringMap<DIE*> GlobalNames;
73 StringMap<DIE*> GlobalTypes;
77 StringMap<std::vector<DIE*> > AccelNames;
78 StringMap<std::vector<DIE*> > AccelObjC;
79 StringMap<std::vector<DIE*> > AccelNamespace
    [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; }
155 /// Climb up the parent chain to get the compile unit DIE this DIE belong
    [all...]
DwarfCompileUnit.cpp 35 CompileUnit::CompileUnit(unsigned UID, unsigned L, DIE *D, AsmPrinter *A,
50 DIEEntry *CompileUnit::createDIEEntry(DIE *Entry) {
100 void CompileUnit::addFlag(DIE *Die, unsigned Attribute) {
102 Die->addValue(Attribute, dwarf::DW_FORM_flag_present,
105 addUInt(Die, Attribute, dwarf::DW_FORM_flag, 1);
110 void CompileUnit::addUInt(DIE *Die, unsigned Attribute,
115 Die->addValue(Attribute, Form, Value);
120 void CompileUnit::addSInt(DIE *Die, unsigned Attribute
    [all...]
Android.mk 15 DIE.cpp \
40 DIE.cpp \
DwarfDebug.h 17 #include "DIE.h"
41 class DIE;
105 /// labels are referenced is used to find debug_loc offset for a given DIE.
127 DIE *TheDIE; // Variable DIE.
140 void setDIE(DIE *D) { TheDIE = D; }
141 DIE *getDIE() const { return TheDIE; }
234 /// \brief Compute the size and offset of a DIE given an incoming Offset.
235 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset)
    [all...]
DwarfAccelTable.h 17 #include "DIE.h"
65 class DIE;
129 eAtomTypeDIEOffset = 1u, // DIE offset, check form for encoding
130 eAtomTypeCUOffset = 2u, // DIE offset of the compiler unit header that
196 DIE *Die; // Offsets
199 HashDataContents(DIE *D, char Flags) :
200 Die(D),
204 O << " Offset: " << Die->getOffset() << "\n";
205 O << " Tag: " << dwarf::TagString(Die->getTag()) << "\n"
    [all...]
DIE.cpp 1 //===--- lib/CodeGen/DIE.cpp - DWARF Info Entries -------------------------===//
14 #include "DIE.h"
107 // DIE Implementation
110 DIE::~DIE() {
115 /// Climb up the parent chain to get the compile unit DIE this DIE belongs to.
116 DIE *DIE::getCompileUnit() const{
117 DIE *p = getParent()
    [all...]
DwarfDebug.cpp 16 #include "DIE.h"
319 DIE* Die) {
322 TheCU->addAccelName(SP.getName(), Die);
327 TheCU->addAccelName(SP.getLinkageName(), Die);
334 TheCU->addAccelObjC(Class, Die);
336 TheCU->addAccelObjC(Category, Die);
338 TheCU->addAccelName(getObjCMethodName(SP.getName()), Die);
342 // Find DIE for the given subprogram and attach appropriate DW_AT_low_pc
345 DIE *DwarfDebug::updateSubprogramScopeDIE(CompileUnit *SPCU
    [all...]
DwarfAccelTable.cpp 15 #include "DIE.h"
47 void DwarfAccelTable::AddName(StringRef Name, DIE* die, char Flags) {
49 // If the string is in the list already then add this die to the list
52 DIEs.push_back(new (Allocator) HashDataContents(die, Flags));
76 return A->Die->getOffset() < B->Die->getOffset();
123 Asm->OutStreamer.AddComment("HeaderData Die Offset Base");
199 // Emit the DIE offset
200 Asm->EmitInt32((*DI)->Die->getOffset())
    [all...]
  /external/clang/test/Parser/
cxx-decl.cpp 165 struct DIE {
169 void test (DIE die, DIE *Die, DIE INT, DIE *FLOAT) {
170 DIE.foo(); // expected-error {{cannot use dot operator on a type}}
171 die.foo();
173 DIE->foo(); // expected-error {{cannot use arrow operator on a type}
    [all...]
  /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);
  /external/libvorbis/
autogen.sh 14 DIE=0
22 DIE=1
103 DIE=1
106 if test "$DIE" -eq 1; then
  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.cpp 43 // Dump all data in the DIE for the attributes.
529 // Try to get name from specification DIE.
539 // Try to get name from abstract origin DIE.
569 for (const DWARFDebugInfoEntryMinimal *DIE = this; DIE; ) {
570 // Append current DIE to inlined chain only if it has correct tag
572 if (DIE->isSubroutineDIE()) {
573 InlinedChain.push_back(*DIE);
576 const DWARFDebugInfoEntryMinimal *Child = DIE->getFirstChild();
584 DIE = Child
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
HotSpotSystem.java 42 public static final int DIE = 9;
LifetimeComponent.java 22 * This component allows objects to die and be deleted when their life is reduced to zero or they
60 public void setDieWhenInvisible(boolean die) {
61 mDieWhenInvisible = die;
83 die(parentObject);
98 die(parentObject);
108 parentObject.getPosition().y + 10.0f) == HotSpotSystem.HotSpotType.DIE) {
121 die(parentObject);
126 private void die(GameObject parentObject) { method in class:LifetimeComponent
184 public final void setDieOnHitBackground(boolean die) {
185 mDieOnHitBackground = die;
    [all...]
AnimationComponent.java 293 parentObject.getPosition().y + 10.0f) == HotSpotSystem.HotSpotType.DIE) {
PlayerComponent.java 272 // we fell off the bottom of the screen, die.
284 parentObject.getPosition().y + 10.0f) == HotSpotSystem.HotSpotType.DIE) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmmpc.h 104 #define DIE 207 /* tell the daemon to exit() */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmmpc.h 104 #define DIE 207 /* tell the daemon to exit() */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmmpc.h 104 #define DIE 207 /* tell the daemon to exit() */
  /external/clang/lib/Sema/
SemaInit.cpp 232 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/open-vcdiff/gflags/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...]

Completed in 1117 milliseconds

1 2