Searched refs:BDVState (Results 1 – 1 of 1) sorted by relevance
600 class BDVState { class604 BDVState(Status s, Value *b = nullptr) : status(s), base(b) { in BDVState() function in __anon336f80a60411::BDVState607 explicit BDVState(Value *b) : status(Base), base(b) {} in BDVState() function in __anon336f80a60411::BDVState608 BDVState() : status(Unknown), base(nullptr) {} in BDVState() function in __anon336f80a60411::BDVState617 bool operator==(const BDVState &other) const { in operator ==()621 bool operator!=(const BDVState &other) const { return !(*this == other); } in operator !=()649 static raw_ostream &operator<<(raw_ostream &OS, const BDVState &State) { in operator <<()666 void meetWith(BDVState otherState) { in meetWith()670 BDVState getResult() const { return currentResult; } in getResult()673 BDVState currentResult;[all …]