Lines Matching refs:IsFP
1178 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedUnaryOpcode() local
1180 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedUnaryOpcode()
1187 return IsFP ? Instruction::FNeg : -1; in getDecodedUnaryOpcode()
1192 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedBinaryOpcode() local
1194 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedBinaryOpcode()
1201 return IsFP ? Instruction::FAdd : Instruction::Add; in getDecodedBinaryOpcode()
1203 return IsFP ? Instruction::FSub : Instruction::Sub; in getDecodedBinaryOpcode()
1205 return IsFP ? Instruction::FMul : Instruction::Mul; in getDecodedBinaryOpcode()
1207 return IsFP ? -1 : Instruction::UDiv; in getDecodedBinaryOpcode()
1209 return IsFP ? Instruction::FDiv : Instruction::SDiv; in getDecodedBinaryOpcode()
1211 return IsFP ? -1 : Instruction::URem; in getDecodedBinaryOpcode()
1213 return IsFP ? Instruction::FRem : Instruction::SRem; in getDecodedBinaryOpcode()
1215 return IsFP ? -1 : Instruction::Shl; in getDecodedBinaryOpcode()
1217 return IsFP ? -1 : Instruction::LShr; in getDecodedBinaryOpcode()
1219 return IsFP ? -1 : Instruction::AShr; in getDecodedBinaryOpcode()
1221 return IsFP ? -1 : Instruction::And; in getDecodedBinaryOpcode()
1223 return IsFP ? -1 : Instruction::Or; in getDecodedBinaryOpcode()
1225 return IsFP ? -1 : Instruction::Xor; in getDecodedBinaryOpcode()
5053 bool IsFP = LHS->getType()->isFPOrFPVectorTy(); in parseFunctionBody() local
5055 if (IsFP && Record.size() > OpNum+1) in parseFunctionBody()