Searched refs:DIEInteger (Results 1 – 9 of 9) sorted by relevance
/external/llvm/unittests/CodeGen/ |
D | DIEHashTest.cpp | 24 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/ |
D | DwarfLinker.cpp | 108 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/ |
D | DIEHash.cpp | 281 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()
|
D | DIE.cpp | 208 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()
|
D | DwarfUnit.cpp | 74 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()
|
D | AsmPrinterDwarf.cpp | 270 cast<DIEInteger>(Values[i])->getValue())); in emitDwarfDIE()
|
D | DwarfUnit.h | 115 DIEInteger *DIEIntegerOne;
|
D | DwarfCompileUnit.cpp | 44 DIEValue *Value = new (DIEValueAllocator) DIEInteger(idx); in addLabelAddress() 56 : new (DIEValueAllocator) DIEInteger(0)); in addLocalLabelAddress()
|
/external/llvm/include/llvm/CodeGen/ |
D | DIE.h | 248 class DIEInteger : public DIEValue { 252 explicit DIEInteger(uint64_t I) : DIEValue(isInteger), Integer(I) {} in DIEInteger() function
|