Searched defs:ValueAndContext (Results 1 – 1 of 1) sorted by relevance
186 struct ValueAndContext : public std::pair<Value *, const Instruction *> { struct188 ValueAndContext(const Base &B) : Base(B) {} in ValueAndContext() function189 ValueAndContext(Value &V, const Instruction *CtxI) : Base(&V, CtxI) {} in ValueAndContext() function190 ValueAndContext(Value &V, const Instruction &CtxI) : Base(&V, &CtxI) {} in ValueAndContext() argument192 Value *getValue() const { return this->first; } in getValue()216 bool isValidAtPosition(const ValueAndContext &VAC, InformationCache &InfoCache); argument