Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Result

192     MemDepResult Result;
194 NonLocalDepEntry(BasicBlock *bb, MemDepResult result)
195 : BB(bb), Result(result) {}
203 void setResult(const MemDepResult &R) { Result = R; }
205 const MemDepResult &getResult() const { return Result; }
212 /// NonLocalDepResult - This is a result from a NonLocal dependence query.
219 NonLocalDepResult(BasicBlock *bb, MemDepResult result, Value *address)
220 : Entry(bb, result), Address(address) {}
233 /// be different than the address queried for the non-local result because
236 /// result and that address was deleted.
294 /// pointer+isload bit, the value is a list of <bb->result> mappings.
353 /// "NonLocal" result for all blocks where the value is live across.
372 SmallVectorImpl<NonLocalDepResult> &Result);
396 /// the metadata annotated to the query instruction to refine the result.
427 SmallVectorImpl<NonLocalDepResult> &Result,