llvm-project/llvm/test/TableGen/PerWriteCycleCount.td
Ricardo Jesus 80b08d1bb8
[TableGen] Add support for per-write cycle tunables (#125870)
This patch adds support for describing per-write resource cycle counts
for ReadAdvance records via a new optional field called `tunables`.
    
This makes it possible to declare ReadAdvance records such as:
    
      def : ReadAdvance<Read_C, 1, [Write_A, Write_B], [2]>;
    
The above will effectively declare two entries in the ReadAdvance
table for Read_C, one for Write_A with a cycle count of 1+2, and one for
Write_B with a cycle count of 1+0 (omitted values are assumed 0).
    
The field `tunables` provides a list of deltas relative to the base
`cycle` count of the ReadAdvance. Since the field is optional and
defaults to a list of 0's, this change doesn't affect current targets.
2025-02-17 11:32:47 +00:00

49 lines
1.4 KiB
TableGen

// RUN: llvm-tblgen -gen-subtarget -I %p/../../include %s 2>&1 | FileCheck %s
// RUN: not llvm-tblgen -gen-subtarget -I %p/../../include -DERROR1 %s 2>&1 | FileCheck --check-prefix=ERROR1 %s
// Make sure that ReadAdvance entries with multiple writes are correctly
// handled.
include "llvm/Target/Target.td"
def MyTarget : Target;
let OutOperandList = (outs), InOperandList = (ins) in {
def Inst_A : Instruction;
def Inst_B : Instruction;
def Inst_C : Instruction;
}
let CompleteModel = 0 in {
def SchedModel_A: SchedMachineModel;
}
def Read_D : SchedRead;
def Read_E : SchedRead;
// CHECK: extern const llvm::MCReadAdvanceEntry MyTargetReadAdvanceTable[] = {
// CHECK-NEXT: {0, 0, 0}, // Invalid
// CHECK-NEXT: {0, 1, 1}, // #1
// CHECK-NEXT: {0, 2, 3}, // #2
// CHECK-NEXT: {0, 3, 2} // #3
// CHECK-NEXT: }; // MyTargetReadAdvanceTable
let SchedModel = SchedModel_A in {
def Write_A : SchedWriteRes<[]>;
def Write_B : SchedWriteRes<[]>;
def Write_C : SchedWriteRes<[]>;
def : InstRW<[Write_A], (instrs Inst_A)>;
def : InstRW<[Write_B], (instrs Inst_B)>;
def : InstRW<[Write_C, Read_D], (instrs Inst_C)>;
def : ReadAdvance<Read_D, 2, [Write_A, Write_B, Write_C], [-1, 1]>;
#ifdef ERROR1
// ERROR1: error: assertion failed: cannot have more `tunables' than `writes'
def : ReadAdvance<Read_E, 2, [Write_A, Write_B, Write_C], [1, 2, 3, 4]>;
#endif
}
def ProcessorA: ProcessorModel<"ProcessorA", SchedModel_A, []>;