search for: ompclause

Displaying 3 results from an estimated 3 matches for "ompclause".

2012 Oct 10
0
[LLVMdev] [cfe-dev] OpenMP support in CLANG: A proposal
...hich represent OpenMP directives or clauses publicly derive from the statement AST base class namely ?class Stmt?. #. There will be a separate AST class implementation for each OpenMP directive and clause. #. There will be an additional AST class node implementation, called ?class OmpClause?. OmpClause AST node holds other AST clause nodes as its children. However, note that the same clauses which appear more than once in an OpenMP directive statement are represented as a linked list. This representation makes tree traversal easier for few particular se...
2012 Oct 10
2
[LLVMdev] [cfe-dev] OpenMP support in CLANG: A proposal
On Wed, Oct 10, 2012 at 5:40 AM, Eli Friedman <eli.friedman at gmail.com>wrote: > On Tue, Oct 9, 2012 at 4:37 AM, Mahesha HS <mahesha.llvm at gmail.com> wrote: > > Hello All, > > > > We would like to make a proposal to support OpenMP in CLANG. The goal of > > this effort is to provide support for syntax > > > > analysis (parsing), semantic
2012 Oct 16
1
[LLVMdev] [cfe-dev] OpenMP support in CLANG: A proposal
Hi Eli, Attached is the next patch in the line. This patch (class_pragma_omp_handler_support.patch) contains the implementation of the class "class PragmaOmpHandler". I also attached the test case (openmp_syntax_test.c). This test case is actually to test the syntactically legal simple OpenMP constructs. However, we can *really* test it only after submitting the next two patches - one