HomeSort by relevance Sort by last modified time
    Searched refs:CmpType (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Fuzzer/
FuzzerTraceState.cpp 114 bool ComputeCmp(size_t CmpType, U Arg1, U Arg2) {
115 switch(CmpType) {
126 default: assert(0 && "unsupported CmpType");
131 static bool ComputeCmp(size_t CmpSize, size_t CmpType, uint64_t Arg1,
133 if (CmpSize == 8) return ComputeCmp<uint64_t, int64_t>(CmpType, Arg1, Arg2);
134 if (CmpSize == 4) return ComputeCmp<uint32_t, int32_t>(CmpType, Arg1, Arg2);
135 if (CmpSize == 2) return ComputeCmp<uint16_t, int16_t>(CmpType, Arg1, Arg2);
136 if (CmpSize == 1) return ComputeCmp<uint8_t, int8_t>(CmpType, Arg1, Arg2);
138 if (CmpType == ICMP_EQ) return Arg1 == Arg2;
182 void DFSanCmpCallback(uintptr_t PC, size_t CmpSize, size_t CmpType,
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 750 Type *CmpType = Cmp->getType();
804 if (isa<Constant>(CmpRHS) && !CmpType->isVectorTy()) {
822 Constant *ResC = ConstantInt::get(CmpType, Res);
860 ResC = ConstantInt::getTrue(CmpType);
862 ResC = ConstantInt::getFalse(CmpType);
    [all...]

Completed in 131 milliseconds