2013-12-10 03:04:43 +08:00
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
|
|
Support
|
|
|
|
)
|
|
|
|
|
2020-07-17 06:15:51 +08:00
|
|
|
# By default MSVC has a 2^16 limit on the number of sections in an object
|
|
|
|
# file, and Transforms.cpp needs more than that.
|
|
|
|
if (MSVC)
|
|
|
|
set_source_files_properties(Transforms.cpp PROPERTIES COMPILE_FLAGS /bigobj)
|
|
|
|
endif()
|
|
|
|
|
2011-06-16 07:25:17 +08:00
|
|
|
add_clang_library(clangARCMigrate
|
|
|
|
ARCMT.cpp
|
2011-06-17 00:17:05 +08:00
|
|
|
ARCMTActions.cpp
|
2011-06-16 07:25:17 +08:00
|
|
|
FileRemapper.cpp
|
2012-03-07 04:06:33 +08:00
|
|
|
ObjCMT.cpp
|
2011-07-20 01:26:28 +08:00
|
|
|
PlistReporter.cpp
|
2011-07-18 15:44:45 +08:00
|
|
|
TransAPIUses.cpp
|
2011-06-22 04:20:39 +08:00
|
|
|
TransARCAssign.cpp
|
|
|
|
TransAutoreleasePool.cpp
|
|
|
|
TransBlockObjCVariable.cpp
|
2011-06-22 06:16:17 +08:00
|
|
|
TransEmptyStatementsAndDealloc.cpp
|
2011-11-07 02:58:03 +08:00
|
|
|
TransGCAttrs.cpp
|
2011-11-04 23:58:08 +08:00
|
|
|
TransGCCalls.cpp
|
2011-06-22 04:20:39 +08:00
|
|
|
TransProperties.cpp
|
2013-01-05 02:52:29 +08:00
|
|
|
TransProtectedScope.cpp
|
2011-06-22 04:20:39 +08:00
|
|
|
TransRetainReleaseDealloc.cpp
|
|
|
|
TransUnbridgedCasts.cpp
|
|
|
|
TransUnusedInitDelegate.cpp
|
|
|
|
TransZeroOutPropsInDealloc.cpp
|
2013-01-05 03:04:47 +08:00
|
|
|
TransformActions.cpp
|
|
|
|
Transforms.cpp
|
2011-06-16 07:25:17 +08:00
|
|
|
|
2014-02-26 14:41:29 +08:00
|
|
|
LINK_LIBS
|
2012-06-21 09:30:21 +08:00
|
|
|
clangAST
|
2013-12-10 03:04:43 +08:00
|
|
|
clangAnalysis
|
|
|
|
clangBasic
|
|
|
|
clangEdit
|
2012-06-21 09:30:21 +08:00
|
|
|
clangFrontend
|
2013-12-10 03:04:43 +08:00
|
|
|
clangLex
|
2014-07-17 00:48:33 +08:00
|
|
|
clangRewrite
|
2013-12-10 03:04:43 +08:00
|
|
|
clangSema
|
|
|
|
clangSerialization
|
[openmp] Base of tablegen generated OpenMP common declaration
Summary:
As discussed previously when landing patch for OpenMP in Flang, the idea is
to share common part of the OpenMP declaration between the different Frontend.
While doing this it was thought that moving to tablegen instead of Macros will also
give a cleaner and more powerful way of generating these declaration.
This first part of a future series of patches is setting up the base .td file for
DirectiveLanguage as well as the OpenMP version of it. The base file is meant to
be used by other directive language such as OpenACC.
In this first patch, the Directive and Clause enums are generated with tablegen
instead of the macros on OMPConstants.h. The next pacth will extend this
to other enum and move the Flang frontend to use it.
Reviewers: jdoerfert, DavidTruby, fghanim, ABataev, jdenny, hfinkel, jhuber6, kiranchandramohan, kiranktp
Reviewed By: jdoerfert, jdenny
Subscribers: arphaman, martong, cfe-commits, mgorny, yaxunl, hiraditya, guansong, jfb, sstefan1, aaron.ballman, llvm-commits
Tags: #llvm, #openmp, #clang
Differential Revision: https://reviews.llvm.org/D81736
2020-06-23 21:29:50 +08:00
|
|
|
|
|
|
|
DEPENDS
|
|
|
|
omp_gen
|
2012-06-21 09:30:21 +08:00
|
|
|
)
|