Lines Matching defs:BitPos
1427 Value *BitPos) {
1456 return CGF.Builder.CreateCall(IA, {BitBase, BitPos});
1479 Value *BitPos = CGF.EmitScalarExpr(E->getArg(1));
1486 return EmitX86BitTestIntrinsic(CGF, BT, E, BitBase, BitPos);
1491 // Bit = BitBaseI8[BitPos >> 3] & (1 << (BitPos & 0x7)) != 0;
1493 BitPos, llvm::ConstantInt::get(BitPos->getType(), 3), "bittest.byteidx");
1498 CGF.Builder.CreateAnd(CGF.Builder.CreateTrunc(BitPos, CGF.Int8Ty),
15160 auto [GroupID, BitPos] = RISCVISAInfo::getRISCVFeaturesBitsInfo(Feat);
15162 // If there isn't BitPos for this feature, skip this version.
15164 if (BitPos == -1)
15167 RequireBitMasks[GroupID] |= (1ULL << BitPos);