<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<p>Hi Jon,</p>
<p>There's currently no way to qualify a method with an arbitrary address space. There is a work-in-progress patch on it:</p>
<p><a class="moz-txt-link-freetext" href="https://reviews.llvm.org/D57464">https://reviews.llvm.org/D57464</a></p>
<p>and I have an experimental local patch that tries to alleviate some issues with the patch above, but it doesn't really work. Parsing this pattern properly is unfortunately rather difficult. There's also no real syntax support in C++ for qualified constructors/destructors,
 which is another problem.<br>
</p>
<p>/ Bevin<br>
</p>
<div class="moz-cite-prefix">On 2020-01-22 04:51, Jon Chesterfield via cfe-dev wrote:<br>
</div>
<blockquote type="cite" cite="mid:CAOUYtQBctOWShRp4z_bAfjfv9cJpsi+7_ANOR3RT_9CwzK8iJQ@mail.gmail.com">
<div dir="ltr">C++ source, compiled as clang++ --target=amdgcn-amd-amdhsa
<div><br>
</div>
<div>struct t<br>
{<br>
  int v;<br>
};
<div>__attribute__((address_space(3))) t d;<br>
<div><br>
</div>
</div>
<div>// error: no matching constructor for initialization of '__attribute__((address_space(3)))</div>
<div><br>
</div>
<div>with  t() : v(0) {}, same error</div>
<div><br>
</div>
<div>with  t() __attribute__((address_space(3))) : v(0) {},</div>
<div>// error: function type may not be qualified with an address space</div>
<div><br>
</div>
<div>How should I be spelling this? I'm essentially trying to replicate cuda's __shared__. Ideally I'd like implicit conversions to a and from an int which is not address space qualified, but right now I'm stuck on the constructor.</div>
</div>
<div><br>
</div>
<div>Thanks,</div>
<div><br>
</div>
<div>Jon</div>
</div>
<br>
<fieldset class="mimeAttachmentHeader"></fieldset>
<pre class="moz-quote-pre" wrap="">_______________________________________________
cfe-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>
<a class="moz-txt-link-freetext" href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a>
</pre>
</blockquote>
</body>
</html>