Home
last modified time | relevance | path

Searched refs:dwarf (Results 101 - 125 of 478) sorted by relevance

12345678910>>...20

/third_party/libunwind/libunwind/src/s390x/
H A DGis_signal_frame.c47 as = c->dwarf.as; in unw_is_signal_frame()
49 arg = c->dwarf.as_arg; in unw_is_signal_frame()
54 ip = c->dwarf.ip & ~7; in unw_is_signal_frame()
55 shift -= (c->dwarf.ip - ip) * 8; in unw_is_signal_frame()
H A DGinit_remote.c44 c->dwarf.as = as; in unw_init_remote()
47 c->dwarf.as_arg = c; in unw_init_remote()
52 c->dwarf.as_arg = as_arg; in unw_init_remote()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.cpp24 using namespace dwarf;
49 Tag = static_cast<llvm::dwarf::Tag>(Data.getULEB128(OffsetPtr)); in extract()
99 if ((ByteSize = dwarf::getFixedFormByteSize(F, dwarf::FormParams()))) { in extract()
142 DWARFAbbreviationDeclaration::findAttributeIndex(dwarf::Attribute Attr) const { in findAttributeIndex()
151 const uint64_t DIEOffset, const dwarf::Attribute Attr, in getAttributeValue()
204 auto FixedByteSize = dwarf::getFixedFormByteSize(Form, U.getFormParams()); in getByteSize()
H A DDWARFListTable.cpp27 Format = dwarf::DwarfFormat::DWARF32; in extract()
30 if (HeaderData.Length == dwarf::DW_LENGTH_DWARF64) { in extract()
31 Format = dwarf::DwarfFormat::DWARF64; in extract()
34 } else if (HeaderData.Length >= dwarf::DW_LENGTH_lo_reserved) { in extract()
41 HeaderData.Length + dwarf::getUnitLengthFieldByteSize(Format); in extract()
115 return HeaderData.Length + dwarf::getUnitLengthFieldByteSize(Format); in length()
H A DDWARFVerifier.cpp26 using namespace dwarf;
116 if (Length == dwarf::DW_LENGTH_DWARF64) { in verifyUnitHeader()
126 ValidType = dwarf::isUnitType(UnitType); in verifyUnitHeader()
185 if (!dwarf::isUnitType(Die.getTag())) { in verifyUnitContents()
187 << dwarf::TagString(Die.getTag()) << ".\n"; in verifyUnitContents()
193 error() << "Compilation unit type (" << dwarf::UnitTypeString(UnitType) in verifyUnitContents()
194 << ") and root DIE (" << dwarf::TagString(Die.getTag()) in verifyUnitContents()
202 if (Die.getTag() == dwarf::DW_TAG_skeleton_unit && Die.hasChildren()) { in verifyUnitContents()
305 case dwarf::DW_UT_type: in verifyUnitSection()
306 case dwarf in verifyUnitSection()
[all...]
H A DDWARFDie.cpp37 using namespace dwarf;
108 static void dumpTypeTagName(raw_ostream &OS, dwarf::Tag T) {
133 LanguageLowerBound(static_cast<dwarf::SourceLanguage>(*LC))))
173 const dwarf::Tag T = D.getTag();
234 uint64_t *OffsetPtr, dwarf::Attribute Attr,
235 dwarf::Form Form, unsigned Indent,
282 } else if (Form == dwarf::Form::DW_FORM_exprloc ||
313 dwarf::DW_FORM_sec_offset, *RangeListOffset);
334 Optional<DWARFFormValue> DWARFDie::find(dwarf::Attribute Attr) const {
344 DWARFDie::find(ArrayRef<dwarf
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp122 uint16_t HashFunction = dwarf::DW_hash_function_djb;
212 dwarf::Index Index;
213 dwarf::Form Form;
301 Asm->OutStreamer->AddComment(dwarf::AtomTypeString(A.Type)); in emit()
303 Asm->OutStreamer->AddComment(dwarf::FormEncodingString(A.Form)); in emit()
417 dwarf::Form Form = DIEInteger::BestForm(/*IsSigned*/ false, LargestCUIndex); in getUniformAttributes()
418 UA.push_back({dwarf::DW_IDX_compile_unit, Form}); in getUniformAttributes()
420 UA.push_back({dwarf::DW_IDX_die_offset, dwarf::DW_FORM_ref4}); in getUniformAttributes()
461 Asm->OutStreamer->AddComment(dwarf in emitAbbrevs()
[all...]
/third_party/elfutils/tests/
H A Ddebugaltlink.c49 Dwarf *dwarf = dwarf_begin (fd, DWARF_C_READ); in main() local
50 if (dwarf == NULL) in main()
60 (dwarf, &name, &build_id); in main()
78 dwarf_end (dwarf); in main()
H A Ddwarfcfi.c22 #include <dwarf.h>
33 #include "../libdw/known-dwarf.h"
148 Dwarf *dwarf = dwarf_begin_elf (elf, DWARF_C_READ, NULL); in main() local
149 if (dwarf == NULL) in main()
153 Dwarf_CFI *cfi = dwarf_getcfi (dwarf); in main()
171 dwarf_end (dwarf); in main()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h61 virtual Optional<dwarf::Tag> getTag() const = 0;
97 using Form = dwarf::Form;
133 Optional<dwarf::Tag> getTag() const override;
196 std::pair<uint64_t, dwarf::Tag> readAtoms(uint64_t *HashDataOffset);
254 dwarf::Index Index;
255 dwarf::Form Form;
257 constexpr AttributeEncoding(dwarf::Index Index, dwarf::Form Form) in AttributeEncoding()
269 dwarf::Tag Tag; ///< Dwarf Tag of the described entity.
272 Abbrev(uint32_t Code, dwarf
[all...]
H A DDWARFDebugAddr.h47 dwarf::DwarfFormat Format;
72 case dwarf::DwarfFormat::DWARF32: in getHeaderSize()
74 case dwarf::DwarfFormat::DWARF64: in getHeaderSize()
H A DDWARFDie.h72 dwarf::Tag getTag() const { in getTag()
76 return dwarf::DW_TAG_null; in getTag()
142 Optional<DWARFFormValue> find(dwarf::Attribute Attr) const;
155 Optional<DWARFFormValue> find(ArrayRef<dwarf::Attribute> Attrs) const;
167 findRecursively(ArrayRef<dwarf::Attribute> Attrs) const;
182 DWARFDie getAttributeValueAsReferencedDie(dwarf::Attribute Attr) const;
236 getLocations(dwarf::Attribute Attr) const;
H A DDWARFListTable.h80 dwarf::DwarfFormat Format;
104 dwarf::DwarfFormat getFormat() const { return Format; } in getFormat()
108 static uint8_t getHeaderSize(dwarf::DwarfFormat Format) { in getHeaderSize()
110 case dwarf::DwarfFormat::DWARF32: in getHeaderSize()
112 case dwarf::DwarfFormat::DWARF64: in getHeaderSize()
170 dwarf::DwarfFormat getFormat() const { return Header.getFormat(); } in getFormat()
258 dwarf::RangeListEncodingString(Entry.EntryKind).size()); in dump()
/third_party/elfutils/libdw/
H A Ddwarf_getelf.c40 dwarf_getelf (Dwarf *dwarf) in dwarf_getelf() argument
42 if (dwarf == NULL) in dwarf_getelf()
46 return dwarf->elf; in dwarf_getelf()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerCompileUnit.h90 if (auto Lang = dwarf::toUnsigned(CUDie.find(dwarf::DW_AT_language))) in CompileUnit()
91 HasODR = CanUseODR && (*Lang == dwarf::DW_LANG_C_plus_plus || in CompileUnit()
92 *Lang == dwarf::DW_LANG_C_plus_plus_03 || in CompileUnit()
93 *Lang == dwarf::DW_LANG_C_plus_plus_11 || in CompileUnit()
94 *Lang == dwarf::DW_LANG_C_plus_plus_14 || in CompileUnit()
95 *Lang == dwarf::DW_LANG_ObjC_plus_plus); in CompileUnit()
/third_party/libunwind/libunwind/src/aarch64/
H A DGinit_remote.c41 c->dwarf.as = as; in unw_init_remote()
44 c->dwarf.as_arg = c; in unw_init_remote()
49 c->dwarf.as_arg = as_arg; in unw_init_remote()
H A DGis_signal_frame.c45 as = c->dwarf.as; in unw_is_signal_frame()
47 arg = c->dwarf.as_arg; in unw_is_signal_frame()
49 ip = c->dwarf.ip; in unw_is_signal_frame()
/third_party/libunwind/libunwind/src/riscv/
H A DGinit_remote.c41 c->dwarf.as = as; in unw_init_remote()
44 c->dwarf.as_arg = c; in unw_init_remote()
49 c->dwarf.as_arg = as_arg; in unw_init_remote()
H A DGis_signal_frame.c54 as = c->dwarf.as; in unw_is_signal_frame()
56 arg = c->dwarf.as_arg; in unw_is_signal_frame()
58 ip = c->dwarf.ip; in unw_is_signal_frame()
/third_party/libunwind/libunwind/src/x86_64/
H A DGinit_remote.c45 c->dwarf.as = as; in unw_init_remote()
48 c->dwarf.as_arg = dwarf_build_as_arg(as_arg, /*validate*/ 0); in unw_init_remote()
52 c->dwarf.as_arg = as_arg; in unw_init_remote()
/third_party/libunwind/libunwind/src/ppc32/
H A DGresume.c73 return (*c->dwarf.as->acc.resume) (c->dwarf.as, (unw_cursor_t *) c, in unw_resume()
74 c->dwarf.as_arg); in unw_resume()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DDIBuilder.cpp27 using namespace llvm::dwarf;
114 auto *MF = DIMacroFile::get(VMContext, dwarf::DW_MACINFO_start_file, in finalize()
145 assert(((Lang <= dwarf::DW_LANG_Fortran08 && Lang >= dwarf::DW_LANG_C89) || in createCompileUnit()
146 (Lang <= dwarf::DW_LANG_hi_user && Lang >= dwarf::DW_LANG_lo_user)) && in createCompileUnit()
164 createImportedModule(LLVMContext &C, dwarf::Tag Tag, DIScope *Context, in createImportedModule()
182 return ::createImportedModule(VMContext, dwarf::DW_TAG_imported_module, in createImportedModule()
190 return ::createImportedModule(VMContext, dwarf::DW_TAG_imported_module, in createImportedModule()
197 return ::createImportedModule(VMContext, dwarf in createImportedModule()
[all...]
/third_party/libunwind/libunwind/src/ppc/
H A DGis_signal_frame.c40 as = c->dwarf.as; in unw_is_signal_frame()
42 arg = c->dwarf.as_arg; in unw_is_signal_frame()
51 ip = c->dwarf.ip; in unw_is_signal_frame()
/third_party/libunwind/libunwind/src/sh/
H A DGis_signal_frame.c77 as = c->dwarf.as; in unw_is_signal_frame()
79 arg = c->dwarf.as_arg; in unw_is_signal_frame()
81 ip = c->dwarf.ip; in unw_is_signal_frame()
/third_party/libunwind/libunwind/src/hppa/
H A DGis_signal_frame.c39 as = c->dwarf.as; in unw_is_signal_frame()
41 arg = c->dwarf.as_arg; in unw_is_signal_frame()
55 ip = c->dwarf.ip; in unw_is_signal_frame()

Completed in 14 milliseconds

12345678910>>...20