[llvm] [SandboxVec][Scheduler] Enforce scheduling SchedBundle instrs back-to-back (PR #128092)

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 27 10:33:24 PST 2025


================
@@ -324,6 +324,53 @@ define void @foo(ptr noalias %ptr0, ptr noalias %ptr1, i8 %arg) {
   EXPECT_TRUE(Sched.trySchedule({L0, L1}));
 }
 
+// Make sure that instructions in  SchedBundles are always scheduled
+// back-to-back
+TEST_F(SchedulerTest, SchedBundleBackToBack) {
+  parseIR(C, R"IR(
+define void @foo(ptr %ptr, i16 %arg) {
+  %gep0 = getelementptr i32, ptr %ptr, i64 0
+  %gep1 = getelementptr i32, ptr %ptr, i64 1
+  %zextX = zext i16 0 to i32
+  %zext1 = zext i16 0 to i32
+  %zext0 = zext i16 %arg to i32
+  %shl1 = shl i32 %zextX, 0
+  %shl0 = shl i32 %zext1, 0
+  %sub1 = sub i32 %zext1, %shl1
+  %sub0 = sub i32 %zext0, %shl0
+  store i32 %sub1, ptr %gep1
+  store i32 %sub0, ptr %gep0
+  ret void
+})IR");
+  llvm::Function *LLVMF = &*M->getFunction("foo");
+  sandboxir::Context Ctx(C);
+  auto *F = Ctx.createFunction(LLVMF);
+  auto *BB = &*F->begin();
+  auto It = BB->begin();
+  auto *Gep0 = cast<sandboxir::GetElementPtrInst>(&*It++);
+  auto *Gep1 = cast<sandboxir::GetElementPtrInst>(&*It++);
+  auto *ZextX = cast<sandboxir::CastInst>(&*It++);
----------------
RKSimon wrote:

@vporpo I'm seeing some `local variable is initialized but not referenced` build warnings on MSVC - add `[[maybe_unused]]` ?

https://github.com/llvm/llvm-project/pull/128092


More information about the llvm-commits mailing list