forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RISCV] Add scheduling info for Zcmp (llvm#82719)
The order of the entries in the list is: outs, ins, Defs, Uses, implicit-defs, implicit uses, where the last two are added programatically during codegen depending on the registers saved/restored and are not described in the TD files.
- Loading branch information
Showing
2 changed files
with
73 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py UTC_ARGS: --version 4 | ||
# RUN: llc -mtriple=riscv32 -verify-machineinstrs -run-pass=riscv-move-merge -simplify-mir -o - %s | FileCheck -check-prefixes=CHECK32I %s | ||
# RUN: llc -mtriple=riscv32 -mattr=+zcmp -verify-machineinstrs -run-pass=riscv-move-merge -simplify-mir -o - %s | FileCheck -check-prefixes=CHECK32ZCMP %s | ||
# RUN: llc -mtriple=riscv64 -verify-machineinstrs -run-pass=riscv-move-merge -simplify-mir -o - %s | FileCheck -check-prefixes=CHECK64I %s | ||
# RUN: llc -mtriple=riscv64 -mattr=+zcmp -verify-machineinstrs -run-pass=riscv-move-merge -simplify-mir -o - %s | FileCheck -check-prefixes=CHECK64ZCMP %s | ||
--- | ||
name: zcmp_mv | ||
tracksRegLiveness: true | ||
body: | | ||
bb.0: | ||
liveins: $x11, $x10 | ||
; CHECK32I-LABEL: name: zcmp_mv | ||
; CHECK32I: liveins: $x11, $x10 | ||
; CHECK32I-NEXT: {{ $}} | ||
; CHECK32I-NEXT: $x8 = ADDI $x11, 0 | ||
; CHECK32I-NEXT: $x9 = ADDI $x10, 0 | ||
; CHECK32I-NEXT: $x10 = ADDI killed $x9, 0 | ||
; CHECK32I-NEXT: $x11 = ADDI $x8, 0 | ||
; CHECK32I-NEXT: PseudoRET | ||
; | ||
; CHECK32ZCMP-LABEL: name: zcmp_mv | ||
; CHECK32ZCMP: liveins: $x11, $x10 | ||
; CHECK32ZCMP-NEXT: {{ $}} | ||
; CHECK32ZCMP-NEXT: $x9, $x8 = CM_MVSA01 implicit $x10, implicit $x11 | ||
; CHECK32ZCMP-NEXT: CM_MVA01S killed $x9, $x8, implicit-def $x10, implicit-def $x11 | ||
; CHECK32ZCMP-NEXT: PseudoRET | ||
; | ||
; CHECK64I-LABEL: name: zcmp_mv | ||
; CHECK64I: liveins: $x11, $x10 | ||
; CHECK64I-NEXT: {{ $}} | ||
; CHECK64I-NEXT: $x8 = ADDI $x11, 0 | ||
; CHECK64I-NEXT: $x9 = ADDI $x10, 0 | ||
; CHECK64I-NEXT: $x10 = ADDI killed $x9, 0 | ||
; CHECK64I-NEXT: $x11 = ADDI $x8, 0 | ||
; CHECK64I-NEXT: PseudoRET | ||
; | ||
; CHECK64ZCMP-LABEL: name: zcmp_mv | ||
; CHECK64ZCMP: liveins: $x11, $x10 | ||
; CHECK64ZCMP-NEXT: {{ $}} | ||
; CHECK64ZCMP-NEXT: $x9, $x8 = CM_MVSA01 implicit $x10, implicit $x11 | ||
; CHECK64ZCMP-NEXT: CM_MVA01S killed $x9, $x8, implicit-def $x10, implicit-def $x11 | ||
; CHECK64ZCMP-NEXT: PseudoRET | ||
$x8 = ADDI $x11, 0 | ||
$x9 = ADDI $x10, 0 | ||
$x10 = ADDI killed $x9, 0 | ||
$x11 = ADDI $x8, 0 | ||
PseudoRET | ||
... |