Lines Matching refs:bitSize
2630 mlir::Value bitSize = builder.createIntegerConstant( in genDshiftl() local
2635 mlir::Value diff = builder.create<mlir::arith::SubIOp>(loc, bitSize, shift); in genDshiftl()
2654 mlir::Value bitSize = builder.createIntegerConstant( in genDshiftr() local
2659 mlir::Value diff = builder.create<mlir::arith::SubIOp>(loc, bitSize, shift); in genDshiftr()
2928 mlir::Value bitSize = builder.createIntegerConstant( in genIbits() local
2930 auto shiftCount = builder.create<mlir::arith::SubIOp>(loc, bitSize, len); in genIbits()
3133 mlir::Value bitSize = builder.createIntegerConstant( in genIshft() local
3141 loc, mlir::arith::CmpIPredicate::sge, absShift, bitSize); in genIshft()
3169 mlir::Value bitSize = builder.createIntegerConstant( in genIshftc() local
3174 args[2] ? builder.createConvert(loc, resultType, args[2]) : bitSize; in genIshftc()
3192 loc, mlir::arith::CmpIPredicate::ne, size, bitSize); in genIshftc()
3199 builder.create<mlir::arith::SubIOp>(loc, bitSize, leftSize); in genIshftc()
3205 builder.create<mlir::arith::SubIOp>(loc, bitSize, rightSize); in genIshftc()
3270 mlir::Value bitSize = builder.createIntegerConstant( in genMask() local
3280 builder.create<mlir::arith::SubIOp>(loc, bitSize, bitsToSet); in genMask()
3446 mlir::Value bitSize = builder.createIntegerConstant( in genMvbits() local
3448 auto shiftCount = builder.create<mlir::arith::SubIOp>(loc, bitSize, len); in genMvbits()
3836 mlir::Value bitSize = builder.createIntegerConstant(loc, resultType, bits); in genShift() local
3843 loc, mlir::arith::CmpIPredicate::sge, shift, bitSize); in genShift()