From c6d149249952dca405a25fd043da864ddf71301f Mon Sep 17 00:00:00 2001 From: Sven van Haastregt Date: Thu, 17 Oct 2019 12:56:02 +0000 Subject: [OpenCL] Add doc to describe OpenCL support The idea of this page is to document work in progress functionality and also describe the plan of future development work. Patch by Anastasia Stulova. Differential Revision: https://reviews.llvm.org/D69072 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@375111 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/OpenCLSupport.rst | 47 +++++++++++++++++++++++++++++++++++++++++++++++ docs/index.rst | 1 + 2 files changed, 48 insertions(+) create mode 100644 docs/OpenCLSupport.rst diff --git a/docs/OpenCLSupport.rst b/docs/OpenCLSupport.rst new file mode 100644 index 0000000000..62ba890c3a --- /dev/null +++ b/docs/OpenCLSupport.rst @@ -0,0 +1,47 @@ +.. raw:: html + + + +.. role:: none +.. role:: partial +.. role:: good + +.. contents:: + :local: + +================== +OpenCL Support +================== + +Clang fully supports all OpenCL C versions from 1.1 to 2.0. + +Please refer to `Bugzilla +`_ +for the most up to date bug reports. + + +C++ for OpenCL Implementation Status +==================================== + +Bugzilla bugs for this functionality are typically prefixed +with '[C++]'. + +Differences to OpenCL C +----------------------- + +TODO! + +Missing features or with limited support +---------------------------------------- + +- Use of ObjC blocks is disabled. + +- Global destructor invocation is not generated correctly. + +- Initialization of objects in `__constant` address spaces is not guaranteed to work. + +- `addrspace_cast` operator is not supported. diff --git a/docs/index.rst b/docs/index.rst index e6dbecf5b9..493f736f2b 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -41,6 +41,7 @@ Using Clang as a Compiler SourceBasedCodeCoverage Modules MSVCCompatibility + OpenCLSupport OpenMPSupport ThinLTO CommandGuide/index -- cgit v1.2.1