Home
last modified time | relevance | path

Searched refs:ExpMask (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp7683 APInt ExpMask = Inf; in expandIS_FPCLASS() local
7685 ExpMask.clearBit(ExplicitIntBitInF80); in expandIS_FPCLASS()
7693 SDValue ExpMaskV = DAG.getConstant(ExpMask, DL, IntVT); in expandIS_FPCLASS()
7818 APInt ExpLSB = ExpMask & ~(ExpMask.shl(1)); in expandIS_FPCLASS()
7821 APInt ExpLimit = ExpMask - ExpLSB; in expandIS_FPCLASS()
/llvm-project-15.0.7/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp7489 uint64_t ExpMask = BitmanipMasks[MaskIdx] & maskTrailingOnes<uint64_t>(Width); in matchRISCVBitmanipPat() local
7492 ExpMask <<= ShAmt; in matchRISCVBitmanipPat()
7494 if (Mask != ExpMask) in matchRISCVBitmanipPat()
7796 uint64_t ExpMask = BitmanipMasks[MaskIdx] & maskTrailingOnes<uint64_t>(Width); in combineORToSHFL() local
7798 if (Mask != ExpMask) in combineORToSHFL()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp2602 const unsigned ExpMask = 0x7ff; in LowerFP_TO_FP16() local
2615 DAG.getConstant(ExpMask, DL, MVT::i32)); in LowerFP_TO_FP16()
/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp6178 const unsigned ExpMask = 0x7ff; in lowerFPTRUNC_F64_TO_F16() local
6189 E = MIRBuilder.buildAnd(S32, E, MIRBuilder.buildConstant(S32, ExpMask)); in lowerFPTRUNC_F64_TO_F16()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGBuiltin.cpp3025 APInt ExpMask = APFloat::getInf(Semantics).bitcastToAPInt(); in EmitBuiltinExpr() local
3027 Builder.CreateSub(llvm::ConstantInt::get(IntTy, ExpMask), AbsV); in EmitBuiltinExpr()
3248 APInt ExpMask = APFloat::getInf(Semantics).bitcastToAPInt(); in EmitBuiltinExpr() local
3249 Value *ExpMaskShl1 = llvm::ConstantInt::get(IntTy, ExpMask.shl(1)); in EmitBuiltinExpr()