[llvm] [MCA] Extend -instruction-tables option with verbosity levels (PR #130574)
Julien Villette via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 09:13:47 PDT 2025
================
@@ -141,6 +241,33 @@ void InstructionInfoView::collectData(
IIVDEntry.mayLoad = MCDesc.mayLoad();
IIVDEntry.mayStore = MCDesc.mayStore();
IIVDEntry.hasUnmodeledSideEffects = MCDesc.hasUnmodeledSideEffects();
+
+ if (PrintFullInfo) {
+ // Get latency with bypass
+ IIVDEntry.Bypass =
+ IIVDEntry.Latency - MCSchedModel::getBypassDelayCycles(STI, SCDesc);
+ IIVDEntry.OpcodeName = MCII.getName(Inst.getOpcode());
+ raw_string_ostream TempStream(IIVDEntry.Resources);
+ const MCWriteProcResEntry *Index = STI.getWriteProcResBegin(&SCDesc);
+ const MCWriteProcResEntry *Last = STI.getWriteProcResEnd(&SCDesc);
+ auto Sep = "";
+ for (; Index != Last; ++Index) {
+ if (!Index->ReleaseAtCycle)
+ continue;
+ const MCProcResourceDesc *MCProc =
+ SM.getProcResource(Index->ProcResourceIdx);
+ if (Index->ReleaseAtCycle > 1) {
----------------
jvillette38 wrote:
Printed value between square brackets is used to identify the number of cycles the resource is used by the instruction and can be used to compute throughput.
https://github.com/llvm/llvm-project/blob/main/llvm/lib/MC/MCSchedule.cpp#L97 shows that `AcquireAtCycle` is not considered when computing throughput.
Probably have to print also this information when printing resources. For example: `<resource>[<AcquireAtCycle>,<ReleaseAtCycle>]`.
https://github.com/llvm/llvm-project/pull/130574
More information about the llvm-commits
mailing list