Home
last modified time | relevance | path

Searched refs:IsFloat (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64LowerHomogeneousPrologEpilog.cpp200 bool IsFloat = AArch64::FPR64RegClass.contains(Reg1); in emitStore() local
201 assert(!(IsFloat ^ AArch64::FPR64RegClass.contains(Reg2))); in emitStore()
204 Opc = IsFloat ? AArch64::STPDpre : AArch64::STPXpre; in emitStore()
206 Opc = IsFloat ? AArch64::STPDi : AArch64::STPXi; in emitStore()
223 bool IsFloat = AArch64::FPR64RegClass.contains(Reg1); in emitLoad() local
224 assert(!(IsFloat ^ AArch64::FPR64RegClass.contains(Reg2))); in emitLoad()
227 Opc = IsFloat ? AArch64::LDPDpost : AArch64::LDPXpost; in emitLoad()
229 Opc = IsFloat ? AArch64::LDPDi : AArch64::LDPXi; in emitLoad()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DAutoUpgrade.cpp1206 bool IsFloat = Ty->isFPOrFPVectorTy(); in UpgradeX86VPERMT2Intrinsics() local
1208 if (VecWidth == 128 && EltWidth == 32 && IsFloat) in UpgradeX86VPERMT2Intrinsics()
1210 else if (VecWidth == 128 && EltWidth == 32 && !IsFloat) in UpgradeX86VPERMT2Intrinsics()
1212 else if (VecWidth == 128 && EltWidth == 64 && IsFloat) in UpgradeX86VPERMT2Intrinsics()
1214 else if (VecWidth == 128 && EltWidth == 64 && !IsFloat) in UpgradeX86VPERMT2Intrinsics()
1216 else if (VecWidth == 256 && EltWidth == 32 && IsFloat) in UpgradeX86VPERMT2Intrinsics()
1218 else if (VecWidth == 256 && EltWidth == 32 && !IsFloat) in UpgradeX86VPERMT2Intrinsics()
1220 else if (VecWidth == 256 && EltWidth == 64 && IsFloat) in UpgradeX86VPERMT2Intrinsics()
1222 else if (VecWidth == 256 && EltWidth == 64 && !IsFloat) in UpgradeX86VPERMT2Intrinsics()
1224 else if (VecWidth == 512 && EltWidth == 32 && IsFloat) in UpgradeX86VPERMT2Intrinsics()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp707 bool IsFloat = Left->getType()->isFloatTy(); in emitCmp() local
709 if (!IsFloat && !IsDouble) in emitCmp()
714 Opc = IsFloat ? Mips::C_EQ_S : Mips::C_EQ_D32; in emitCmp()
718 Opc = IsFloat ? Mips::C_EQ_S : Mips::C_EQ_D32; in emitCmp()
722 Opc = IsFloat ? Mips::C_OLT_S : Mips::C_OLT_D32; in emitCmp()
726 Opc = IsFloat ? Mips::C_OLE_S : Mips::C_OLE_D32; in emitCmp()
730 Opc = IsFloat ? Mips::C_ULE_S : Mips::C_ULE_D32; in emitCmp()
734 Opc = IsFloat ? Mips::C_ULT_S : Mips::C_ULT_D32; in emitCmp()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A Driscv_vector.td549 class IsFloat<string type> {
575 if !not(IsFloat<type>.val) then {
627 if !not(IsFloat<type>.val) then {
651 if !not(IsFloat<type>.val) then {
675 if !not(IsFloat<type>.val) then {
708 if !not(IsFloat<type>.val) then {
735 if !not(IsFloat<type>.val) then {
762 if !not(IsFloat<type>.val) then {
794 if !and(!not(IsFloat<type>.val), has_unsigned) then
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
H A DSimplifyLibCalls.h228 void classifyArgUse(Value *Val, Function *F, bool IsFloat,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoVPseudos.td3026 multiclass VPatReductionV_VS<string intrinsic, string instruction, bit IsFloat = 0> {
3027 foreach vti = !if(IsFloat, NoGroupFloatVectors, NoGroupIntegerVectors) in
3029 defvar vectorM1 = !cast<VTypeInfo>(!if(IsFloat, "VF", "VI") # vti.SEW # "M1");
3036 foreach gvti = !if(IsFloat, GroupFloatVectors, GroupIntegerVectors) in
3046 multiclass VPatReductionW_VS<string intrinsic, string instruction, bit IsFloat = 0> {
3047 foreach vti = !if(IsFloat, AllFloatVectors, AllIntegerVectors) in
3051 defvar wtiM1 = !cast<VTypeInfo>(!if(IsFloat, "VF", "VI") # wtiSEW # "M1");
4382 defm : VPatReductionV_VS<"int_riscv_vfredosum", "PseudoVFREDOSUM", /*IsFloat=*/1>;
4383 defm : VPatReductionV_VS<"int_riscv_vfredsum", "PseudoVFREDSUM", /*IsFloat=*/1>;
4384 defm : VPatReductionV_VS<"int_riscv_vfredmin", "PseudoVFREDMIN", /*IsFloat=*/1>;
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/src/filesystem/
H A Dfilesystem_common.h278 bool IsFloat = is_floating_point<typename FileTimeT::rep>::value>
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp536 bool IsFloat = Ty->isFPOrFPVectorTy(); in getArithmeticInstrCost() local
539 unsigned OpCost = (IsFloat ? 2 : 1); in getArithmeticInstrCost()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp2165 bool IsFloat = Arg->getType()->isFloatTy(); in optimizeSinCosPi() local
2172 classifyArgUse(U, F, IsFloat, SinCalls, CosCalls, SinCosCalls); in optimizeSinCosPi()
2179 insertSinCosCall(B, CI->getCalledFunction(), Arg, IsFloat, Sin, Cos, SinCos); in optimizeSinCosPi()
2195 Value *Val, Function *F, bool IsFloat, in classifyArgUse() argument
2214 if (IsFloat) { in classifyArgUse()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h762 bool IsFloat = Ty->isFPOrFPVectorTy(); variable
765 InstructionCost OpCost = (IsFloat ? 2 : 1);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp2410 bool IsFloat = Token.is(MIToken::kw_floatpred); in parsePredicateOperand() local
2420 if (IsFloat) { in parsePredicateOperand()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp2798 bool IsFloat = OutVT.isFloatingPoint(); in SplitVecOp_TruncateHelper() local
2832 EVT HalfElementVT = IsFloat ? in SplitVecOp_TruncateHelper()
2873 return IsFloat in SplitVecOp_TruncateHelper()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DTargetInfo.cpp10554 bool IsFloat = Ty->isRealFloatingType(); in detectFPCCEligibleStructHelper() local
10556 if (IsInt || IsFloat) { in detectFPCCEligibleStructHelper()
10563 if (IsFloat && (Size > FLen || Size < 32)) in detectFPCCEligibleStructHelper()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp13600 static bool isValidMVECond(unsigned CC, bool IsFloat) { in isValidMVECond() argument
13611 return !IsFloat; in isValidMVECond()