Lines Matching refs:IsFP
1279 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedUnaryOpcode() local
1281 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedUnaryOpcode()
1288 return IsFP ? Instruction::FNeg : -1; in getDecodedUnaryOpcode()
1293 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedBinaryOpcode() local
1295 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedBinaryOpcode()
1302 return IsFP ? Instruction::FAdd : Instruction::Add; in getDecodedBinaryOpcode()
1304 return IsFP ? Instruction::FSub : Instruction::Sub; in getDecodedBinaryOpcode()
1306 return IsFP ? Instruction::FMul : Instruction::Mul; in getDecodedBinaryOpcode()
1308 return IsFP ? -1 : Instruction::UDiv; in getDecodedBinaryOpcode()
1310 return IsFP ? Instruction::FDiv : Instruction::SDiv; in getDecodedBinaryOpcode()
1312 return IsFP ? -1 : Instruction::URem; in getDecodedBinaryOpcode()
1314 return IsFP ? Instruction::FRem : Instruction::SRem; in getDecodedBinaryOpcode()
1316 return IsFP ? -1 : Instruction::Shl; in getDecodedBinaryOpcode()
1318 return IsFP ? -1 : Instruction::LShr; in getDecodedBinaryOpcode()
1320 return IsFP ? -1 : Instruction::AShr; in getDecodedBinaryOpcode()
1322 return IsFP ? -1 : Instruction::And; in getDecodedBinaryOpcode()
1324 return IsFP ? -1 : Instruction::Or; in getDecodedBinaryOpcode()
1326 return IsFP ? -1 : Instruction::Xor; in getDecodedBinaryOpcode()
5434 bool IsFP = LHS->getType()->isFPOrFPVectorTy(); in parseFunctionBody() local
5436 if (IsFP && Record.size() > OpNum+1) in parseFunctionBody()
5442 if (IsFP) { in parseFunctionBody()