forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RISCV] Add support for inline asm constraint vd (llvm#111653)
It constrains vector registers excluding v0. Refer to https://gcc.gnu.org/onlinedocs/gcc/Machine-Constraints.html RISC-V part. This patch also adds a testcase for constraints vr, vd and vm.
- Loading branch information
1 parent
7feb5d6
commit 07c6fd7
Showing
4 changed files
with
89 additions
and
2 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
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,66 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py | ||
; RUN: llc -mtriple=riscv32 -mattr=+v -verify-machineinstrs < %s \ | ||
; RUN: | FileCheck -check-prefix=RV32I %s | ||
; RUN: llc -mtriple=riscv64 -mattr=+v -verify-machineinstrs < %s \ | ||
; RUN: | FileCheck -check-prefix=RV64I %s | ||
|
||
define <vscale x 1 x i8> @constraint_vr(<vscale x 1 x i8> %0, <vscale x 1 x i8> %1) nounwind { | ||
; RV32I-LABEL: constraint_vr: | ||
; RV32I: # %bb.0: | ||
; RV32I-NEXT: #APP | ||
; RV32I-NEXT: vadd.vv v8, v8, v9 | ||
; RV32I-NEXT: #NO_APP | ||
; RV32I-NEXT: ret | ||
; | ||
; RV64I-LABEL: constraint_vr: | ||
; RV64I: # %bb.0: | ||
; RV64I-NEXT: #APP | ||
; RV64I-NEXT: vadd.vv v8, v8, v9 | ||
; RV64I-NEXT: #NO_APP | ||
; RV64I-NEXT: ret | ||
%a = tail call <vscale x 1 x i8> asm "vadd.vv $0, $1, $2", "=^vr,^vr,^vr"( | ||
<vscale x 1 x i8> %0, <vscale x 1 x i8> %1) | ||
ret <vscale x 1 x i8> %a | ||
} | ||
|
||
define <vscale x 1 x i8> @constraint_vd(<vscale x 1 x i8> %0, <vscale x 1 x i8> %1) nounwind { | ||
; RV32I-LABEL: constraint_vd: | ||
; RV32I: # %bb.0: | ||
; RV32I-NEXT: #APP | ||
; RV32I-NEXT: vadd.vv v8, v8, v9 | ||
; RV32I-NEXT: #NO_APP | ||
; RV32I-NEXT: ret | ||
; | ||
; RV64I-LABEL: constraint_vd: | ||
; RV64I: # %bb.0: | ||
; RV64I-NEXT: #APP | ||
; RV64I-NEXT: vadd.vv v8, v8, v9 | ||
; RV64I-NEXT: #NO_APP | ||
; RV64I-NEXT: ret | ||
%a = tail call <vscale x 1 x i8> asm "vadd.vv $0, $1, $2", "=^vd,^vr,^vr"( | ||
<vscale x 1 x i8> %0, <vscale x 1 x i8> %1) | ||
ret <vscale x 1 x i8> %a | ||
} | ||
|
||
define <vscale x 1 x i1> @constraint_vm(<vscale x 1 x i1> %0, <vscale x 1 x i1> %1) nounwind { | ||
; RV32I-LABEL: constraint_vm: | ||
; RV32I: # %bb.0: | ||
; RV32I-NEXT: vmv1r.v v9, v0 | ||
; RV32I-NEXT: vmv1r.v v0, v8 | ||
; RV32I-NEXT: #APP | ||
; RV32I-NEXT: vadd.vv v0, v9, v0 | ||
; RV32I-NEXT: #NO_APP | ||
; RV32I-NEXT: ret | ||
; | ||
; RV64I-LABEL: constraint_vm: | ||
; RV64I: # %bb.0: | ||
; RV64I-NEXT: vmv1r.v v9, v0 | ||
; RV64I-NEXT: vmv1r.v v0, v8 | ||
; RV64I-NEXT: #APP | ||
; RV64I-NEXT: vadd.vv v0, v9, v0 | ||
; RV64I-NEXT: #NO_APP | ||
; RV64I-NEXT: ret | ||
%a = tail call <vscale x 1 x i1> asm "vadd.vv $0, $1, $2", "=^vr,^vr,^vm"( | ||
<vscale x 1 x i1> %0, <vscale x 1 x i1> %1) | ||
ret <vscale x 1 x i1> %a | ||
} |