Home
last modified time | relevance | path

Searched refs:GenericProgramPoint (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/Analysis/
H A DDataFlowFramework.h68 class GenericProgramPoint : public StorageUniquer::BaseStorage {
70 virtual ~GenericProgramPoint();
83 explicit GenericProgramPoint(TypeID typeID) : typeID(typeID) {} in GenericProgramPoint() function
101 class GenericProgramPointBase : public GenericProgramPoint {
113 : GenericProgramPoint(TypeID::get<ConcreteT>()), in GenericProgramPointBase()
135 static bool classof(const GenericProgramPoint *point) { in classof()
153 : public PointerUnion<GenericProgramPoint *, Operation *, Value, Block *> {
155 PointerUnion<GenericProgramPoint *, Operation *, Value, Block *>;
/llvm-project-15.0.7/mlir/lib/Analysis/
H A DDataFlowFramework.cpp25 GenericProgramPoint::~GenericProgramPoint() = default;
42 if (auto *programPoint = dyn_cast<GenericProgramPoint *>()) in print()
52 if (auto *programPoint = dyn_cast<GenericProgramPoint *>()) in getLoc()
/llvm-project-15.0.7/mlir/lib/Analysis/DataFlow/
H A DDeadCodeAnalysis.cpp41 } else if (auto *programPoint = point.dyn_cast<GenericProgramPoint *>()) { in onUpdate()