Home
last modified time | relevance | path

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

/external/llvm/unittests/CodeGen/
DDIEHashTest.cpp24 DIEInteger Size(4); in TEST()
33 DIEInteger One(1); in TEST()
48 DIEInteger One(1); in TEST()
64 DIEInteger One(1); in TEST()
89 DIEInteger Four(4); in TEST()
96 DIEInteger Five(5); in TEST()
104 DIEInteger Zero(0); in TEST()
119 DIEInteger Eight(8); in TEST()
122 DIEInteger Four(4); in TEST()
127 DIEInteger Five(5); in TEST()
[all …]
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp108 DIEInteger *getUnitRangesAttribute() const { return UnitRangeAttribute; } in getUnitRangesAttribute()
110 const std::vector<DIEInteger *> &getRangesAttributes() const { in getRangesAttributes()
114 const std::vector<std::pair<DIEInteger *, int64_t>> &
129 DIEInteger *Attr);
140 void noteRangeAttribute(const DIE &Die, DIEInteger *Attr);
144 void noteLocationAttribute(DIEInteger *Attr, int64_t PcOffset);
188 std::vector<std::tuple<DIE *, const CompileUnit *, DIEInteger *>>
200 std::vector<DIEInteger *> RangeAttributes;
201 DIEInteger *UnitRangeAttribute;
208 std::vector<std::pair<DIEInteger *, int64_t>> LocationAttributes;
[all …]
/external/llvm/lib/CodeGen/AsmPrinter/
DDIEHash.cpp281 Hash.update((uint64_t)cast<DIEInteger>(*I)->getValue()); in hashBlockData()
325 addSLEB128((int64_t)cast<DIEInteger>(Value)->getValue()); in hashAttribute()
332 addULEB128((int64_t)cast<DIEInteger>(Value)->getValue()); in hashAttribute()
DDIE.cpp208 void DIEInteger::EmitValue(const AsmPrinter *Asm, dwarf::Form Form) const { in EmitValue()
244 unsigned DIEInteger::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const { in SizeOf()
273 void DIEInteger::print(raw_ostream &O) const { in print()
DDwarfUnit.cpp74 DIEIntegerOne = new (DIEValueAllocator) DIEInteger(1); in DwarfUnit()
217 Form = DIEInteger::BestForm(false, Integer); in addUInt()
219 DIEInteger(Integer); in addUInt()
232 Form = DIEInteger::BestForm(true, Integer); in addSInt()
233 DIEValue *Value = new (DIEValueAllocator) DIEInteger(Integer); in addSInt()
258 DIEValue *Value = new (DIEValueAllocator) DIEInteger(idx); in addIndexedString()
DAsmPrinterDwarf.cpp270 cast<DIEInteger>(Values[i])->getValue())); in emitDwarfDIE()
DDwarfUnit.h115 DIEInteger *DIEIntegerOne;
DDwarfCompileUnit.cpp44 DIEValue *Value = new (DIEValueAllocator) DIEInteger(idx); in addLabelAddress()
56 : new (DIEValueAllocator) DIEInteger(0)); in addLocalLabelAddress()
/external/llvm/include/llvm/CodeGen/
DDIE.h248 class DIEInteger : public DIEValue {
252 explicit DIEInteger(uint64_t I) : DIEValue(isInteger), Integer(I) {} in DIEInteger() function