Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h186 struct ValueAndContext : public std::pair<Value *, const Instruction *> { struct
188 ValueAndContext(const Base &B) : Base(B) {} in ValueAndContext() function
189 ValueAndContext(Value &V, const Instruction *CtxI) : Base(&V, CtxI) {} in ValueAndContext() function
190 ValueAndContext(Value &V, const Instruction &CtxI) : Base(&V, &CtxI) {} in ValueAndContext() argument
192 Value *getValue() const { return this->first; } in getValue()
216 bool isValidAtPosition(const ValueAndContext &VAC, InformationCache &InfoCache); argument