Home
last modified time | relevance | path

Searched refs:Value2VPValue (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlan.h2194 Value2VPValueTy Value2VPValue; variable
2290 assert(!Value2VPValue.count(V) && "Value already exists in VPlan"); in addVPValue()
2292 Value2VPValue[V] = VPV; in addVPValue()
2299 assert(!Value2VPValue.count(V) && "Value already exists in VPlan"); in addVPValue()
2300 Value2VPValue[V] = VPV; in addVPValue()
2309 assert(Value2VPValue.count(V) && "Value does not exist in VPlan");
2310 return Value2VPValue[V];
2320 if (!Value2VPValue.count(V))
2328 Value2VPValue.erase(V); in removeVPValueFor()
H A DVPlan.cpp664 for (auto &Entry : Value2VPValue) in execute()