Searched defs:ValueAndContext (Results 1 – 1 of 1) sorted by relevance
175 struct ValueAndContext : public std::pair<Value *, const Instruction *> { struct177 ValueAndContext(const Base &B) : Base(B) {} in ValueAndContext() function178 ValueAndContext(Value &V, const Instruction *CtxI) : Base(&V, CtxI) {} in ValueAndContext() function179 ValueAndContext(Value &V, const Instruction &CtxI) : Base(&V, &CtxI) {} in ValueAndContext() function181 Value *getValue() const { return this->first; } in getValue()205 bool isValidAtPosition(const ValueAndContext &VAC, InformationCache &InfoCache); argument