Lines Matching refs:form_value

3388 static DWARFExpressionList GetExprListFromAtLocation(DWARFFormValue form_value,  in GetExprListFromAtLocation()  argument
3392 if (DWARFFormValue::IsBlockForm(form_value.Form())) { in GetExprListFromAtLocation()
3395 uint32_t block_offset = form_value.BlockData() - data.GetDataStart(); in GetExprListFromAtLocation()
3396 uint32_t block_length = form_value.Unsigned(); in GetExprListFromAtLocation()
3403 dw_offset_t offset = form_value.Unsigned(); in GetExprListFromAtLocation()
3404 if (form_value.Form() == DW_FORM_loclistx) in GetExprListFromAtLocation()
3408 const DWARFUnit *dwarf_cu = form_value.GetUnit(); in GetExprListFromAtLocation()
3420 GetExprListFromAtConstValue(DWARFFormValue form_value, ModuleSP module, in GetExprListFromAtConstValue() argument
3423 if (DWARFFormValue::IsBlockForm(form_value.Form())) { in GetExprListFromAtConstValue()
3426 form_value.BlockData() - debug_info_data.GetDataStart(); in GetExprListFromAtConstValue()
3427 uint32_t block_length = form_value.Unsigned(); in GetExprListFromAtConstValue()
3432 if (const char *str = form_value.AsCString()) in GetExprListFromAtConstValue()
3501 DWARFFormValue form_value; in ParseVariableDIE() local
3503 if (!attributes.ExtractFormValueAtIndex(i, form_value)) in ParseVariableDIE()
3508 attributes.CompileUnitAtIndex(i)->GetFile(form_value.Unsigned())); in ParseVariableDIE()
3511 decl.SetLine(form_value.Unsigned()); in ParseVariableDIE()
3514 decl.SetColumn(form_value.Unsigned()); in ParseVariableDIE()
3517 name = form_value.AsCString(); in ParseVariableDIE()
3521 mangled = form_value.AsCString(); in ParseVariableDIE()
3524 type_die_form = form_value; in ParseVariableDIE()
3527 is_external = form_value.Boolean(); in ParseVariableDIE()
3530 const_value_form = form_value; in ParseVariableDIE()
3533 location_form = form_value; in ParseVariableDIE()
3539 is_artificial = form_value.Boolean(); in ParseVariableDIE()
4030 DWARFFormValue form_value; in CollectCallSiteParameters() local
4031 if (!attributes.ExtractFormValueAtIndex(attr_index, form_value)) in CollectCallSiteParameters()
4033 if (!DWARFFormValue::IsBlockForm(form_value.Form())) in CollectCallSiteParameters()
4036 uint32_t block_offset = form_value.BlockData() - data.GetDataStart(); in CollectCallSiteParameters()
4037 uint32_t block_length = form_value.Unsigned(); in CollectCallSiteParameters()
4096 DWARFFormValue form_value; in CollectCallEdges() local
4097 if (!attributes.ExtractFormValueAtIndex(i, form_value)) { in CollectCallEdges()
4105 tail_call = form_value.Boolean(); in CollectCallEdges()
4109 call_origin = form_value.Reference(); in CollectCallEdges()
4118 low_pc = form_value.Address(); in CollectCallEdges()
4124 return_pc = form_value.Address(); in CollectCallEdges()
4130 call_inst_pc = form_value.Address(); in CollectCallEdges()
4135 if (!DWARFFormValue::IsBlockForm(form_value.Form())) { in CollectCallEdges()
4142 uint32_t block_offset = form_value.BlockData() - data.GetDataStart(); in CollectCallEdges()
4143 uint32_t block_length = form_value.Unsigned(); in CollectCallEdges()