From 850fc977c807984bcc583e1dede4b9113f1657c3 Mon Sep 17 00:00:00 2001 From: Ayman Musa Date: Tue, 7 Mar 2017 08:11:19 +0000 Subject: [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 --- llvm/cmake/modules/AddLLVM.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'llvm/cmake/modules/AddLLVM.cmake') 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() -- cgit v1.2.3