Home
last modified time | relevance | path

Searched refs:DWARFFormValue (Results 1 – 24 of 24) sorted by relevance

/external/llvm/unittests/DebugInfo/DWARF/
DDWARFFormValueTest.cpp22 TEST(DWARFFormValue, FixedFormSizes) { in TEST() argument
25 ArrayRef<uint8_t> sizes = DWARFFormValue::getFixedFormSizes(4, 2); in TEST()
27 sizes = DWARFFormValue::getFixedFormSizes(8, 2); in TEST()
29 sizes = DWARFFormValue::getFixedFormSizes(8, 3); in TEST()
32 EXPECT_EQ(0U, DWARFFormValue::getFixedFormSizes(16, 2).size()); in TEST()
35 bool isFormClass(uint16_t Form, DWARFFormValue::FormClass FC) { in isFormClass()
36 return DWARFFormValue(Form).isFormClass(FC); in isFormClass()
39 TEST(DWARFFormValue, FormClass) { in TEST() argument
40 EXPECT_TRUE(isFormClass(DW_FORM_addr, DWARFFormValue::FC_Address)); in TEST()
41 EXPECT_FALSE(isFormClass(DW_FORM_data8, DWARFFormValue::FC_Address)); in TEST()
[all …]
/external/llvm/lib/DebugInfo/DWARF/
DDWARFFormValue.cpp66 ArrayRef<uint8_t> DWARFFormValue::getFixedFormSizes(uint8_t AddrSize, in getFixedFormSizes()
80 static const DWARFFormValue::FormClass DWARF4FormClasses[] = {
81 DWARFFormValue::FC_Unknown, // 0x0
82 DWARFFormValue::FC_Address, // 0x01 DW_FORM_addr
83 DWARFFormValue::FC_Unknown, // 0x02 unused
84 DWARFFormValue::FC_Block, // 0x03 DW_FORM_block2
85 DWARFFormValue::FC_Block, // 0x04 DW_FORM_block4
86 DWARFFormValue::FC_Constant, // 0x05 DW_FORM_data2
88 DWARFFormValue::FC_Constant, // 0x06 DW_FORM_data4
89 DWARFFormValue::FC_Constant, // 0x07 DW_FORM_data8
[all …]
DDWARFDebugInfoEntry.cpp131 DWARFFormValue formValue(form); in dumpAttribute()
203 ArrayRef<uint8_t> FixedFormSizes = DWARFFormValue::getFixedFormSizes( in extractFast()
215 else if (!DWARFFormValue::skipValue(Form, DebugInfoData, OffsetPtr, U)) { in extractFast()
235 const DWARFUnit *U, const uint16_t Attr, DWARFFormValue &FormValue) const { in getAttributeValue()
251 DWARFFormValue::skipValue(AbbrevDecl->getFormByIndex(i), in getAttributeValue()
255 FormValue = DWARFFormValue(AbbrevDecl->getFormByIndex(AttrIdx)); in getAttributeValue()
261 DWARFFormValue FormValue; in getAttributeValueAsString()
270 DWARFFormValue FormValue; in getAttributeValueAsAddress()
279 DWARFFormValue FormValue; in getAttributeValueAsUnsignedConstant()
288 DWARFFormValue FormValue; in getAttributeValueAsReference()
[all …]
DDWARFAcceleratorTable.cpp61 SmallVector<DWARFFormValue, 3> AtomForms; in dump()
74 AtomForms.push_back(DWARFFormValue(Atom.second)); in dump()
DCMakeLists.txt15 DWARFFormValue.cpp
DAndroid.mk17 DWARFFormValue.cpp \
/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFFormValue.cpp100 DWARFFormValue::GetFixedFormSizesForAddressSize (uint8_t addr_size) in GetFixedFormSizesForAddressSize()
110 DWARFFormValue::DWARFFormValue(dw_form_t form) : in DWARFFormValue() function in DWARFFormValue
117 DWARFFormValue::ExtractValue(const DataExtractor& data, lldb::offset_t* offset_ptr, const DWARFComp… in ExtractValue()
186 DWARFFormValue::SkipValue(const DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const D… in SkipValue()
188 return DWARFFormValue::SkipValue(m_form, debug_info_data, offset_ptr, cu); in SkipValue()
192 DWARFFormValue::SkipValue(dw_form_t form, const DataExtractor& debug_info_data, lldb::offset_t *off… in SkipValue()
267 return DWARFFormValue::SkipValue (indirect_form, in SkipValue()
281 DWARFFormValue::Dump(Stream &s, const DataExtractor* debug_str_data, const DWARFCompileUnit* cu) co… in Dump()
381 DWARFFormValue::AsCString(const DataExtractor* debug_str_data_ptr) const in AsCString()
391 DWARFFormValue::Reference(const DWARFCompileUnit* cu) const in Reference()
[all …]
DDWARFFormValue.h17 class DWARFFormValue
47 DWARFFormValue(dw_form_t form = 0);
74 …static int Compare (const DWARFFormValue& a, const DWARFFormValue& b, const DWARFCompileU…
DDWARFDebugInfoEntry.cpp89 …s::ExtractFormValueAtIndex (SymbolFileDWARF* dwarf2Data, uint32_t i, DWARFFormValue &form_value) c… in ExtractFormValueAtIndex()
108 DWARFFormValue form_value; in FormValueAsUnsignedAtIndex()
322 DWARFFormValue form_value(form); in Extract()
782 DWARFFormValue form_value(form); in GetDIENamesAndRanges()
1078 DWARFFormValue form_value(form); in DumpAttribute()
1227 … fixed_form_sizes = DWARFFormValue::GetFixedFormSizesForAddressSize(cu->GetAddressByteSize()); in GetAttributes()
1233 DWARFFormValue form_value; in GetAttributes()
1286 DWARFFormValue::SkipValue(form, debug_info_data, &offset, cu); in GetAttributes()
1312 DWARFFormValue& form_value, in GetAttributeValue()
1329DWARFFormValue::SkipValue(abbrevDecl->GetFormByIndex(idx++), debug_info_data, &offset, cu); in GetAttributeValue()
[all …]
DDWARFAbbreviationDeclaration.cpp119 if (DWARFFormValue::IsBlockForm(form)) in CopyExcludingAddressAttributes()
164 DWARFFormValue::SkipValue(form, debug_info_data, &offset, cu); in CopyChangingStringToStrp()
DCMakeLists.txt20 DWARFFormValue.cpp
DDWARFDebugPubnames.cpp89 …const uint8_t *fixed_form_sizes = DWARFFormValue::GetFixedFormSizesForAddressSize (cu->GetAddressB… in GeneratePubnames()
118 DWARFFormValue form_value; in GeneratePubnames()
DAndroid.mk30 DWARFFormValue.cpp \
DDWARFDebugInfoEntry.h71 …bool ExtractFormValueAtIndex (SymbolFileDWARF* dwarf2Data, uint32_t i, DWARFFormValue &form_value)…
173 DWARFFormValue& formValue,
DSymbolFileDWARF.cpp1418 …const uint8_t *fixed_form_sizes = DWARFFormValue::GetFixedFormSizesForAddressSize (dwarf_cu->GetAd… in ParseTemplateDIE()
1432 DWARFFormValue form_value; in ParseTemplateDIE()
1706 …const uint8_t *fixed_form_sizes = DWARFFormValue::GetFixedFormSizesForAddressSize (dwarf_cu->GetAd… in ParseChildMembers()
1747 DWARFFormValue form_value; in ParseChildMembers()
2142 DWARFFormValue form_value; in ParseChildMembers()
3452 DWARFFormValue form_value; in FunctionDieMatchesPartialName()
4154 …const uint8_t *fixed_form_sizes = DWARFFormValue::GetFixedFormSizesForAddressSize (dwarf_cu->GetAd… in ParseChildParameters()
4180 DWARFFormValue form_value; in ParseChildParameters()
4324 …const uint8_t *fixed_form_sizes = DWARFFormValue::GetFixedFormSizesForAddressSize (dwarf_cu->GetAd… in ParseChildEnumerators()
4344 DWARFFormValue form_value; in ParseChildEnumerators()
[all …]
DDWARFCompileUnit.cpp195 …const uint8_t *fixed_form_sizes = DWARFFormValue::GetFixedFormSizesForAddressSize (GetAddressByteS… in ExtractDIEsIfNeeded()
617 …const uint8_t *fixed_form_sizes = DWARFFormValue::GetFixedFormSizesForAddressSize (GetAddressByteS… in Index()
675 DWARFFormValue form_value; in Index()
DHashedNameToDIE.h445 DWARFFormValue form_value (header_data.atoms[i].form); in Read()
484 DWARFFormValue form_value (header_data.atoms[i].form); in Dump()
DSymbolFileDWARF.h60 class DWARFFormValue; variable
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFFormValue.h22 class DWARFFormValue {
55 DWARFFormValue(uint16_t Form = 0) : Form(Form) {} in Form()
DDWARFDebugInfoEntry.h25 class DWARFFormValue; variable
90 DWARFFormValue &FormValue) const;
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp1320 CompileUnit &U, const DWARFFormValue &Val,
1328 const DWARFFormValue &Val,
1338 const DWARFFormValue &Val, CompileUnit &Unit);
1344 const DWARFFormValue &Val, unsigned AttrSize);
1350 const DWARFFormValue &Val,
1359 const DWARFFormValue &Val, unsigned AttrSize,
1481 const DWARFFormValue &RefValue, const DWARFUnit &Unit, in resolveDIEReference()
1483 assert(RefValue.isFormClass(DWARFFormValue::FC_Reference)); in resolveDIEReference()
2011 DWARFFormValue::skipValue(Abbrev->getFormByIndex(i), Data, &Offset, &Unit); in getAttributeOffsets()
2014 DWARFFormValue::skipValue(Abbrev->getFormByIndex(Idx), Data, &End, &Unit); in getAttributeOffsets()
[all …]
/external/llvm/tools/llvm-dwp/
Dllvm-dwp.cpp129 DWARFFormValue::skipValue(Form, InfoData, &Offset, Version, AddrSize); in getCUSignature()
/external/lldb/lldb.xcodeproj/
Dproject.pbxproj321 …C613353E5F00698AC0 /* DWARFFormValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 260C89D310…
804 …00BB2B04 /* DWARFFormValue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
805 …C5600BB2B04 /* DWARFFormValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
2041 260C89D310F57C5600BB2B04 /* DWARFFormValue.cpp */,
2042 260C89D410F57C5600BB2B04 /* DWARFFormValue.h */,
4105 268900C613353E5F00698AC0 /* DWARFFormValue.cpp in Sources */,
/external/v8/third_party/llvm-build/Release+Asserts/
Dbuildlog.txt573 [264/1876] Building CXX object lib/DebugInfo/DWARF/CMakeFiles/LLVMDebugInfoDWARF.dir/DWARFFormValue
2832 …ad_clang/build/src/third_party/llvm-bootstrap-install/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
7807 ninja explain: deps for 'lib/DebugInfo/DWARF/CMakeFiles/LLVMDebugInfoDWARF.dir/DWARFFormValue.cpp.o…
7808 ninja explain: lib/DebugInfo/DWARF/CMakeFiles/LLVMDebugInfoDWARF.dir/DWARFFormValue.cpp.o is dirty
14562 [253/2609] Building CXX object lib/DebugInfo/DWARF/CMakeFiles/LLVMDebugInfoDWARF.dir/DWARFFormValue