Home | History | Annotate | Download | only in Mips

Lines Matching defs:CI

119   bool emitCmp(unsigned DestReg, const CmpInst *CI);
299 const ConstantInt *CI = cast<ConstantInt>(C);
300 return materialize32BitInt(CI->getZExtValue(), RC);
446 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
448 TmpOffset += CI->getSExtValue() * S;
453 ConstantInt *CI =
455 TmpOffset += CI->getSExtValue() * S;
581 bool MipsFastISel::emitCmp(unsigned ResultReg, const CmpInst *CI) {
582 const Value *Left = CI->getOperand(0), *Right = CI->getOperand(1);
583 bool IsUnsigned = CI->isUnsigned();
590 CmpInst::Predicate P = CI->getPredicate();
912 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
914 if (!emitCmp(CondReg, CI))
926 const CmpInst *CI = cast<CmpInst>(I);
928 if (!emitCmp(ResultReg, CI))