[VE] Support vector register in inline asm

Support a vector register constraint in inline asm of clang.
Add a regression test also.

Reviewed By: simoll

Differential Revision: https://reviews.llvm.org/D91251
This commit is contained in:
Kazushi (Jam) Marukawa 2020-11-11 20:48:33 +09:00
parent 4e9af3d478
commit 6e0ae20f3b
2 changed files with 30 additions and 0 deletions

View File

@ -160,6 +160,13 @@ public:
bool validateAsmConstraint(const char *&Name,
TargetInfo::ConstraintInfo &Info) const override {
switch (*Name) {
default:
return false;
case 'v':
Info.setAllowsRegister();
return true;
}
return false;
}

View File

@ -0,0 +1,23 @@
// REQUIRES: ve-registered-target
// RUN: %clang_cc1 -triple ve-linux-gnu -emit-llvm -o - %s | FileCheck %s
void r(long v) {
long b;
asm("lea %0, 256(%1)"
: "=r"(b)
: "r"(v));
// CHECK: %1 = call i64 asm "lea $0, 256($1)", "=r,r"(i64 %0)
}
void v(char *ptr, char *ptr2) {
typedef double __vr __attribute__((__vector_size__(2048)));
__vr a;
asm("vld %0, 8, %1"
: "=v"(a)
: "r"(ptr));
asm("vst %0, 8, %1"
:
: "v"(a), "r"(ptr2));
// CHECK: %1 = call <256 x double> asm "vld $0, 8, $1", "=v,r"(i8* %0)
// CHECK: call void asm sideeffect "vst $0, 8, $1", "v,r"(<256 x double> %2, i8* %3)
}