Skip to content

Commit

Permalink
PTX: Add some basic support for OpenCL address spaces
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141008 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
jholewinski committed Oct 3, 2011
1 parent 7035f31 commit 25bedca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/Basic/Targets.cpp
Expand Up @@ -878,6 +878,11 @@ class DarwinPPC64TargetInfo :
} // end anonymous namespace.

namespace {
static const unsigned PTXAddrSpaceMap[] = {
0, // opencl_global
4, // opencl_local
1 // opencl_constant
};
class PTXTargetInfo : public TargetInfo {
static const char * const GCCRegNames[];
static const Builtin::Info BuiltinInfo[];
Expand All @@ -886,6 +891,7 @@ namespace {
PTXTargetInfo(const std::string& triple) : TargetInfo(triple) {
TLSSupported = false;
LongWidth = LongAlign = 64;
AddrSpaceMap = &PTXAddrSpaceMap;
// Define available target features
// These must be defined in sorted order!
AvailableFeatures.push_back("compute10");
Expand Down

0 comments on commit 25bedca

Please sign in to comment.