Home | History | Annotate | Download | only in IR

Lines Matching refs:ZExt

296   case Instruction::ZExt: {
513 // zext(undef) = 0, because the top bits will be zero.
516 if (opc == Instruction::ZExt || opc == Instruction::SExt ||
659 case Instruction::ZExt:
663 CI->getValue().zext(BitWidth));
971 // (zext i32 to i64) & 4294967295 -> (zext i32 to i64)
972 if (CE1->getOpcode() == Instruction::ZExt) {
1026 // ashr (zext C to Ty), C2 -> lshr (zext C, CSA), C2
1028 if (CE1->getOpcode() == Instruction::ZExt) // Top bits known zero.
1438 case Instruction::ZExt:
1444 if (CE1->getOpcode() == Instruction::ZExt) isSigned = false;
1855 (CE1->getOpcode() == Instruction::ZExt && !ICmpInst::isSigned(pred))){