diff options
author | Sergio Afonso <safonsof@amd.com> | 2025-02-24 16:32:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-24 10:32:58 -0600 |
commit | ff7790e6dde7859b993b7d9abb4a2ec4fe2ae779 (patch) | |
tree | 4e86167f5f60a800b6ad97bb3c83afb0bb63ed55 | |
parent | 7a4cb9bac50c8c19ec0d4ab7f186ef086064a549 (diff) | |
download | llvm-ff7790e6dde7859b993b7d9abb4a2ec4fe2ae779.zip llvm-ff7790e6dde7859b993b7d9abb4a2ec4fe2ae779.tar.gz llvm-ff7790e6dde7859b993b7d9abb4a2ec4fe2ae779.tar.bz2 |
[MLIR][OpenMP] Simplify definition of the BlockArgOpenMPOpInterface, NFC (#128198)
This patch removes code duplication from the definition of methods of
the `BlockArgOpenMPOpInterface` and makes the order relationship between
entry block argument generating clauses explicit.
The goal of this change is to make the addition of clauses and methods
to the interface less error-prone.
-rw-r--r-- | mlir/include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td | 234 |
1 files changed, 91 insertions, 143 deletions
diff --git a/mlir/include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td b/mlir/include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td index c863e57..ad5580a 100644 --- a/mlir/include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td +++ b/mlir/include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td @@ -15,6 +15,83 @@ include "mlir/IR/OpBase.td" + +// Internal class to hold definitions of BlockArgOpenMPOpInterface methods, +// based on the name of the clause and what clause comes earlier in the list. +// +// The clause order will define the expected relative order between block +// arguments corresponding to each of these clauses. +class BlockArgOpenMPClause<string clauseNameSnake, string clauseNameCamel, + BlockArgOpenMPClause previousClause> { + // Default-implemented method to be overriden by the corresponding clause. + // + // Usage example: + // + // ```c++ + // auto iface = cast<BlockArgOpenMPOpInterface>(op); + // unsigned numInReductionArgs = iface.numInReductionBlockArgs(); + // ``` + InterfaceMethod numArgsMethod = InterfaceMethod< + "Get number of block arguments defined by `" # clauseNameSnake # "`.", + "unsigned", "num" # clauseNameCamel # "BlockArgs", (ins), [{}], [{ + return 0; + }] + >; + + // Unified access method for the start index of clause-associated entry block + // arguments. + // + // Usage example: + // + // ```c++ + // auto iface = cast<BlockArgOpenMPOpInterface>(op); + // unsigned firstMapIndex = iface.getMapBlockArgsStart(); + // ``` + InterfaceMethod startMethod = InterfaceMethod< + "Get start index of block arguments defined by `" # clauseNameSnake # "`.", + "unsigned", "get" # clauseNameCamel # "BlockArgsStart", (ins), + !if(!initialized(previousClause), [{ + auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); + }] # "return iface." # previousClause.startMethod.name # "() + $_op." + # previousClause.numArgsMethod.name # "();", + "return 0;" + ) + >; + + // Unified access method for clause-associated entry block arguments. + // + // Usage example: + // + // ```c++ + // auto iface = cast<BlockArgOpenMPOpInterface>(op); + // ArrayRef<BlockArgument> reductionArgs = iface.getReductionBlockArgs(); + // ``` + InterfaceMethod blockArgsMethod = InterfaceMethod< + "Get block arguments defined by `" # clauseNameSnake # "`.", + "::llvm::MutableArrayRef<::mlir::BlockArgument>", + "get" # clauseNameCamel # "BlockArgs", (ins), [{ + auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); + return $_op->getRegion(0).getArguments().slice( + }] # "iface." # startMethod.name # "(), $_op." # numArgsMethod.name # "());" + >; +} + +def BlockArgHostEvalClause : BlockArgOpenMPClause<"host_eval", "HostEval", ?>; +def BlockArgInReductionClause : BlockArgOpenMPClause< + "in_reduction", "InReduction", BlockArgHostEvalClause>; +def BlockArgMapClause : BlockArgOpenMPClause< + "map", "Map", BlockArgInReductionClause>; +def BlockArgPrivateClause : BlockArgOpenMPClause< + "private", "Private", BlockArgMapClause>; +def BlockArgReductionClause : BlockArgOpenMPClause< + "reduction", "Reduction", BlockArgPrivateClause>; +def BlockArgTaskReductionClause : BlockArgOpenMPClause< + "task_reduction", "TaskReduction", BlockArgReductionClause>; +def BlockArgUseDeviceAddrClause : BlockArgOpenMPClause< + "use_device_addr", "UseDeviceAddr", BlockArgTaskReductionClause>; +def BlockArgUseDevicePtrClause : BlockArgOpenMPClause< + "use_device_ptr", "UseDevicePtr", BlockArgUseDeviceAddrClause>; + def BlockArgOpenMPOpInterface : OpInterface<"BlockArgOpenMPOpInterface"> { let description = [{ OpenMP operations that define entry block arguments as part of the @@ -23,153 +100,24 @@ def BlockArgOpenMPOpInterface : OpInterface<"BlockArgOpenMPOpInterface"> { let cppNamespace = "::mlir::omp"; - let methods = [ - // Default-implemented methods to be overriden by the corresponding clauses. - InterfaceMethod<"Get number of block arguments defined by `host_eval`.", - "unsigned", "numHostEvalBlockArgs", (ins), [{}], [{ - return 0; - }]>, - InterfaceMethod<"Get number of block arguments defined by `in_reduction`.", - "unsigned", "numInReductionBlockArgs", (ins), [{}], [{ - return 0; - }]>, - InterfaceMethod<"Get number of block arguments defined by `map`.", - "unsigned", "numMapBlockArgs", (ins), [{}], [{ - return 0; - }]>, - InterfaceMethod<"Get number of block arguments defined by `private`.", - "unsigned", "numPrivateBlockArgs", (ins), [{}], [{ - return 0; - }]>, - InterfaceMethod<"Get number of block arguments defined by `reduction`.", - "unsigned", "numReductionBlockArgs", (ins), [{}], [{ - return 0; - }]>, - InterfaceMethod<"Get number of block arguments defined by `task_reduction`.", - "unsigned", "numTaskReductionBlockArgs", (ins), [{}], [{ - return 0; - }]>, - InterfaceMethod<"Get number of block arguments defined by `use_device_addr`.", - "unsigned", "numUseDeviceAddrBlockArgs", (ins), [{}], [{ - return 0; - }]>, - InterfaceMethod<"Get number of block arguments defined by `use_device_ptr`.", - "unsigned", "numUseDevicePtrBlockArgs", (ins), [{}], [{ - return 0; - }]>, + defvar clauses = [ BlockArgHostEvalClause, BlockArgInReductionClause, + BlockArgMapClause, BlockArgPrivateClause, BlockArgReductionClause, + BlockArgTaskReductionClause, BlockArgUseDeviceAddrClause, + BlockArgUseDevicePtrClause ]; - // Unified access methods for start indices of clause-associated entry block - // arguments. - InterfaceMethod<"Get start index of block arguments defined by `host_eval`.", - "unsigned", "getHostEvalBlockArgsStart", (ins), [{ - return 0; - }]>, - InterfaceMethod<"Get start index of block arguments defined by `in_reduction`.", - "unsigned", "getInReductionBlockArgsStart", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return iface.getHostEvalBlockArgsStart() + $_op.numHostEvalBlockArgs(); - }]>, - InterfaceMethod<"Get start index of block arguments defined by `map`.", - "unsigned", "getMapBlockArgsStart", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return iface.getInReductionBlockArgsStart() + - $_op.numInReductionBlockArgs(); - }]>, - InterfaceMethod<"Get start index of block arguments defined by `private`.", - "unsigned", "getPrivateBlockArgsStart", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return iface.getMapBlockArgsStart() + $_op.numMapBlockArgs(); - }]>, - InterfaceMethod<"Get start index of block arguments defined by `reduction`.", - "unsigned", "getReductionBlockArgsStart", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return iface.getPrivateBlockArgsStart() + $_op.numPrivateBlockArgs(); - }]>, - InterfaceMethod<"Get start index of block arguments defined by `task_reduction`.", - "unsigned", "getTaskReductionBlockArgsStart", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return iface.getReductionBlockArgsStart() + $_op.numReductionBlockArgs(); - }]>, - InterfaceMethod<"Get start index of block arguments defined by `use_device_addr`.", - "unsigned", "getUseDeviceAddrBlockArgsStart", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return iface.getTaskReductionBlockArgsStart() + $_op.numTaskReductionBlockArgs(); - }]>, - InterfaceMethod<"Get start index of block arguments defined by `use_device_ptr`.", - "unsigned", "getUseDevicePtrBlockArgsStart", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return iface.getUseDeviceAddrBlockArgsStart() + $_op.numUseDeviceAddrBlockArgs(); - }]>, - - // Unified access methods for clause-associated entry block arguments. - InterfaceMethod<"Get block arguments defined by `host_eval`.", - "::llvm::MutableArrayRef<::mlir::BlockArgument>", - "getHostEvalBlockArgs", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return $_op->getRegion(0).getArguments().slice( - iface.getHostEvalBlockArgsStart(), $_op.numHostEvalBlockArgs()); - }]>, - InterfaceMethod<"Get block arguments defined by `in_reduction`.", - "::llvm::MutableArrayRef<::mlir::BlockArgument>", - "getInReductionBlockArgs", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return $_op->getRegion(0).getArguments().slice( - iface.getInReductionBlockArgsStart(), $_op.numInReductionBlockArgs()); - }]>, - InterfaceMethod<"Get block arguments defined by `map`.", - "::llvm::MutableArrayRef<::mlir::BlockArgument>", - "getMapBlockArgs", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return $_op->getRegion(0).getArguments().slice( - iface.getMapBlockArgsStart(), $_op.numMapBlockArgs()); - }]>, - InterfaceMethod<"Get block arguments defined by `private`.", - "::llvm::MutableArrayRef<::mlir::BlockArgument>", - "getPrivateBlockArgs", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return $_op->getRegion(0).getArguments().slice( - iface.getPrivateBlockArgsStart(), $_op.numPrivateBlockArgs()); - }]>, - InterfaceMethod<"Get block arguments defined by `reduction`.", - "::llvm::MutableArrayRef<::mlir::BlockArgument>", - "getReductionBlockArgs", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return $_op->getRegion(0).getArguments().slice( - iface.getReductionBlockArgsStart(), $_op.numReductionBlockArgs()); - }]>, - InterfaceMethod<"Get block arguments defined by `task_reduction`.", - "::llvm::MutableArrayRef<::mlir::BlockArgument>", - "getTaskReductionBlockArgs", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return $_op->getRegion(0).getArguments().slice( - iface.getTaskReductionBlockArgsStart(), - $_op.numTaskReductionBlockArgs()); - }]>, - InterfaceMethod<"Get block arguments defined by `use_device_addr`.", - "::llvm::MutableArrayRef<::mlir::BlockArgument>", - "getUseDeviceAddrBlockArgs", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return $_op->getRegion(0).getArguments().slice( - iface.getUseDeviceAddrBlockArgsStart(), - $_op.numUseDeviceAddrBlockArgs()); - }]>, - InterfaceMethod<"Get block arguments defined by `use_device_ptr`.", - "::llvm::MutableArrayRef<::mlir::BlockArgument>", - "getUseDevicePtrBlockArgs", (ins), [{ - auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>(*$_op); - return $_op->getRegion(0).getArguments().slice( - iface.getUseDevicePtrBlockArgsStart(), - $_op.numUseDevicePtrBlockArgs()); - }]>, - ]; + let methods = !listconcat( + !foreach(clause, clauses, clause.numArgsMethod), + !foreach(clause, clauses, clause.startMethod), + !foreach(clause, clauses, clause.blockArgsMethod) + ); let verify = [{ auto iface = ::llvm::cast<BlockArgOpenMPOpInterface>($_op); - unsigned expectedArgs = iface.numHostEvalBlockArgs() + - iface.numInReductionBlockArgs() + iface.numMapBlockArgs() + - iface.numPrivateBlockArgs() + iface.numReductionBlockArgs() + - iface.numTaskReductionBlockArgs() + iface.numUseDeviceAddrBlockArgs() + - iface.numUseDevicePtrBlockArgs(); + }] # "unsigned expectedArgs = " + # !interleave( + !foreach(clause, clauses, "iface." # clause.numArgsMethod.name # "()"), + " + " + ) # ";" # [{ if ($_op->getRegion(0).getNumArguments() < expectedArgs) return $_op->emitOpError() << "expected at least " << expectedArgs << " entry block argument(s)"; |