[llvm] [MCA] New option -scheduling-info (PR #130574)
Julien Villette via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 02:13:14 PDT 2025
jvillette38 wrote:
> Agner Fog's instruction_tables document
Thank you all for the comments.
I didn't know this document.
In fact, this patch match with tables entries seen in it:
| Instruction | Operands | Ops | Latency | Reciprocal throughput | Execution unit | Notes |
|-------------|------------|------|----------|--------------------------|-----------------|--------|
| MOV | r,r | 1 | 1 | 1/3 | ALU |
| MOV | r,i | 1 | 1 | 1/3 | ALU |
Some of additional information are in this patch:
- `Instruction + operands`: LLVM Opcode Name.
- Execution unit
Adding bypass latency.
I am going to write these informations only when -instruction-tables is on.
https://github.com/llvm/llvm-project/pull/130574
More information about the llvm-commits
mailing list