Home | History | Annotate | Download | only in Analysis

Lines Matching defs:findValue

97     Value *findValue(Value *V, bool OffsetOk) const;
204 if (Function *F = dyn_cast<Function>(findValue(Callee, /*OffsetOk=*/false))) {
261 Value *Obj = findValue(*AI, /*OffsetOk=*/true);
289 dyn_cast<ConstantInt>(findValue(MCI->getLength(),
362 Value *Obj = findValue(V, /*OffsetOk=*/true);
378 Value *UnderlyingObject = findValue(Ptr, /*OffsetOk=*/true);
488 dyn_cast<ConstantInt>(findValue(I.getOperand(1), /*OffsetOk=*/false)))
495 dyn_cast<ConstantInt>(findValue(I.getOperand(1), /*OffsetOk=*/false)))
502 dyn_cast<ConstantInt>(findValue(I.getOperand(1), /*OffsetOk=*/false)))
589 dyn_cast<ConstantInt>(findValue(I.getIndexOperand(),
597 dyn_cast<ConstantInt>(findValue(I.getOperand(2),
611 /// findValue - Look through bitcasts and simple memory reference patterns
618 Value *Lint::findValue(Value *V, bool OffsetOk) const {
623 /// findValueImpl - Implementation helper for findValue.