<div dir="ltr">Hi Andrew,<div><br></div><div>Can you please provide a reference to the relevant part of the OpenCL specification describing this feature? This sounds like an extremely surprising and problematic language design choice, and I'd like to make sure we're not misinterpreting the specification.</div><div><br></div><div>(Some specific things that are unclear here: Where can GAS pointers be used? Can I put them in a struct? Can I make an array of them? Are all array elements required to point to the same address space? Are they mutable? Can I assign pointers from multiple different address spaces to the same GAS pointer? Must functions taking GAS pointers be defined in the same translation unit as the call? Can different GAS parameters resolve to different address spaces? Can you take the address of a function taking GAS pointers?)<br><br><div class="gmail_quote"><div dir="ltr">On Thu, 6 Dec 2018 at 11:07, Finkel, Hal J. via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi, Andrew,<br>
<br>
I'd like to fork this part of the thread and move it to cfe-dev. My best<br>
advice is to handle this in Clang, not LLVM, and I've cc'd Richard and<br>
John for their advice. More inline...<br>
<br>
On 12/6/18 10:46 AM, Andrew Savonichev wrote:<br>
> ...<br>
>>>>>> Can you say more about the use case?<br>
>>>>> OpenCL C has a notion of Generic Address Space (GAS), allowing you to<br>
>>>>> cast a pointer from any (named) address space to a GAS pointer. Then you<br>
>>>>> can use this GAS pointer instead of a named AS pointer. Compiler is<br>
>>>>> responsible to infer the original address space of a GAS pointer when it<br>
>>>>> is actually used (for load/store), otherwise this is a compilation<br>
>>>>> error.<br>
>>>> That seems scary :-) -- Can this inference not be done syntactically in<br>
>>>> Clang?<br>
>>>><br>
>>> From a frontend perspective, a GAS pointer is just a pointer:<br>
>>><br>
>>>   void foo(int *p, int *q) { *p = 42; *q = 43; };<br>
>>><br>
>>> Until Clang reaches a call site, it has no idea about real address<br>
>>> spaces of `p' and `q'. When we do reach a call site, `foo()' can already<br>
>>> be CodeGen'ed, so we can't really change anything.<br>
>> Is this supposed to work like template instantiation? Are you guaranteed<br>
>> to only get one (unique) set of address spaces for the function<br>
>> arguments?<br>
>><br>
> Yes, just like in C++ template, if `foo' is called with different sets<br>
> of address spaces, a compiler have to create different function<br>
> instantiations for each set.<br>
<br>
I think that you should handle this in Clang using TreeTransform, in a<br>
sense, just like C++ template instantiation. See<br>
lib/Sema/TreeTransform.h, and there are a number of examples in lib/Sema<br>
of transforms using this infrastructure. Using TreeTransform you would<br>
create variants of each function with the right address spaces, based on<br>
usage, and then emit them all during CodeGen. because you'd do this<br>
prior to code generation, you don't need to worry about the emission<br>
ordering.<br>
<br>
 -Hal<br>
<br>
><br>
>> We can change the order that functions are emitted in Clang if necessary.<br>
>><br>
> I haven't thought this is actually configurable. I'd really appreciate<br>
> if you can give me a pointer on how to do this.<br>
><br>
><br>
><br>
-- <br>
Hal Finkel<br>
Lead, Compiler Technology and Programming Languages<br>
Leadership Computing Facility<br>
Argonne National Laboratory<br>
<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
</blockquote></div></div></div>