[llvm] [MIPS] Add Scheduling model for MIPS i6400 and i6500 CPUs (PR #132704)
Min-Yih Hsu via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 13:54:41 PDT 2025
================
@@ -0,0 +1,93 @@
+# NOTE: Assertions have been autogenerated by utils/update_mca_test_checks.py
+# RUN: llvm-mca -mtriple=mips64el -mcpu=i6400 -timeline -iterations=1 < %s | FileCheck %s
+ .abicalls
+ .text
+ .globl i6400
+ .p2align 3
+ .type i6400, at function
+ .ent i6400
+i6400:
+ .set noat
+ lw $1, 0($sp)
+ lw $2, 8($sp)
+ move $3, $1
+ mul $3, $2, $3
+ sw $3, 8($sp)
+ div $2, $1
+ sw $2, 0($sp)
----------------
mshockwave wrote:
Could you add more tests on simple integer and floating point arithmetics instructions, as well as some vector instructions (they're called MSA?).
https://github.com/llvm/llvm-project/pull/132704
More information about the llvm-commits
mailing list