Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/CodeGen/
H A DDIEHashTest.cpp58 DIEInteger Size(4); in TEST_F()
67 DIEInteger One(1); in TEST_F()
82 DIEInteger One(1); in TEST_F()
98 DIEInteger One(1); in TEST_F()
124 DIEInteger Four(4); in TEST_F()
131 DIEInteger Five(5); in TEST_F()
139 DIEInteger Zero(0); in TEST_F()
157 DIEInteger Four(4); in TEST_F()
162 DIEInteger Five(5); in TEST_F()
170 DIEInteger Zero(0); in TEST_F()
[all …]
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp370 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 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.cpp411 dwarf::Form Form = DIEInteger::BestForm(/*IsSigned*/ false, LargestCUIndex); in getUniformAttributes()
480 DIEInteger ID(getCUIndexForEntry(Entry)); in emitEntry()
H A DDwarfCompileUnit.cpp88 DIEInteger(idx)); in addLabelAddress()
113 addAttribute(Die, Attribute, dwarf::DW_FORM_addr, DIEInteger(0)); in addLocalLabelAddress()
/llvm-project-15.0.7/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp900 DIEInteger(StringEntry.getOffset())); in cloneStringAttribute()
930 DIEInteger Attr(RefInfo.Ctxt->getCanonicalDIEOffset()); in cloneDieReferenceAttribute()
958 dwarf::DW_FORM_ref_addr, DIEInteger(Attr)); in cloneDieReferenceAttribute()
1082 dwarf::DW_FORM_data1, DIEInteger(Byte)); in cloneBlockAttribute()
1169 static_cast<dwarf::Form>(Form), DIEInteger(Addr)); in cloneAddressAttribute()
1195 dwarf::Form(AttrSpec.Form), DIEInteger(Value)); in cloneScalarAttribute()
1219 dwarf::Form(AttrSpec.Form), DIEInteger(Value)); in cloneScalarAttribute()
1667 static void patchStmtList(DIE &Die, DIEInteger Offset) { in patchStmtList()
2292 DIEInteger(C)); in emitPaperTrailWarnings()
2294 DIEInteger(0)); in emitPaperTrailWarnings()
[all …]
/llvm-project-15.0.7/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,
/llvm-project-15.0.7/llvm/unittests/DebugInfo/DWARF/
H A DDwarfGenerator.cpp57 DIEInteger(U)); in addAttribute()
112 DIEInteger( in addAttribute()
124 DIEInteger(1)); in addAttribute()
/llvm-project-15.0.7/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerCompileUnit.h36 *I = DIEValue(Old.getAttribute(), Old.getForm(), DIEInteger(New)); in set()