Searched defs:LoopState (Results 1 – 1 of 1) sorted by relevance
29 struct LoopState { struct31 enum Kind { Normal, Unrolled } K;32 const Stmt *LoopStmt;33 const LocationContext *LCtx;34 unsigned maxStep;35 LoopState(Kind InK, const Stmt *S, const LocationContext *L, unsigned N) in LoopState() function47 bool isUnrolled() const { return K == Unrolled; } in isUnrolled()48 unsigned getMaxStep() const { return maxStep; } in getMaxStep()49 const Stmt *getLoopStmt() const { return LoopStmt; } in getLoopStmt()51 bool operator==(const LoopState &X) const { in operator ==()[all …]