Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp364 void DIEInteger::emitValue(const AsmPrinter *Asm, dwarf::Form Form) const { in emitValue()
421 unsigned DIEInteger::sizeOf(const dwarf::FormParams &FormParams, in sizeOf()
443 void DIEInteger::print(raw_ostream &O) const { in print()
575 DIEInteger(S.getIndex()).emitValue(AP, Form); in emitValue()
581 DIEInteger(S.getOffset()).emitValue(AP, Form); in emitValue()
600 return DIEInteger(S.getIndex()).sizeOf(FormParams, Form); in sizeOf()
604 return DIEInteger(S.getOffset()).sizeOf(FormParams, Form); in sizeOf()
H A DDwarfUnit.cpp216 addAttribute(Die, Attribute, dwarf::DW_FORM_flag_present, DIEInteger(1)); in addFlag()
218 addAttribute(Die, Attribute, dwarf::DW_FORM_flag, DIEInteger(1)); in addFlag()
224 Form = DIEInteger::BestForm(false, Integer); in addUInt()
227 addAttribute(Die, Attribute, *Form, DIEInteger(Integer)); in addUInt()
238 Form = DIEInteger::BestForm(true, Integer); in addSInt()
239 addAttribute(Die, Attribute, *Form, DIEInteger(Integer)); in addSInt()
365 DIEInteger(Signature)); in addDIETypeSignature()
H A DAccelTable.cpp556 DIEInteger ID(EntryRet->Index); in emitEntry()
684 DIEInteger::BestForm(/*IsSigned*/ false, CompUnits.size() - 1); in emitDWARF5AccelTable()
686 DIEInteger::BestForm(/*IsSigned*/ false, TypeUnits.size() - 1); in emitDWARF5AccelTable()
H A DDwarfCompileUnit.cpp104 DIEInteger(idx)); in addLabelAddress()
129 addAttribute(Die, Attribute, dwarf::DW_FORM_addr, DIEInteger(0)); in addLocalLabelAddress()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp
H A DDWARFStreamer.cpp
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp1068 dwarf::DW_FORM_strx, DIEInteger(StringOffsetIndex)) in cloneStringAttribute()
1075 DIEInteger(StringEntry.getOffset())); in cloneStringAttribute()
1110 DIEInteger Attr(RefInfo.Ctxt->getCanonicalDIEOffset()); in cloneDieReferenceAttribute()
1138 dwarf::DW_FORM_ref_addr, DIEInteger(Attr)); in cloneDieReferenceAttribute()
1145 dwarf::DW_FORM_ref_addr, DIEInteger(Attr))); in cloneDieReferenceAttribute()
1314 dwarf::DW_FORM_data1, DIEInteger(Byte)); in cloneBlockAttribute()
1353 dwarf::Form(AttrSpec.Form), DIEInteger(Val.getRawUValue())); in cloneAddressAttribute()
1397 AttrSpec.Form, DIEInteger(*Addr)); in cloneAddressAttribute()
1405 dwarf::Form::DW_FORM_addrx, DIEInteger(AddrIndex)) in cloneAddressAttribute()
1440 dwarf::DW_FORM_sec_offset, DIEInteger(8)) in cloneScalarAttribute()
[all …]
H A DDWARFStreamer.cpp365 dwarf::Form Form = DIEInteger::BestForm(/*IsSigned*/ false, in emitDebugNames()
1320 V = DIEValue(V.getAttribute(), V.getForm(), DIEInteger(OutOffset)); in emitMacroTableImpl()
1324 V = DIEValue(V.getAttribute(), V.getForm(), DIEInteger(OutOffset)); in emitMacroTableImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDIE.h168 class DIEInteger {
172 explicit DIEInteger(uint64_t I) : Integer(I) {} in DIEInteger() function
356 DIEInteger Addr;
393 AlignedCharArrayUnion<DIEInteger, DIEString, DIEExpr, DIELabel,
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerCompileUnit.h
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFEmitterImpl.cpp170 DIEInteger::BestForm(/*IsSigned*/ false, (uint64_t)CUidToIdx.size() - 1); in emitDebugNames()
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinkerCompileUnit.h49 *I = DIEValue(Old.getAttribute(), Old.getForm(), DIEInteger(New)); in set()