Home
last modified time | relevance | path

Searched defs:ThreadingPath (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDFAJumpThreading.cpp383 struct ThreadingPath { struct
385 APInt 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()
399 void push_back(BasicBlock *BB) { Path.push_back(BB); } in push_back()
400 void push_front(BasicBlock *BB) { Path.push_front(BB); } in push_front()
[all …]