Lines Matching refs:IsFP

1220   bool IsFP = Ty->isFPOrFPVectorTy();  in getDecodedUnaryOpcode()  local
1222 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedUnaryOpcode()
1229 return IsFP ? Instruction::FNeg : -1; in getDecodedUnaryOpcode()
1234 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedBinaryOpcode() local
1236 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedBinaryOpcode()
1243 return IsFP ? Instruction::FAdd : Instruction::Add; in getDecodedBinaryOpcode()
1245 return IsFP ? Instruction::FSub : Instruction::Sub; in getDecodedBinaryOpcode()
1247 return IsFP ? Instruction::FMul : Instruction::Mul; in getDecodedBinaryOpcode()
1249 return IsFP ? -1 : Instruction::UDiv; in getDecodedBinaryOpcode()
1251 return IsFP ? Instruction::FDiv : Instruction::SDiv; in getDecodedBinaryOpcode()
1253 return IsFP ? -1 : Instruction::URem; in getDecodedBinaryOpcode()
1255 return IsFP ? Instruction::FRem : Instruction::SRem; in getDecodedBinaryOpcode()
1257 return IsFP ? -1 : Instruction::Shl; in getDecodedBinaryOpcode()
1259 return IsFP ? -1 : Instruction::LShr; in getDecodedBinaryOpcode()
1261 return IsFP ? -1 : Instruction::AShr; in getDecodedBinaryOpcode()
1263 return IsFP ? -1 : Instruction::And; in getDecodedBinaryOpcode()
1265 return IsFP ? -1 : Instruction::Or; in getDecodedBinaryOpcode()
1267 return IsFP ? -1 : Instruction::Xor; in getDecodedBinaryOpcode()
5257 bool IsFP = LHS->getType()->isFPOrFPVectorTy(); in parseFunctionBody() local
5259 if (IsFP && Record.size() > OpNum+1) in parseFunctionBody()
5265 if (IsFP) { in parseFunctionBody()