Home | History | Annotate | Download | only in AsmPrinter

Lines Matching refs:Unsigned

40   unsigned UniqueID;
44 unsigned Language;
81 StringMap<std::vector<std::pair<DIE*, unsigned> > > AccelTypes;
92 unsigned DebugInfoOffset;
99 CompileUnit(unsigned UID, unsigned L, DIE *D, const MDNode *N, AsmPrinter *A,
104 unsigned getUniqueID() const { return UniqueID; }
105 unsigned getLanguage() const { return Language; }
107 unsigned getDebugInfoOffset() const { return DebugInfoOffset; }
120 const StringMap<std::vector<std::pair<DIE*, unsigned > > >
125 void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; }
152 void addAccelType(StringRef Name, std::pair<DIE *, unsigned> Die) {
153 std::vector<std::pair<DIE *, unsigned> > &DIEs = AccelTypes[Name];
199 void addFlag(DIE *Die, unsigned Attribute);
201 /// addUInt - Add an unsigned integer attribute data and value.
203 void addUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer);
207 void addSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer);
211 void addString(DIE *Die, unsigned Attribute, const StringRef Str);
215 void addLocalString(DIE *Die, unsigned Attribute, const StringRef Str);
219 void addExpr(DIE *Die, unsigned Attribute, unsigned Form,
224 void addLabel(DIE *Die, unsigned Attribute, unsigned Form,
230 void addLabelAddress(DIE *Die, unsigned Attribute, MCSymbol *Label);
240 void addDelta(DIE *Die, unsigned Attribute, unsigned Form,
245 void addDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry);
249 void addBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block);
262 void addAddress(DIE *Die, unsigned Attribute,
267 void addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned);
268 void addConstantValue(DIE *Die, const APInt &Val, bool Unsigned);
278 void addRegisterOp(DIE *TheDie, unsigned Reg);
281 void addRegisterOffset(DIE *TheDie, unsigned Reg, int64_t Offset);
288 void addComplexAddress(const DbgVariable &DV, DIE *Die, unsigned Attribute,
298 void addBlockByrefAddress(const DbgVariable &DV, DIE *Die, unsigned Attribute,
312 void addType(DIE *Entity, DIType Ty, unsigned Attribute = dwarf::DW_AT_type);