Lines Matching refs:IsFP
1038 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedUnaryOpcode() local
1040 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedUnaryOpcode()
1047 return IsFP ? Instruction::FNeg : -1; in getDecodedUnaryOpcode()
1052 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedBinaryOpcode() local
1054 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedBinaryOpcode()
1061 return IsFP ? Instruction::FAdd : Instruction::Add; in getDecodedBinaryOpcode()
1063 return IsFP ? Instruction::FSub : Instruction::Sub; in getDecodedBinaryOpcode()
1065 return IsFP ? Instruction::FMul : Instruction::Mul; in getDecodedBinaryOpcode()
1067 return IsFP ? -1 : Instruction::UDiv; in getDecodedBinaryOpcode()
1069 return IsFP ? Instruction::FDiv : Instruction::SDiv; in getDecodedBinaryOpcode()
1071 return IsFP ? -1 : Instruction::URem; in getDecodedBinaryOpcode()
1073 return IsFP ? Instruction::FRem : Instruction::SRem; in getDecodedBinaryOpcode()
1075 return IsFP ? -1 : Instruction::Shl; in getDecodedBinaryOpcode()
1077 return IsFP ? -1 : Instruction::LShr; in getDecodedBinaryOpcode()
1079 return IsFP ? -1 : Instruction::AShr; in getDecodedBinaryOpcode()
1081 return IsFP ? -1 : Instruction::And; in getDecodedBinaryOpcode()
1083 return IsFP ? -1 : Instruction::Or; in getDecodedBinaryOpcode()
1085 return IsFP ? -1 : Instruction::Xor; in getDecodedBinaryOpcode()
4358 bool IsFP = LHS->getType()->isFPOrFPVectorTy(); in parseFunctionBody() local
4360 if (IsFP && Record.size() > OpNum+1) in parseFunctionBody()