Searched refs:DIEInteger (Results 1 – 8 of 8) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DIE.cpp | 370 void DIEInteger::emitValue(const AsmPrinter *Asm, dwarf::Form Form) const { in emitValue() 426 unsigned DIEInteger::sizeOf(const dwarf::FormParams &FormParams, in sizeOf() 448 void DIEInteger::print(raw_ostream &O) const { in print() 580 DIEInteger(S.getIndex()).emitValue(AP, Form); in emitValue() 586 DIEInteger(S.getOffset()).emitValue(AP, Form); in emitValue() 605 return DIEInteger(S.getIndex()).sizeOf(FormParams, Form); in sizeOf() 609 return DIEInteger(S.getOffset()).sizeOf(FormParams, Form); in sizeOf()
|
| H A D | DwarfUnit.cpp | 215 addAttribute(Die, Attribute, dwarf::DW_FORM_flag_present, DIEInteger(1)); in addFlag() 217 addAttribute(Die, Attribute, dwarf::DW_FORM_flag, DIEInteger(1)); in addFlag() 223 Form = DIEInteger::BestForm(false, Integer); in addUInt() 226 addAttribute(Die, Attribute, *Form, DIEInteger(Integer)); in addUInt() 237 Form = DIEInteger::BestForm(true, Integer); in addSInt() 238 addAttribute(Die, Attribute, *Form, DIEInteger(Integer)); in addSInt() 364 DIEInteger(Signature)); in addDIETypeSignature()
|
| H A D | AccelTable.cpp | 411 dwarf::Form Form = DIEInteger::BestForm(/*IsSigned*/ false, LargestCUIndex); in getUniformAttributes() 480 DIEInteger ID(getCUIndexForEntry(Entry)); in emitEntry()
|
| H A D | DwarfCompileUnit.cpp | 88 DIEInteger(idx)); in addLabelAddress() 113 addAttribute(Die, Attribute, dwarf::DW_FORM_addr, DIEInteger(0)); in addLocalLabelAddress()
|
| /openbsd-src/gnu/llvm/llvm/lib/DWARFLinker/ |
| H A D | DWARFLinker.cpp | 957 DIEInteger(StringEntry.getOffset())); in cloneStringAttribute() 987 DIEInteger Attr(RefInfo.Ctxt->getCanonicalDIEOffset()); in cloneDieReferenceAttribute() 1015 dwarf::DW_FORM_ref_addr, DIEInteger(Attr)); in cloneDieReferenceAttribute() 1022 dwarf::DW_FORM_ref_addr, DIEInteger(Attr))); in cloneDieReferenceAttribute() 1139 dwarf::DW_FORM_data1, DIEInteger(Byte)); in cloneBlockAttribute() 1160 dwarf::Form(AttrSpec.Form), DIEInteger(Val.getRawUValue())); in cloneAddressAttribute() 1230 static_cast<dwarf::Form>(Form), DIEInteger(Addr)); in cloneAddressAttribute() 1274 dwarf::Form(AttrSpec.Form), DIEInteger(Value)); in cloneScalarAttribute() 1299 dwarf::Form(AttrSpec.Form), DIEInteger(Value)); in cloneScalarAttribute() 1755 static void patchStmtList(DIE &Die, DIEInteger Offset) { in patchStmtList() [all …]
|
| H A D | DWARFStreamer.cpp | 832 V = DIEValue(V.getAttribute(), V.getForm(), DIEInteger(OutOffset)); in emitMacroTableImpl() 836 V = DIEValue(V.getAttribute(), V.getForm(), DIEInteger(OutOffset)); in emitMacroTableImpl()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | DIE.h | 163 class DIEInteger { 167 explicit DIEInteger(uint64_t I) : Integer(I) {} in DIEInteger() function 351 DIEInteger Addr; 388 AlignedCharArrayUnion<DIEInteger, DIEString, DIEExpr, DIELabel,
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DWARFLinker/ |
| H A D | DWARFLinkerCompileUnit.h | 37 *I = DIEValue(Old.getAttribute(), Old.getForm(), DIEInteger(New)); in set()
|