Home
last modified time | relevance | path

Searched refs:DIEInteger (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp375 void DIEInteger::emitValue(const AsmPrinter *Asm, dwarf::Form Form) const { in emitValue()
430 unsigned DIEInteger::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const { in SizeOf()
455 void DIEInteger::print(raw_ostream &O) const { in print()
582 DIEInteger(S.getIndex()).emitValue(AP, Form); in emitValue()
588 DIEInteger(S.getOffset()).emitValue(AP, Form); in emitValue()
606 return DIEInteger(S.getIndex()).SizeOf(AP, Form); in SizeOf()
610 return DIEInteger(S.getOffset()).SizeOf(AP, Form); in SizeOf()
H A DDwarfUnit.cpp223 addAttribute(Die, Attribute, dwarf::DW_FORM_flag_present, DIEInteger(1)); in addFlag()
225 addAttribute(Die, Attribute, dwarf::DW_FORM_flag, DIEInteger(1)); in addFlag()
231 Form = DIEInteger::BestForm(false, Integer); in addUInt()
234 addAttribute(Die, Attribute, *Form, DIEInteger(Integer)); in addUInt()
245 Form = DIEInteger::BestForm(true, Integer); in addSInt()
246 addAttribute(Die, Attribute, *Form, DIEInteger(Integer)); in addSInt()
372 DIEInteger(Signature)); in addDIETypeSignature()
H A DAccelTable.cpp412 dwarf::Form Form = DIEInteger::BestForm(/*IsSigned*/ false, LargestCUIndex); in getUniformAttributes()
481 DIEInteger ID(getCUIndexForEntry(Entry)); in emitEntry()
H A DDwarfCompileUnit.cpp89 DIEInteger(idx)); in addLabelAddress()
117 addAttribute(Die, Attribute, dwarf::DW_FORM_addr, DIEInteger(0)); in addLocalLabelAddress()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp863 DIEInteger(StringEntry.getOffset())); in cloneStringAttribute()
893 DIEInteger Attr(Ctxt->getCanonicalDIEOffset()); in cloneDieReferenceAttribute()
922 dwarf::DW_FORM_ref_addr, DIEInteger(Attr)); in cloneDieReferenceAttribute()
1045 dwarf::DW_FORM_data1, DIEInteger(Byte)); in cloneBlockAttribute()
1132 static_cast<dwarf::Form>(Form), DIEInteger(Addr)); in cloneAddressAttribute()
1158 dwarf::Form(AttrSpec.Form), DIEInteger(Value)); in cloneScalarAttribute()
1182 dwarf::Form(AttrSpec.Form), DIEInteger(Value)); in cloneScalarAttribute()
1627 static void patchStmtList(DIE &Die, DIEInteger Offset) { in patchStmtList()
2262 DIEInteger(C)); in emitPaperTrailWarnings()
2264 DIEInteger(0)); in emitPaperTrailWarnings()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDIE.h163 class DIEInteger {
167 explicit DIEInteger(uint64_t I) : Integer(I) {} in DIEInteger() function
351 DIEInteger Addr;
388 AlignedCharArrayUnion<DIEInteger, DIEString, DIEExpr, DIELabel,
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerCompileUnit.h39 *I = DIEValue(Old.getAttribute(), Old.getForm(), DIEInteger(New)); in set()