summaryrefslogtreecommitdiffstats
path: root/llvm/cmake/modules
diff options
context:
space:
mode:
authorAyman Musa <ayman.musa@intel.com>2017-03-07 08:11:19 +0000
committerAyman Musa <ayman.musa@intel.com>2017-03-07 08:11:19 +0000
commit850fc977c807984bcc583e1dede4b9113f1657c3 (patch)
tree505434c15a722dc53875500f702e18af6c76eeae /llvm/cmake/modules
parentac5a2c43af283fba87887de67f05c547c9fd1778 (diff)
downloadbcm5719-llvm-850fc977c807984bcc583e1dede4b9113f1657c3.tar.gz
bcm5719-llvm-850fc977c807984bcc583e1dede4b9113f1657c3.zip
[X86][AVX512] Adding new LLVM TableGen backend which generates the EVEX2VEX compressing tables.
X86EvexToVex machine instruction pass compresses EVEX encoded instructions by replacing them with their identical VEX encoded instructions when possible. It uses manually supported 2 large tables that map the EVEX instructions to their VEX ideticals. This TableGen backend replaces the tables by automatically generating them. Differential Revision: https://reviews.llvm.org/D30451 llvm-svn: 297127
Diffstat (limited to 'llvm/cmake/modules')
-rw-r--r--llvm/cmake/modules/AddLLVM.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/cmake/modules/AddLLVM.cmake b/llvm/cmake/modules/AddLLVM.cmake
index 7f7608cff33..41375c61b9c 100644
--- a/llvm/cmake/modules/AddLLVM.cmake
+++ b/llvm/cmake/modules/AddLLVM.cmake
@@ -1213,7 +1213,8 @@ function(add_lit_testsuites project directory)
endif()
string(FIND ${lit_suite} Inputs is_inputs)
string(FIND ${lit_suite} Output is_output)
- if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1))
+ string(FIND ${lit_suite} .svn is_svn)
+ if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1 AND is_svn EQUAL -1))
continue()
endif()
OpenPOWER on IntegriCloud