Lines Matching refs:Form
210 Optional<dwarf::Form> Form, uint64_t Integer) { in addUInt() argument
211 if (!Form) in addUInt()
212 Form = DIEInteger::BestForm(false, Integer); in addUInt()
213 assert(Form != dwarf::DW_FORM_implicit_const && in addUInt()
215 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer)); in addUInt()
218 void DwarfUnit::addUInt(DIEValueList &Block, dwarf::Form Form, in addUInt() argument
220 addUInt(Block, (dwarf::Attribute)0, Form, Integer); in addUInt()
224 Optional<dwarf::Form> Form, int64_t Integer) { in addSInt() argument
225 if (!Form) in addSInt()
226 Form = DIEInteger::BestForm(true, Integer); in addSInt()
227 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer)); in addSInt()
230 void DwarfUnit::addSInt(DIELoc &Die, Optional<dwarf::Form> Form, in addSInt() argument
232 addSInt(Die, (dwarf::Attribute)0, Form, Integer); in addSInt()
246 dwarf::Form IxForm = in addString()
271 dwarf::Form Form, in addLabel() argument
273 return Die.addValue(DIEValueAllocator, Attribute, Form, DIELabel(Label)); in addLabel()
276 void DwarfUnit::addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label) { in addLabel() argument
277 addLabel(Die, (dwarf::Attribute)0, Form, Label); in addLabel()