This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
//===--- AddressSpaces.h - Language-specific address spaces -----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// \brief Provides definitions for the various language-specific address
|
|
/// spaces.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_BASIC_ADDRESSSPACES_H
|
|
#define LLVM_CLANG_BASIC_ADDRESSSPACES_H
|
|
|
|
namespace clang {
|
|
|
|
namespace LangAS {
|
|
|
|
/// \brief Defines the set of possible language-specific address spaces.
|
|
///
|
|
/// This uses a high starting offset so as not to conflict with any address
|
|
/// space used by a target.
|
|
enum ID {
|
|
Offset = 0xFFFF00,
|
|
|
|
opencl_global = Offset,
|
|
opencl_local,
|
|
opencl_constant,
|
|
opencl_generic,
|
|
|
|
cuda_device,
|
|
cuda_constant,
|
|
cuda_shared,
|
|
|
|
Last,
|
|
Count = Last-Offset
|
|
};
|
|
|
|
/// The type of a lookup table which maps from language-specific address spaces
|
|
/// to target-specific ones.
|
|
typedef unsigned Map[Count];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|