Searched refs:DIELabel (Results 1 – 12 of 12) sorted by relevance
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DIE.cpp | 342 void DIELabel::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const { in EmitValue() 351 unsigned DIELabel::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const { in SizeOf() 359 void DIELabel::print(raw_ostream &O) const { O << "Lbl: " << Label->getName(); } in print() 405 DIELabel(S.getSymbol()).EmitValue(AP, Form); in EmitValue() 426 return DIELabel(S.getSymbol()).SizeOf(AP, Form); in SizeOf()
|
D | DwarfCompileUnit.cpp | 58 DIELabel(Label)); in addLocalLabelAddress()
|
D | DwarfUnit.cpp | 228 return Die.addValue(DIEValueAllocator, Attribute, Form, DIELabel(Label)); in addLabel()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
D | DIE.h | 308 class DIELabel : public DIEValue { 311 explicit DIELabel(const MCSymbol *L) : DIEValue(isLabel), Label(L) {} in DIELabel() function 326 static bool classof(const DIELabel *) { return true; } in classof() argument
|
D | DIE.cpp | 262 void DIELabel::EmitValue(AsmPrinter *AP, unsigned Form) const { in EmitValue() 268 unsigned DIELabel::SizeOf(AsmPrinter *AP, unsigned Form) const { in SizeOf() 274 void DIELabel::print(raw_ostream &O) { in print()
|
D | DwarfDebug.cpp | 1555 if (DIELabel *L = dyn_cast<DIELabel>(Values[i])) in emitDIE()
|
D | DwarfCompileUnit.cpp | 82 DIEValue *Value = new (DIEValueAllocator) DIELabel(Label); in addLabel()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DIE.cpp | 485 void DIELabel::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const { in EmitValue() 495 unsigned DIELabel::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const { in SizeOf() 503 void DIELabel::print(raw_ostream &O) const { O << "Lbl: " << Label->getName(); } in print() 548 DIELabel(S.getSymbol()).EmitValue(AP, Form); in EmitValue() 571 return DIELabel(S.getSymbol()).SizeOf(AP, Form); in SizeOf()
|
D | DwarfCompileUnit.cpp | 91 DIELabel(Label)); in addLocalLabelAddress()
|
D | DwarfUnit.cpp | 265 return Die.addValue(DIEValueAllocator, Attribute, Form, DIELabel(Label)); in addLabel()
|
/external/llvm/include/llvm/CodeGen/ |
D | DIE.h | 168 class DIELabel { 172 explicit DIELabel(const MCSymbol *L) : Label(L) {} in DIELabel() function 290 typedef AlignedCharArrayUnion<DIEInteger, DIEString, DIEExpr, DIELabel,
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | DIE.h | 218 class DIELabel { 222 explicit DIELabel(const MCSymbol *L) : Label(L) {} in DIELabel() function 351 using ValTy = AlignedCharArrayUnion<DIEInteger, DIEString, DIEExpr, DIELabel,
|