Searched defs:ValueAndContext (Results 1 – 1 of 1) sorted by relevance
188 struct ValueAndContext : public std::pair<Value *, const Instruction *> { struct190 ValueAndContext(const Base &B) : Base(B) {} in ValueAndContext() function191 ValueAndContext(Value &V, const Instruction *CtxI) : Base(&V, CtxI) {} in ValueAndContext() argument192 ValueAndContext(Value &V, const Instruction &CtxI) : Base(&V, &CtxI) {} in ValueAndContext() function194 Value *getValue() const { return this->first; } in getValue()195 const Instruction *getCtxI() const { return this->second; } in getCtxI()