Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Lower/
H A DIntrinsicCall.cpp553 mlir::Value genShift(mlir::Type resultType, llvm::ArrayRef<mlir::Value>);
935 {"shifta", &I::genShift<mlir::arith::ShRSIOp>},
936 {"shiftl", &I::genShift<mlir::arith::ShLIOp>},
937 {"shiftr", &I::genShift<mlir::arith::ShRUIOp>},
2638 mlir::Value lft = genShift<mlir::arith::ShLIOp>(resultType, lArgs); in genDshiftl()
2641 mlir::Value rgt = genShift<mlir::arith::ShRUIOp>(resultType, rArgs); in genDshiftl()
2662 mlir::Value lft = genShift<mlir::arith::ShLIOp>(resultType, lArgs); in genDshiftr()
2665 mlir::Value rgt = genShift<mlir::arith::ShRUIOp>(resultType, rArgs); in genDshiftr()
3827 mlir::Value IntrinsicLibrary::genShift(mlir::Type resultType, in genShift() function in IntrinsicLibrary