[MISched] Introduce and use ResourceSegments.
authorFrancesco Petrogalli <francesco.petrogalli@apple.com>
Fri, 9 Jun 2023 07:06:48 +0000 (09:06 +0200)
committerFrancesco Petrogalli <francesco.petrogalli@apple.com>
Fri, 9 Jun 2023 11:00:50 +0000 (13:00 +0200)
commitdc312f0331309692e8d6e06e93b3492b6a40989f
tree686264fd484b343164792bfe31e284cd8f06ff6b
parent389a8c298e8b5c20373dd9837e2b46dfcddc88de
[MISched] Introduce and use ResourceSegments.

The class `ResourceSegments` is used to keep track of the intervals
that represent resource usage of a list of instructions that are
being scheduled by the machine scheduler.

The collection is made of intervals that are closed on the left and
open on the right (represented by the standard notation `[a, b)`).

These collections of intervals can be extended by `add`ing new
intervals accordingly while scheduling a basic block.

Unit tests are added to verify the possible configurations of
intervals, and the relative possibility of scheduling a new
instruction in these configurations. Specifically, the methods
`getFirstAvailableAtFromBottom` and `getFirstAvailableAtFromTop` are
tested to make sure that both bottom-up and top-down scheduling work
when tracking resource usage across the basic block with
`ResourceSegments`.

Note that the scheduler tracks resource usage with two methods:

1. counters (via `std::vector<unsigned> ReservedCycles;`);

2. intervals (via `std::map<unsigned, ResourceSegments> ReservedResourceSegments;`).

This patch can be considered a NFC test for existing scheduling models
because the tracking system that uses intervals is turned off by
default (field `bit EnableIntervals = false;` in the tablegen class
`SchedMachineModel`).

Reviewed By: andreadb

Differential Revision: https://reviews.llvm.org/D150312
llvm/include/llvm/CodeGen/MachineScheduler.h
llvm/include/llvm/CodeGen/TargetSchedule.h
llvm/include/llvm/MC/MCSchedule.h
llvm/include/llvm/Target/TargetSchedule.td
llvm/lib/CodeGen/MachineScheduler.cpp
llvm/lib/MC/MCSchedule.cpp
llvm/unittests/CodeGen/CMakeLists.txt
llvm/unittests/CodeGen/SchedBoundary.cpp [new file with mode: 0644]
llvm/utils/TableGen/SubtargetEmitter.cpp