Lines Matching refs:IsFP
794 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedBinaryOpcode() local
796 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedBinaryOpcode()
803 return IsFP ? Instruction::FAdd : Instruction::Add; in getDecodedBinaryOpcode()
805 return IsFP ? Instruction::FSub : Instruction::Sub; in getDecodedBinaryOpcode()
807 return IsFP ? Instruction::FMul : Instruction::Mul; in getDecodedBinaryOpcode()
809 return IsFP ? -1 : Instruction::UDiv; in getDecodedBinaryOpcode()
811 return IsFP ? Instruction::FDiv : Instruction::SDiv; in getDecodedBinaryOpcode()
813 return IsFP ? -1 : Instruction::URem; in getDecodedBinaryOpcode()
815 return IsFP ? Instruction::FRem : Instruction::SRem; in getDecodedBinaryOpcode()
817 return IsFP ? -1 : Instruction::Shl; in getDecodedBinaryOpcode()
819 return IsFP ? -1 : Instruction::LShr; in getDecodedBinaryOpcode()
821 return IsFP ? -1 : Instruction::AShr; in getDecodedBinaryOpcode()
823 return IsFP ? -1 : Instruction::And; in getDecodedBinaryOpcode()
825 return IsFP ? -1 : Instruction::Or; in getDecodedBinaryOpcode()
827 return IsFP ? -1 : Instruction::Xor; in getDecodedBinaryOpcode()
4810 bool IsFP = LHS->getType()->isFPOrFPVectorTy(); in parseFunctionBody() local
4812 if (IsFP && Record.size() > OpNum+1) in parseFunctionBody()