Searched refs:DbgLabel (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfFile.h | 27 class DbgLabel; variable 87 using LabelList = SmallVector<DbgLabel *, 4>; 155 void addScopeLabel(LexicalScope *LS, DbgLabel *Label);
|
H A D | DwarfFile.cpp | 117 void DwarfFile::addScopeLabel(LexicalScope *LS, DbgLabel *Label) { in addScopeVariable() 118 SmallVectorImpl<DbgLabel *> &Labels = ScopeLabels[LS]; in addScopeVariable()
|
H A D | DwarfCompileUnit.h | 248 DIE *constructLabelDIE(DbgLabel &DL, const LexicalScope &Scope); 377 void applyLabelAttributes(const DbgLabel &Label, DIE &LabelDie);
|
H A D | DwarfCompileUnit.cpp | 976 DIE *DwarfCompileUnit::constructLabelDIE(DbgLabel &DL, in constructLabelDIE() 1134 for (DbgLabel *DL : DU->getScopeLabels().lookup(Scope)) in createAndAddScopeChildren() 1436 const DbgLabel *Label = nullptr; in finishEntityDefinition() 1439 Label = dyn_cast<const DbgLabel>(Entity); in finishEntityDefinition() 1443 else if ((Label = dyn_cast<const DbgLabel>(Entity))) in finishEntityDefinition() 1480 Entity = std::make_unique<DbgLabel>( in createAbstractEntity() 1482 DU->addScopeLabel(Scope, cast<DbgLabel>(Entity.get())); in createAbstractEntity() 1651 void DwarfCompileUnit::applyLabelAttributes(const DbgLabel &Label, in applyLabelAttributes()
|
H A D | DwarfDebug.h | 62 /// This class is defined as the common parent of DbgVariable and DbgLabel 64 /// DbgVariable and DbgLabel. 289 class DbgLabel : public DbgEntity { 294 DbgLabel(const DILabel *L, const DILocation *IA, const MCSymbol *Sym = nullptr)
|
H A D | DwarfDebug.cpp | 1864 std::make_unique<DbgLabel>(cast<const DILabel>(Node), in createConcreteEntity() 1867 cast<DbgLabel>(ConcreteEntities.back().get())); in createConcreteEntity()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DebugProgramInstruction.cpp | 465 DbgLabelInst *DbgLabel = cast<DbgLabelInst>( in createDebugIntrinsic() local 467 DbgLabel->setTailCall(); in createDebugIntrinsic() 468 DbgLabel->setDebugLoc(getDebugLoc()); in createDebugIntrinsic() 470 DbgLabel->insertBefore(InsertBefore); in createDebugIntrinsic() 471 return DbgLabel; in createDebugIntrinsic()
|