Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Input

76     // Now that we know that the input value is a vector of integers, just shift
96 // If this is a scalar -> vector cast, convert the input into a <1 x scalar>
138 // Okay, we know the destination is integer, if the input is FP, convert
152 // Now we know that the input and output vectors are both integer vectors
154 // conversion here, which depends on whether the input or output has
913 // If the input is a inttoptr, eliminate the pair. This requires knowing
917 Constant *Input = CE->getOperand(0);
918 unsigned InWidth = Input->getType()->getScalarSizeInBits();
923 Input = ConstantExpr::getAnd(Input, Mask);
926 return ConstantExpr::getIntegerCast(Input, DestTy, false);
931 // If the input is a ptrtoint, turn the pair into a ptr to ptr bitcast if