From fef3036d3721a9a6a234c54786e3b8bf3d2d0f93 Mon Sep 17 00:00:00 2001 From: Martin Elshuber Date: Mon, 19 Nov 2018 14:26:10 +0000 Subject: Subject: [PATCH] [CodeGen] Add pass to combine interleaved loads. This patch defines an interleaved-load-combine pass. The pass searches for ShuffleVector instructions that represent interleaved loads. Matches are converted such that they will be captured by the InterleavedAccessPass. The pass extends LLVMs capabilities to use target specific instruction selection of interleaved load patterns (e.g.: ld4 on Aarch64 architectures). Differential Revision: https://reviews.llvm.org/D52653 llvm-svn: 347208 --- llvm/lib/CodeGen/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'llvm/lib/CodeGen/CMakeLists.txt') diff --git a/llvm/lib/CodeGen/CMakeLists.txt b/llvm/lib/CodeGen/CMakeLists.txt index fbdc511eea7..6a091ed9462 100644 --- a/llvm/lib/CodeGen/CMakeLists.txt +++ b/llvm/lib/CodeGen/CMakeLists.txt @@ -39,6 +39,7 @@ add_llvm_library(LLVMCodeGen InlineSpiller.cpp InterferenceCache.cpp InterleavedAccessPass.cpp + InterleavedLoadCombinePass.cpp IntrinsicLowering.cpp LatencyPriorityQueue.cpp LazyMachineBlockFrequencyInfo.cpp -- cgit v1.2.3