Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Transforms/IPO/
DAttributor.h175 struct ValueAndContext : public std::pair<Value *, const Instruction *> { struct
177 ValueAndContext(const Base &B) : Base(B) {} in ValueAndContext() function
178 ValueAndContext(Value &V, const Instruction *CtxI) : Base(&V, CtxI) {} in ValueAndContext() function
179 ValueAndContext(Value &V, const Instruction &CtxI) : Base(&V, &CtxI) {} in ValueAndContext() function
181 Value *getValue() const { return this->first; } in getValue()
205 bool isValidAtPosition(const ValueAndContext &VAC, InformationCache &InfoCache); argument