[PATCH] D27627: Allow target to specify default address space for codegen

Yaxun Liu via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Dec 16 11:52:35 PST 2016


yaxunl added a comment.

In https://reviews.llvm.org/D27627#621533, @yaxunl wrote:

> In https://reviews.llvm.org/D27627#621473, @rjmccall wrote:
>
> > In https://reviews.llvm.org/D27627#619928, @yaxunl wrote:
> >
> > > > Because, notably, if you do that, then an attempt to pass &x as an int* will fail, which means this isn't really C++ anymore... and yet that appears to be exactly what you want.
> > >
> > > How about when generating alloca instruction, I insert addrspacecast to the default address space, then everything is in default address space.
> >
> >
> > My question is really about your language design.  You have multiple address spaces in the implementation, but you're (apparently?) pretending that they're all part of the same address space in the source language.  How is that expected to work?  Does the default address space embed all other address spaces?
>
>
> Yes the default address space embeds all other address spaces.


Since the default address space (generic address space 4) can represent all other address spaces, we want to use it uniformly. For any pointer which is not in the default address space, e.g. alloca, we want to cast it to default address space and then use it. Therefore, in the address space agnostic languages, we can assume everything is in the default address space. Our backend is able to handle load/store in the default address space.


https://reviews.llvm.org/D27627





More information about the cfe-commits mailing list