reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
   63     if (LHSResult.getValue() != RHSResult.getValue()) {
   63     if (LHSResult.getValue() != RHSResult.getValue()) {
   65                         << format("0x%" PRIx64, LHSResult.getValue())
   66                         << " != " << format("0x%" PRIx64, RHSResult.getValue())
  191       return EvalResult(LHSResult.getValue() + RHSResult.getValue());
  191       return EvalResult(LHSResult.getValue() + RHSResult.getValue());
  193       return EvalResult(LHSResult.getValue() - RHSResult.getValue());
  193       return EvalResult(LHSResult.getValue() - RHSResult.getValue());
  195       return EvalResult(LHSResult.getValue() & RHSResult.getValue());
  195       return EvalResult(LHSResult.getValue() & RHSResult.getValue());
  197       return EvalResult(LHSResult.getValue() | RHSResult.getValue());
  197       return EvalResult(LHSResult.getValue() | RHSResult.getValue());
  199       return EvalResult(LHSResult.getValue() << RHSResult.getValue());
  199       return EvalResult(LHSResult.getValue() << RHSResult.getValue());
  201       return EvalResult(LHSResult.getValue() >> RHSResult.getValue());
  201       return EvalResult(LHSResult.getValue() >> RHSResult.getValue());
  256     unsigned OpIdx = OpIdxExpr.getValue();
  511     uint64_t ReadSize = ReadSizeExpr.getValue();
  527     uint64_t LoadAddr = LoadAddrExprResult.getValue();
  616     unsigned HighBit = HighBitExpr.getValue();
  617     unsigned LowBit = LowBitExpr.getValue();
  619     uint64_t SlicedValue = (SubExprResult.getValue() >> LowBit) & Mask;