Lines Matching refs:Form
229 Optional<dwarf::Form> Form, uint64_t Integer) { in addUInt() argument
230 if (!Form) in addUInt()
231 Form = DIEInteger::BestForm(false, Integer); in addUInt()
232 assert(Form != dwarf::DW_FORM_implicit_const && in addUInt()
234 addAttribute(Die, Attribute, *Form, DIEInteger(Integer)); in addUInt()
237 void DwarfUnit::addUInt(DIEValueList &Block, dwarf::Form Form, in addUInt() argument
239 addUInt(Block, (dwarf::Attribute)0, Form, Integer); in addUInt()
243 Optional<dwarf::Form> Form, int64_t Integer) { in addSInt() argument
244 if (!Form) in addSInt()
245 Form = DIEInteger::BestForm(true, Integer); in addSInt()
246 addAttribute(Die, Attribute, *Form, DIEInteger(Integer)); in addSInt()
249 void DwarfUnit::addSInt(DIELoc &Die, Optional<dwarf::Form> Form, in addSInt() argument
251 addSInt(Die, (dwarf::Attribute)0, Form, Integer); in addSInt()
265 dwarf::Form IxForm = in addString()
288 dwarf::Form Form, const MCSymbol *Label) { in addLabel() argument
289 addAttribute(Die, Attribute, Form, DIELabel(Label)); in addLabel()
292 void DwarfUnit::addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label) { in addLabel() argument
293 addLabel(Die, (dwarf::Attribute)0, Form, Label); in addLabel()
402 void DwarfUnit::addBlock(DIE &Die, dwarf::Attribute Attribute, dwarf::Form Form, in addBlock() argument
406 addAttribute(Die, Attribute, Form, Block); in addBlock()