[llvm] 9cc8442 - [RISCV][NFC] Move GenericModel to standalone file (#127003)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 23:26:07 PST 2025
Author: Pengcheng Wang
Date: 2025-02-13T15:26:03+08:00
New Revision: 9cc8442a2b438962883bbbfd8ff62ad4b1a2b95d
URL: https://github.com/llvm/llvm-project/commit/9cc8442a2b438962883bbbfd8ff62ad4b1a2b95d
DIFF: https://github.com/llvm/llvm-project/commit/9cc8442a2b438962883bbbfd8ff62ad4b1a2b95d.diff
LOG: [RISCV][NFC] Move GenericModel to standalone file (#127003)
And fix some typos in comments.
In the future, we may add more scheduling info to GenericModel.
Added:
llvm/lib/Target/RISCV/RISCVSchedGeneric.td
Modified:
llvm/lib/Target/RISCV/RISCV.td
llvm/lib/Target/RISCV/RISCVProcessors.td
Removed:
################################################################################
diff --git a/llvm/lib/Target/RISCV/RISCV.td b/llvm/lib/Target/RISCV/RISCV.td
index 87c07c3cd505f..1e7ce136dc327 100644
--- a/llvm/lib/Target/RISCV/RISCV.td
+++ b/llvm/lib/Target/RISCV/RISCV.td
@@ -46,6 +46,7 @@ include "RISCVMacroFusion.td"
// RISC-V Scheduling Models
//===----------------------------------------------------------------------===//
+include "RISCVSchedGeneric.td"
include "RISCVSchedMIPSP8700.td"
include "RISCVSchedRocket.td"
include "RISCVSchedSiFive7.td"
diff --git a/llvm/lib/Target/RISCV/RISCVProcessors.td b/llvm/lib/Target/RISCV/RISCVProcessors.td
index c54afa1e6e72e..05fcbfd42b092 100644
--- a/llvm/lib/Target/RISCV/RISCVProcessors.td
+++ b/llvm/lib/Target/RISCV/RISCVProcessors.td
@@ -88,15 +88,6 @@ class RISCVTuneProcessorModel<string n,
defvar GenericTuneFeatures = [TuneOptimizedNF2SegmentLoadStore];
-// Adjust the default cost model to enable all heuristics, not just latency
-// In particular, this enables register pressure heustics which are very
-// important for high LMUL vector code, and have little negative impact
-// on other configurations,
-def GenericModel : SchedMachineModel {
- let MicroOpBufferSize = 1;
- let CompleteModel = 0;
-}
-
def GENERIC_RV32 : RISCVProcessorModel<"generic-rv32",
GenericModel,
[Feature32Bit,
diff --git a/llvm/lib/Target/RISCV/RISCVSchedGeneric.td b/llvm/lib/Target/RISCV/RISCVSchedGeneric.td
new file mode 100644
index 0000000000000..a10cf624aa3a4
--- /dev/null
+++ b/llvm/lib/Target/RISCV/RISCVSchedGeneric.td
@@ -0,0 +1,18 @@
+//===-- RISCVSchedGeneric.td - Generic In-order Processor --*- tablegen -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+// Adjust the default cost model to enable all scheduling heuristics, not just
+// latency.
+//
+// In particular, this enables register pressure heuristics which are very
+// important for vector code with high LMULs, and have little negative impact
+// on other configurations.
+def GenericModel : SchedMachineModel {
+ let MicroOpBufferSize = 1;
+ let CompleteModel = 0;
+}
More information about the llvm-commits
mailing list