[llvm] Initialize aarch64-cond-br-tuning pass (PR #132087)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 12:23:43 PDT 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-backend-aarch64

Author: Shubham Sandeep Rastogi (rastogishubham)

<details>
<summary>Changes</summary>

The call to the initializeAArch64CondBrTuningPass function is missing in the AArch64TargetMachine LLVMInitializeAArch64Target function.

This means that the pass is not in the pass registry and options such as -run-pass=aarch64-cond-br-tuning and
-stop-after=aarch64-cond-br-tuning cannot be used. This patch fixes that issue.

---
Full diff: https://github.com/llvm/llvm-project/pull/132087.diff


1 Files Affected:

- (modified) llvm/lib/Target/AArch64/AArch64TargetMachine.cpp (+1) 


``````````diff
diff --git a/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp b/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
index 5c514bf02968a..d85952ba5d93a 100644
--- a/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
+++ b/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
@@ -268,6 +268,7 @@ extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAArch64Target() {
   initializeAArch64StackTaggingPreRAPass(*PR);
   initializeAArch64LowerHomogeneousPrologEpilogPass(*PR);
   initializeAArch64DAGToDAGISelLegacyPass(*PR);
+  initializeAArch64CondBrTuningPass(*PR);
 }
 
 void AArch64TargetMachine::reset() { SubtargetMap.clear(); }

``````````

</details>


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


More information about the llvm-commits mailing list