Lines Matching refs:DbgEntity
65 class DbgEntity {
79 DbgEntity(const DINode *N, const DILocation *IA, DbgEntityKind ID) in DbgEntity() function
81 virtual ~DbgEntity() = default;
93 static bool classof(const DbgEntity *N) { in classof()
115 class DbgVariable : public DbgEntity {
137 : DbgEntity(V, IA, DbgVariableKind) {} in DbgVariable()
223 static bool classof(const DbgEntity *N) { in classof()
232 class DbgLabel : public DbgEntity {
238 : DbgEntity(L, IA, DbgLabelKind), Sym(Sym) {} in DbgEntity() function
253 static bool classof(const DbgEntity *N) { in classof()
311 SmallVector<std::unique_ptr<DbgEntity>, 64> ConcreteEntities;
464 DbgEntity *createConcreteEntity(DwarfCompileUnit &TheCU,