Lines Matching refs:getValue
62 if (LHSResult.getValue() != RHSResult.getValue()) { in evaluate()
64 << format("0x%" PRIx64, LHSResult.getValue()) in evaluate()
65 << " != " << format("0x%" PRIx64, RHSResult.getValue()) in evaluate()
101 uint64_t getValue() const { return Value; } in getValue() function in llvm::RuntimeDyldCheckerExprEval::EvalResult
189 return EvalResult(LHSResult.getValue() + RHSResult.getValue()); in computeBinOpResult()
191 return EvalResult(LHSResult.getValue() - RHSResult.getValue()); in computeBinOpResult()
193 return EvalResult(LHSResult.getValue() & RHSResult.getValue()); in computeBinOpResult()
195 return EvalResult(LHSResult.getValue() | RHSResult.getValue()); in computeBinOpResult()
197 return EvalResult(LHSResult.getValue() << RHSResult.getValue()); in computeBinOpResult()
199 return EvalResult(LHSResult.getValue() >> RHSResult.getValue()); in computeBinOpResult()
254 unsigned OpIdx = OpIdxExpr.getValue(); in evalDecodeOperand()
515 uint64_t ReadSize = ReadSizeExpr.getValue(); in evalLoadExpr()
531 uint64_t LoadAddr = LoadAddrExprResult.getValue(); in evalLoadExpr()
615 unsigned HighBit = HighBitExpr.getValue(); in evalSliceExpr()
616 unsigned LowBit = LowBitExpr.getValue(); in evalSliceExpr()
618 uint64_t SlicedValue = (SubExprResult.getValue() >> LowBit) & Mask; in evalSliceExpr()