Lines Matching defs:Input
79 // Now that we know that the input value is a vector of integers, just shift
99 // If this is a scalar -> vector cast, convert the input into a <1 x scalar>
141 // Okay, we know the destination is integer, if the input is FP, convert
155 // Now we know that the input and output vectors are both integer vectors
157 // conversion here, which depends on whether the input or output has
950 // If the input is a inttoptr, eliminate the pair. This requires knowing
954 Constant *Input = CE->getOperand(0);
955 unsigned InWidth = Input->getType()->getScalarSizeInBits();
960 Input = ConstantExpr::getAnd(Input, Mask);
963 return ConstantExpr::getIntegerCast(Input, DestTy, false);
968 // If the input is a ptrtoint, turn the pair into a ptr to ptr bitcast if