Home | History | Annotate | Download | only in VMCore

Lines Matching refs:isSigned

1341                                                 bool isSigned) {
1357 pred = isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1361 pred = isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1372 evaluateICmpRelation(V2, V1, isSigned);
1379 evaluateICmpRelation(V2, V1, isSigned);
1405 evaluateICmpRelation(V2, V1, isSigned);
1449 if (CE1->getOpcode() == Instruction::ZExt) isSigned = false;
1450 if (CE1->getOpcode() == Instruction::SExt) isSigned = true;
1453 isSigned);
1467 return isSigned ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE;
1471 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1478 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1488 return isSigned ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE;
1492 return isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1502 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1542 case -1: return isSigned ? ICmpInst::ICMP_SLT:ICmpInst::ICMP_ULT;
1543 case 1: return isSigned ? ICmpInst::ICMP_SGT:ICmpInst::ICMP_UGT;
1552 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1560 return isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1783 switch (evaluateICmpRelation(C1, C2, CmpInst::isSigned(pred))) {
1864 if ((CE1->getOpcode() == Instruction::SExt && ICmpInst::isSigned(pred)) ||
1865 (CE1->getOpcode() == Instruction::ZExt && !ICmpInst::isSigned(pred))){