Home
last modified time | relevance | path

Searched refs:InstantiatedValue (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Analysis/
DAliasAnalysisSummary.h147 struct InstantiatedValue { struct
151 Optional<InstantiatedValue> instantiateInterfaceValue(InterfaceValue, CallSite); argument
156 InstantiatedValue From, To;
164 InstantiatedValue IValue;
171 template <> struct DenseMapInfo<cflaa::InstantiatedValue> {
172 static inline cflaa::InstantiatedValue getEmptyKey() {
173 return cflaa::InstantiatedValue{DenseMapInfo<Value *>::getEmptyKey(),
176 static inline cflaa::InstantiatedValue getTombstoneKey() {
177 return cflaa::InstantiatedValue{DenseMapInfo<Value *>::getTombstoneKey(),
180 static unsigned getHashValue(const cflaa::InstantiatedValue &IV) {
[all …]
DCFLSteensAliasAnalysis.cpp70 StratifiedSets<InstantiatedValue> Sets;
75 StratifiedSets<InstantiatedValue> S);
77 const StratifiedSets<InstantiatedValue> &getStratifiedSets() const { in getStratifiedSets()
130 StratifiedSets<InstantiatedValue> S) in FunctionInfo()
179 auto RetInfo = Sets.find(InstantiatedValue{RetVal, 0}); in FunctionInfo()
188 auto ParamInfo = Sets.find(InstantiatedValue{&Param, 0}); in FunctionInfo()
199 StratifiedSetsBuilder<InstantiatedValue> SetBuilder; in buildSetsFrom()
210 SetBuilder.add(InstantiatedValue{Val, 0}); in buildSetsFrom()
211 SetBuilder.noteAttributes(InstantiatedValue{Val, 0}, in buildSetsFrom()
214 SetBuilder.add(InstantiatedValue{Val, I + 1}); in buildSetsFrom()
[all …]
DCFLGraph.h39 typedef InstantiatedValue Node;
182 if (Graph.addNode(InstantiatedValue{GVal, 0},
184 Graph.addNode(InstantiatedValue{GVal, 1}, getAttrUnknown());
187 if (Graph.addNode(InstantiatedValue{CExpr, 0}))
191 Graph.addNode(InstantiatedValue{Val, 0}, Attr);
201 Graph.addEdge(InstantiatedValue{From, 0}, InstantiatedValue{To, 0},
212 Graph.addNode(InstantiatedValue{From, 1}); in addDerefEdge()
213 Graph.addEdge(InstantiatedValue{From, 1}, InstantiatedValue{To, 0}); in addDerefEdge()
398 Graph.addAttr(InstantiatedValue{V, 0}, getAttrEscaped()); in visitCallSite()
402 Graph.addNode(InstantiatedValue{V, 1}, getAttrUnknown()); in visitCallSite()
[all …]
DAliasAnalysisSummary.cpp77 Optional<InstantiatedValue> instantiateInterfaceValue(InterfaceValue IValue, in instantiateInterfaceValue()
82 return InstantiatedValue{Value, IValue.DerefLevel}; in instantiateInterfaceValue()