Lines Matching defs:ThreadingPath
383 struct ThreadingPath { struct
385 uint64_t getExitValue() const { return ExitVal; } in getExitValue()
386 void setExitValue(const ConstantInt *V) { in setExitValue()
390 bool isExitValueSet() const { return IsExitValSet; } in isExitValueSet()
393 const BasicBlock *getDeterminatorBB() const { return DBB; } in getDeterminatorBB()
394 void setDeterminator(const BasicBlock *BB) { DBB = BB; } in setDeterminator()
397 const PathType &getPath() const { return Path; } in getPath()
398 void setPath(const PathType &NewPath) { Path = NewPath; } in setPath()
400 void print(raw_ostream &OS) const { in print()
405 PathType Path;
406 uint64_t ExitVal;
407 const BasicBlock *DBB = nullptr;
408 bool IsExitValSet = false;