From: Tom Stellard Date: Thu, 19 Nov 2015 22:11:58 +0000 (+0000) Subject: AMDGPU: Add support for 's' and 'v' asm constraints X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6306f491e5cc9f3bf1aa44f79d0105a79a7f5e81;p=clang AMDGPU: Add support for 's' and 'v' asm constraints Summary: 's' is used to specify sgprs and 'v' is used to specify vgprs. Reviewers: arsenm, echristo Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D14307 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253610 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 648ef4b3d2..697a9f232e 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -1826,8 +1826,15 @@ public: } bool validateAsmConstraint(const char *&Name, - TargetInfo::ConstraintInfo &info) const override { - return true; + TargetInfo::ConstraintInfo &Info) const override { + switch (*Name) { + default: break; + case 'v': // vgpr + case 's': // sgpr + Info.setAllowsRegister(); + return true; + } + return false; } ArrayRef getTargetBuiltins() const override { diff --git a/test/Sema/inline-asm-validate-amdgpu.cl b/test/Sema/inline-asm-validate-amdgpu.cl new file mode 100644 index 0000000000..d60b09e0ce --- /dev/null +++ b/test/Sema/inline-asm-validate-amdgpu.cl @@ -0,0 +1,14 @@ +// REQUIRES: amdgpu-registered-target +// RUN: %clang_cc1 -x cl -triple amdgcn -fsyntax-only %s +// expected-no-diagnostics + +kernel void test () { + + int sgpr = 0, vgpr = 0, imm = 0; + + // sgpr constraints + __asm__ ("s_mov_b32 %0, %1" : "=s" (sgpr) : "s" (imm) : ); + + // vgpr constraints + __asm__ ("v_mov_b32 %0, %1" : "=v" (vgpr) : "v" (imm) : ); +}