[Mlir-commits] [mlir] [WIP][mlir][EmitC] Model lvalues as a type in EmitC (PR #91475)
Matthias Gehre
llvmlistbot at llvm.org
Thu May 9 22:36:35 PDT 2024
================
@@ -698,6 +703,47 @@ LogicalResult emitc::LiteralOp::verify() {
return emitOpError() << "value must not be empty";
return success();
}
+
+//===----------------------------------------------------------------------===//
+// LValueToRValueOp
+//===----------------------------------------------------------------------===//
+
+LogicalResult emitc::LValueToRValueOp::verify() {
+ Type operandType = getOperand().getType();
+ Type resultType = getResult().getType();
+ if (!llvm::isa<emitc::LValueType>(operandType))
+ return emitOpError("operand must be a lvalue");
+ if (llvm::cast<emitc::LValueType>(operandType).getValue() != resultType)
+ return emitOpError("types must match");
+
+ Value result = getResult();
+ if (!result.hasOneUse()) {
----------------
mgehre-amd wrote:
Why can this only have a single use? At this point, we read the value from memory (into registers), but then the value can be used as often as needed.
https://github.com/llvm/llvm-project/pull/91475
More information about the Mlir-commits
mailing list