Lines Matching defs:form_value

3366 /// Creates a DWARFExpressionList from an DW_AT_location form_value.
3367 static DWARFExpressionList GetExprListFromAtLocation(DWARFFormValue form_value,
3371 if (DWARFFormValue::IsBlockForm(form_value.Form())) {
3374 uint64_t block_offset = form_value.BlockData() - data.GetDataStart();
3375 uint64_t block_length = form_value.Unsigned();
3382 dw_offset_t offset = form_value.Unsigned();
3383 if (form_value.Form() == DW_FORM_loclistx)
3387 const DWARFUnit *dwarf_cu = form_value.GetUnit();
3399 GetExprListFromAtConstValue(DWARFFormValue form_value, ModuleSP module,
3402 if (DWARFFormValue::IsBlockForm(form_value.Form())) {
3405 form_value.BlockData() - debug_info_data.GetDataStart();
3406 uint64_t block_length = form_value.Unsigned();
3411 if (const char *str = form_value.AsCString())
3480 DWARFFormValue form_value;
3482 if (!attributes.ExtractFormValueAtIndex(i, form_value))
3487 attributes.CompileUnitAtIndex(i)->GetFile(form_value.Unsigned()));
3490 decl.SetLine(form_value.Unsigned());
3493 decl.SetColumn(form_value.Unsigned());
3496 name = form_value.AsCString();
3500 mangled = form_value.AsCString();
3503 type_die_form = form_value;
3506 is_external = form_value.Boolean();
3509 const_value_form = form_value;
3512 location_form = form_value;
3518 is_artificial = form_value.Boolean();
4011 DWARFFormValue form_value;
4012 if (!attributes.ExtractFormValueAtIndex(attr_index, form_value))
4014 if (!DWARFFormValue::IsBlockForm(form_value.Form()))
4017 uint64_t block_offset = form_value.BlockData() - data.GetDataStart();
4018 uint64_t block_length = form_value.Unsigned();
4077 DWARFFormValue form_value;
4078 if (!attributes.ExtractFormValueAtIndex(i, form_value)) {
4086 tail_call = form_value.Boolean();
4090 call_origin = form_value.Reference();
4099 low_pc = form_value.Address();
4105 return_pc = form_value.Address();
4111 call_inst_pc = form_value.Address();
4116 if (!DWARFFormValue::IsBlockForm(form_value.Form())) {
4123 uint64_t block_offset = form_value.BlockData() - data.GetDataStart();
4124 uint64_t block_length = form_value.Unsigned();