HomeSort by relevance Sort by last modified time
    Searched refs:Die (Results 1 - 25 of 34) 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...]
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...]
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...]
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...]
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...]
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 61 Die();
87 Die();
98 Die();
109 Die();
131 Die();
153 Die();
183 Die();
199 Die();
204 Die();
211 Die();
    [all...]
ubsan_handlers_cxx.cc 64 Die();
  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.cc 45 Die();
51 Die();
57 Die();
120 Die();
tsan_symbolize_addr2line_linux.cc 54 Die();
59 Die();
78 Die();
160 Die();
167 Die();
tsan_flags.cc 100 Die();
106 Die();
tsan_platform_mac.cc 63 Die();
tsan_platform_linux.cc 157 Die();
170 Die();
209 Die();
tsan_rtl.cc 123 Die();
160 Die();
202 Die();
tsan_mutex.cc 120 Die();
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.cc 45 void NORETURN Die() {
64 Die();
77 Die();
98 Die();
218 Die();
sanitizer_internal_defs.h 169 void NORETURN Die();
178 Die(); \
222 Die(); \
sanitizer_posix.cc 64 // If we went into recursion, just die.
66 Die();
200 Die();
sanitizer_common.h 148 void NORETURN Die();
159 // Specific tools may override behavior of "Die" and "CheckFailed" functions
sanitizer_thread_registry.cc 131 Die();
  /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/compiler-rt/lib/msan/
msan.cc 124 Die();
232 Die();
273 Die();
304 Die();
  /external/compiler-rt/lib/asan/
asan_posix.cc 54 if (13 != internal_write(2, "ASAN:SIGSEGV\n", 13)) Die();
asan_rtl.cc 35 // Don't die twice - run a busy loop.
63 Die();
202 Die();
505 Die();
  /external/chromium/chrome/browser/extensions/
extension_prefs_unittest.cc 922 Die();
924 MOCK_METHOD0(Die, void());
936 EXPECT_CALL(*v1, Die()).Times(0);
937 EXPECT_CALL(*v1i, Die()).Times(0);
943 EXPECT_CALL(*v1, Die()).Times(1);
944 EXPECT_CALL(*v1i, Die()).Times(1);
945 EXPECT_CALL(*v2, Die()).Times(1);
946 EXPECT_CALL(*v2i, Die()).Times(1);
    [all...]

Completed in 348 milliseconds

1 2