Lines Matching defs:getValue
84 I.getValue().~APSInt();
90 APSIntPtr BasicValueFactory::getValue(const llvm::APSInt &X) {
105 return APSIntPtr::unsafeConstructor(&P->getValue());
108 APSIntPtr BasicValueFactory::getValue(const llvm::APInt &X, bool isUnsigned) {
110 return getValue(V);
113 APSIntPtr BasicValueFactory::getValue(uint64_t X, unsigned BitWidth,
117 return getValue(V);
120 APSIntPtr BasicValueFactory::getValue(uint64_t X, QualType T) {
121 return getValue(getAPSIntType(T).getValue(X));
253 return getValue(V1 * V2);
258 return getValue(V1 / V2);
263 return getValue(V1 % V2);
266 return getValue(V1 + V2);
269 return getValue(V1 - V2);
283 return getValue(V1.operator<<((unsigned)Amt));
298 return getValue(V1.operator>>((unsigned)Amt));
322 return getValue(V1 & V2);
325 return getValue(V1 | V2);
328 return getValue(V1 ^ V2);
353 return P->getValue();
377 return P->getValue();