User Details
- User Since
- Aug 18 2022, 1:08 PM (57 w, 4 d)
Today
Wed, Sep 20
Fri, Sep 15
Thu, Sep 14
Wed, Sep 6
Tue, Sep 5
I wonder if it would be a good idea to add a function getSEW(MachineInstr) which gets the SEW from the Opcode or from the Operand, depending on how the pseudo tracks SEW. This indirection would remove the complication of having inconsistent pseudos. WDYT?
Fri, Sep 1
I've added a simple test. I plan on removing this test in the future with a set
of tests that shows behavior all instructions for all different LMUL and SEW
pairs.
Thu, Aug 31
It looks like the InversePseudo table was only included for MCA directory. I wonder if this led to it only being a part of the llvm-mca binary, and not part of tools that do not depend on llvm-mca (such as llc). Could you check this by comparing the size of llc binary? It should have gotten larger after this change if it had not previously included the InversePseudo table.
I removed test case as I plan on adding one that is more complete and shows the intended behavior more effectivley.
Wed, Aug 30
Add reduction instr between vsetvlis
The reduction formula has a bug in it, and I plan to fix it in a follow up patch.
I am super pumped to hear more about MDL on our call later today. The thought that you've given to being able to model complex behavior is exciting!
Tue, Aug 29
Mon, Aug 28
I'm not very familiar with how isCommutable works, but this change looks like a good idea as long as isCommutable only refers to the $rs2 and $rs1 operands, and does not say anything about commutability of $carry, $vl, or $sew.
Aug 24 2023
SystemZ Cycles -> ReleaseAtCycle
Rebase.
I am failing build and will look into it. I built all targets locally and had no problem, but perhaps I missed something.
Aug 23 2023
It is spelled Acquire, not Aquire... (:embarrased:)
Aug 22 2023
According to RecurKind, an AnyOf reduction has the form select(icmp(), x, y) where one of (x,y) are loop invariant. In RecurrenceDescriptor::isAnyOfPattern there is the additional condition that both (x, y) are loop invariant. (switching between two variables). The functions in your test case satisfy the first definition of AnyOf but not the second IIUC. Is there a reason why the two definitions of AnyOf are conflicting?
LGTM.
Aug 21 2023
Aug 16 2023
int rdx = a; for (i = 0; i < n; ++i) if(rdx != 3) rdx = b;
is equivalent to
int rdx = a != 3 ? b : a;
Aug 14 2023
LGTM. Please wait to merge this and the type promotion patch together.
Yes, I agree with merging these patches at the same time.
But for the case regalloc-last-chance-recoloring-failure.ll, it uses the intirinsic @llvm.riscv.vfwsub.w.nxv16f32.nxv16f16.i64, this intrinsic is not supported in zvfhmin, so cannot selected is the excepted action. By example we also cannot select @llvm.riscv.vmulh.nxv1i64.i64 for ZVE64D, and any vector intrinsic for no V enable. I don't think we should do promotion for intrinsic too.
Actually target specific intrinsics basiclly comes from clang rvv-builtin. In https://reviews.llvm.org/D150253, any use of unsuportted builtin would cause a clang error. So there is no actual case will generate unsupportted intrinsic.
Add sanity check
I had reverted because of typo Mull which was supposed to be Mul. I have since recommitted with the fix.
I think that this patch and https://reviews.llvm.org/D153848 need to be committed at the same time. This will ensure that if the zvfhmin option is enabled, then we can codegen all LLVM IR.
Aug 13 2023
Aug 11 2023
Aug 10 2023
Make getMinDepDistBytes private to DepChecker.
Aug 7 2023
ping
Aug 1 2023
If I add RUN line with zvfhmin instead of zvfh llvm/test/CodeGen/RISCV/rvv/vfwnmacc-vp.ll, the compiler gives LLVM ERROR: Cannot select: t31: nxv1f32 = RISCVISD::VFWNMADD_VL t2, t4, t6, t8, t13, followed by trace. Probably need to check for zvfh in performVFMADD_VLCombine? Also maybe need to check in other functions like performFADDSUB_VLCombine?
Abandoning because https://reviews.llvm.org/D156158 clarification of semantics makes this a non-issue.
Clarify how MinDepDistBytes intereacts with MaxSafeVectorWidthInBits
After taking a closer look, I can make all the changes needed in D150706.
Jul 27 2023
Last update had wrong diff.
Jul 26 2023
This was committed in cdffaac6ad2e0f9fcbe0ee75a5d3d78fea91cfa5. The revision didn't get appended to the commit, so this wasn't closed automatically.
Remove cast.
- Fix unneeded removal
- Rename ReadVMergeOp to mergeOp
- Rebase