summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/OpenCLOptions.h
blob: 4a629c97ff9b057d1d7efd3df219690e0866123f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//===--- OpenCLOptions.h ----------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
///
/// \file
/// \brief Defines the clang::OpenCLOptions class.
///
//===----------------------------------------------------------------------===//

#ifndef LLVM_CLANG_BASIC_OPENCLOPTIONS_H
#define LLVM_CLANG_BASIC_OPENCLOPTIONS_H

namespace clang {

/// \brief OpenCL supported extensions and optional core features
class OpenCLOptions {
public:
#define OPENCLEXT(nm) unsigned nm : 1;
#include "clang/Basic/OpenCLExtensions.def"

  OpenCLOptions() {
#define OPENCLEXT(nm)   nm = 0;
#include "clang/Basic/OpenCLExtensions.def"
  }

  // Enable all options.
  void setAll() {
#define OPENCLEXT(nm)   nm = 1;
#include "clang/Basic/OpenCLExtensions.def"
  }

  // Is supported with OpenCL version \p OCLVer.
#define OPENCLEXT_INTERNAL(Ext, Avail, ...) \
  bool is_##Ext##_supported(unsigned OCLVer) const { \
    return Ext && OCLVer >= Avail; \
  }
#include "clang/Basic/OpenCLExtensions.def"


  // Is supported OpenCL extension with OpenCL version \p OCLVer.
  // For supported optional core feature, return false.
#define OPENCLEXT_INTERNAL(Ext, Avail, Core) \
  bool is_##Ext##_supported_extension(unsigned CLVer) const { \
    return is_##Ext##_supported(CLVer) && (Core == ~0U || CLVer < Core); \
  }
#include "clang/Basic/OpenCLExtensions.def"

  // Is supported OpenCL core features with OpenCL version \p OCLVer.
  // For supported extension, return false.
#define OPENCLEXT_INTERNAL(Ext, Avail, Core) \
  bool is_##Ext##_supported_core(unsigned CLVer) const { \
    return is_##Ext##_supported(CLVer) && Core != ~0U && CLVer >= Core; \
  }
#include "clang/Basic/OpenCLExtensions.def"

};

}  // end namespace clang

#endif