Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Input

84     // Now that we know that the input value is a vector of integers, just shift
104 // If this is a scalar -> vector cast, convert the input into a <1 x scalar>
146 // Okay, we know the destination is integer, if the input is FP, convert
160 // Now we know that the input and output vectors are both integer vectors
162 // conversion here, which depends on whether the input or output has
1033 // If the input is a inttoptr, eliminate the pair. This requires knowing
1037 Constant *Input = CE->getOperand(0);
1038 unsigned InWidth = Input->getType()->getScalarSizeInBits();
1044 Input = ConstantExpr::getAnd(Input, Mask);
1047 return ConstantExpr::getIntegerCast(Input, DestTy, false);
1052 // If the input is a ptrtoint, turn the pair into a ptr to ptr bitcast if