================
@@ -280,3 +313,77 @@ mlir::LogicalResult CIRGenFunction::emitReturnStmt(const 
ReturnStmt &s) {
 
   return mlir::success();
 }
+
+mlir::LogicalResult CIRGenFunction::emitForStmt(const ForStmt &s) {
+  cir::ForOp forOp;
+
+  // TODO: pass in an array of attributes.
+  auto forStmtBuilder = [&]() -> mlir::LogicalResult {
+    mlir::LogicalResult loopRes = mlir::success();
+    // Evaluate the first part before the loop.
+    if (s.getInit())
+      if (emitStmt(s.getInit(), /*useCurrentScope=*/true).failed())
+        return mlir::failure();
+    assert(!cir::MissingFeatures::loopInfoStack());
+    // In the classic codegen, if there are any cleanups between here and the
+    // loop-exit scope, a block is created to stage the loop exit. We probably
+    // already do the right thing because of ScopeOp, but we need more testing
+    // to be sure we handle all cases.
+    assert(!cir::MissingFeatures::requiresCleanups());
+
+    forOp = builder.createFor(
+        getLoc(s.getSourceRange()),
+        /*condBuilder=*/
+        [&](mlir::OpBuilder &b, mlir::Location loc) {
+          assert(!cir::MissingFeatures::createProfileWeightsForLoop());
+          
assert(!cir::MissingFeatures::emitCondLikelihoodViaExpectIntrinsic());
+          mlir::Value condVal;
+          if (s.getCond()) {
+            // If the for statement has a condition scope,
+            // emit the local variable declaration.
+            if (s.getConditionVariable())
+              emitDecl(*s.getConditionVariable());
+            // C99 6.8.5p2/p4: The first substatement is executed if the
+            // expression compares unequal to 0. The condition must be a
+            // scalar type.
+            condVal = evaluateExprAsBool(s.getCond());
----------------
erichkeane wrote:

I'm surprised to see this unconditionally, this should come pre-casted in C++.

https://github.com/llvm/llvm-project/pull/132266
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to