|
|
|||
File indexing completed on 2026-05-10 08:44:32
0001 //===---------------- NVPTXAddrSpace.h -------------------------*- C++ -*-===// 0002 // 0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 0004 // See https://llvm.org/LICENSE.txt for license information. 0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 0006 // 0007 //===----------------------------------------------------------------------===// 0008 // 0009 /// \file 0010 /// NVPTX address space definition 0011 /// 0012 // 0013 //===----------------------------------------------------------------------===// 0014 0015 #ifndef LLVM_SUPPORT_NVPTXADDRSPACE_H 0016 #define LLVM_SUPPORT_NVPTXADDRSPACE_H 0017 0018 namespace llvm { 0019 namespace NVPTXAS { 0020 enum AddressSpace : unsigned { 0021 ADDRESS_SPACE_GENERIC = 0, 0022 ADDRESS_SPACE_GLOBAL = 1, 0023 ADDRESS_SPACE_SHARED = 3, 0024 ADDRESS_SPACE_CONST = 4, 0025 ADDRESS_SPACE_LOCAL = 5, 0026 0027 ADDRESS_SPACE_PARAM = 101, 0028 }; 0029 } // end namespace NVPTXAS 0030 0031 } // end namespace llvm 0032 0033 #endif // LLVM_SUPPORT_NVPTXADDRSPACE_H
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|