Home
last modified time | relevance | path

Searched refs:form_value (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.cpp395 return form_value.Unsigned(); in GetRangesOffset()
746 form_value.Dump(s); in DumpAttribute()
953 DWARFFormValue form_value; in GetAttributeValueAsString() local
969 DWARFFormValue form_value; in GetAttributeValueAsUnsigned() local
985 DWARFFormValue form_value; in GetAttributeValueAsSigned() local
988 return form_value.Signed(); in GetAttributeValueAsSigned()
1002 DWARFFormValue form_value; in GetAttributeValueAsReference() local
1013 DWARFFormValue form_value; in GetAttributeValueAsAddress() local
1016 return form_value.Address(); in GetAttributeValueAsAddress()
1031 DWARFFormValue form_value; in GetAttributeHighPC() local
[all …]
H A DDWARFASTParserClang.cpp273 DWARFFormValue form_value; in ParseTypeFromDWARF() local
302 form_value.Unsigned())); in ParseTypeFromDWARF()
322 encoding_uid = form_value; in ParseTypeFromDWARF()
2001 DWARFFormValue form_value; in ParseTemplateDIE() local
2472 DWARFFormValue form_value; in ParseChildEnumerators() local
2734 DWARFFormValue form_value; in ParseChildMembers() local
2751 encoding_form = form_value; in ParseChildMembers()
3201 DWARFFormValue form_value; in ParseChildMembers() local
3344 DWARFFormValue form_value; in ParseChildParameters() local
3471 DWARFFormValue form_value; in ParseChildArrayInfo() local
[all …]
H A DDWARFAttribute.cpp50 uint32_t i, DWARFFormValue &form_value) const { in ExtractFormValueAtIndex()
52 form_value.SetCompileUnit(cu); in ExtractFormValueAtIndex()
53 form_value.SetForm(FormAtIndex(i)); in ExtractFormValueAtIndex()
55 return form_value.ExtractValue(cu->GetData(), &offset); in ExtractFormValueAtIndex()
69 DWARFFormValue form_value; in FormValueAsUnsignedAtIndex() local
70 if (ExtractFormValueAtIndex(i, form_value)) in FormValueAsUnsignedAtIndex()
71 return form_value.Reference(); in FormValueAsUnsignedAtIndex()
H A DDIERef.cpp40 DIERef::DIERef(const DWARFFormValue &form_value) in DIERef() argument
42 if (form_value.IsValid()) { in DIERef()
43 const DWARFUnit *dwarf_cu = form_value.GetCompileUnit(); in DIERef()
50 die_offset = form_value.Reference(); in DIERef()
H A DManualDWARFIndex.cpp160 DWARFFormValue form_value; in IndexUnitImpl() local
163 if (attributes.ExtractFormValueAtIndex(i, form_value)) in IndexUnitImpl()
164 name = form_value.AsCString(); in IndexUnitImpl()
168 if (attributes.ExtractFormValueAtIndex(i, form_value)) in IndexUnitImpl()
169 is_declaration = form_value.Unsigned() != 0; in IndexUnitImpl()
180 if (attributes.ExtractFormValueAtIndex(i, form_value)) in IndexUnitImpl()
181 mangled_cstr = form_value.AsCString(); in IndexUnitImpl()
243 if (attributes.ExtractFormValueAtIndex(i, form_value)) in IndexUnitImpl()
244 specification_die_form = form_value; in IndexUnitImpl()
H A DDWARFAbbreviationDeclaration.h41 DWARFFormValue &form_value) const { in GetAttrAndFormValueByIndex() argument
42 m_attributes[idx].get(attr, form_value.FormRef(), form_value.ValueRef()); in GetAttrAndFormValueByIndex()
H A DHashedNameToDIE.cpp274 DWARFFormValue form_value(NULL, header_data.atoms[i].form); in Read() local
276 if (!form_value.ExtractValue(data, offset_ptr)) in Read()
282 DWARFFormValue::IsDataForm(form_value.Form()) in Read()
283 ? form_value.Unsigned() in Read()
284 : form_value.Reference(header_data.die_base_offset); in Read()
288 hash_data.tag = (dw_tag_t)form_value.Unsigned(); in Read()
292 hash_data.type_flags = (uint32_t)form_value.Unsigned(); in Read()
296 hash_data.qualified_name_hash = form_value.Unsigned(); in Read()
314 DWARFFormValue form_value(NULL, header_data.atoms[i].form); in Dump() local
H A DSymbolFileDWARF.cpp3259 DWARFFormValue form_value; in ParseVariableDIE() local
3265 form_value.Unsigned())); in ParseVariableDIE()
3268 decl.SetLine(form_value.Unsigned()); in ParseVariableDIE()
3271 decl.SetColumn(form_value.Unsigned()); in ParseVariableDIE()
3274 name = form_value.AsCString(); in ParseVariableDIE()
3278 mangled = form_value.AsCString(); in ParseVariableDIE()
3281 type_die_form = form_value; in ParseVariableDIE()
3284 is_external = form_value.Boolean(); in ParseVariableDIE()
3313 form_value.Unsigned(); in ParseVariableDIE()
3317 const_value = form_value; in ParseVariableDIE()
[all …]
H A DDWARFDIE.cpp84 DWARFFormValue form_value; in GetAttributeValueAsReferenceDIE() local
85 if (m_die->GetAttributeValue(dwarf, cu, attr, form_value, nullptr, in GetAttributeValueAsReferenceDIE()
87 return dwarf->GetDIE(DIERef(form_value)); in GetAttributeValueAsReferenceDIE()
H A DDIERef.h32 explicit DIERef(const DWARFFormValue &form_value);
H A DDWARFAttribute.h70 bool ExtractFormValueAtIndex(uint32_t i, DWARFFormValue &form_value) const;
H A DDWARFDebugInfoEntry.h179 dw_attr_t attr, DWARFFormValue &form_value);