[llvm] [MCA] Adding missing instructions in AArch64 Neoverse V1 tests (PR #128892)

Julien Villette via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 6 04:49:49 PST 2025


jvillette38 wrote:

> Thanks - I see part of the confusion was my fault as there isn't an existing test for bl, only for b and blr. The new test looks OK, although I would move it into the `Unconditional branch (immediate)` section (a label is just an immediate, after all).
> 
> For the new crc instructions added - did you intent to test the forwarding of crcs into one another? If not it might be better to make sure there is test coverage in V1-basic-instructions.s instead. Either way they are not the biggest deal and this looks good to me otherwise.

I moved bl <label> in unconditionnal branch (immediate section.
For crc32, other crc32 instructions were not in basic test, so I've just added in forwarding test... I did not found any dependence graph built in llvm-mca, so not easy to check forwarding between instructions:
- ``instr1 a, b, c``
- `instr2 d, a, e`

Where ``a`` should be forwarded to source operand 1 of ``instr2``. Do you confirm?

https://github.com/llvm/llvm-project/pull/128892


More information about the llvm-commits mailing list