Home
last modified time | relevance | path

Searched refs:m_form (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.cpp27 m_form = dw_form_t(0); in Clear()
33 if (m_form == DW_FORM_implicit_const) in ExtractValue()
43 switch (m_form) { in ExtractValue()
127 m_form = static_cast<dw_form_t>(data.GetULEB128(offset_ptr)); in ExtractValue()
198 return GetFixedSize(m_form, m_unit); in GetFixedSize()
203 return DWARFFormValue::SkipValue(m_form, debug_info_data, offset_ptr, m_unit); in SkipValue()
337 switch (m_form) { in Dump()
365 switch (m_form) { in Dump()
443 s.Printf("DW_FORM(0x%4.4x)", m_form); in Dump()
457 if (m_form == DW_FORM_string) in AsCString()
[all …]
H A DDWARFFormValue.h36 : m_unit(unit), m_form(form) {} in DWARFFormValue()
39 dw_form_t Form() const { return m_form; } in Form()
40 dw_form_t &FormRef() { return m_form; } in FormRef()
41 void SetForm(dw_form_t form) { m_form = form; } in SetForm()
67 bool IsValid() const { return m_form != 0; } in IsValid()
89 dw_form_t m_form = dw_form_t(0); // Form for this value variable
H A DDWARFAttribute.h25 : m_attr(attr), m_form(form), m_value(value) {} in get_attr()
28 dw_form_t get_form() const { return m_form; } in get()
33 form = m_form; in get()
39 dw_form_t m_form;
36 dw_form_t m_form; global() variable