llvm-project/llvm
Craig Topper b9376690a0 [X86] Improve lowering of v2i64 sign bit tests on pre-sse4.2 targets
Without sse4.2 a v2i64 setlt needs to expand into a pcmpgtd, pcmpeqd, 3 shuffles, and 2 logic ops. But if we're only interested in the sign bit of the i64 elements, we can just use one pcmpgtd and shuffle the odd elements to the even elements.

Differential Revision: https://reviews.llvm.org/D72302
2020-01-07 11:22:03 -08:00
..
benchmarks
bindings [NFC] Fix trivial typos in comments 2020-01-06 10:50:26 +00:00
cmake [CMake] Pass symlink dependency to add_llvm_install_targets explicitly 2020-01-06 14:51:32 -08:00
docs [docs] NFC: Fix typos in documents 2020-01-07 16:06:14 +01:00
examples Fix compiler extension example cmake integration 2020-01-07 09:27:08 +01:00
include [gicombiner] Add GIMatchTree and use it for the code generation 2020-01-07 11:12:53 -08:00
lib [X86] Improve lowering of v2i64 sign bit tests on pre-sse4.2 targets 2020-01-07 11:22:03 -08:00
projects
resources
runtimes [llvm/runtimes] Add runtimes as a dependency of clang-bootstrap-deps 2019-12-16 16:58:15 -08:00
test [X86] Improve lowering of v2i64 sign bit tests on pre-sse4.2 targets 2020-01-07 11:22:03 -08:00
tools [NFC] Use isX86() instead of getArch() 2020-01-07 17:35:44 +08:00
unittests [DebugInfo] Fix infinite loop caused by reading past debug_line end 2020-01-07 10:22:35 +00:00
utils [gn build] Port 1d94fb2111 2020-01-07 19:13:41 +00:00
.arcconfig
.clang-format
.clang-tidy
.gitattributes
.gitignore
CMakeLists.txt Re-apply "[Examples] Add IRTransformations directory to examples." 2020-01-04 15:47:23 +00:00
CODE_OWNERS.TXT
CREDITS.TXT
LICENSE.TXT
LLVMBuild.txt
README.txt
RELEASE_TESTERS.TXT
configure
llvm.spec.in

README.txt

The LLVM Compiler Infrastructure
================================

This directory and its subdirectories contain source code for LLVM,
a toolkit for the construction of highly optimized compilers,
optimizers, and runtime environments.

LLVM is open source software. You may freely distribute it under the terms of
the license agreement found in LICENSE.txt.

Please see the documentation provided in docs/ for further
assistance with LLVM, and in particular docs/GettingStarted.rst for getting
started with LLVM and docs/README.txt for an overview of LLVM's
documentation setup.

If you are writing a package for LLVM, see docs/Packaging.rst for our
suggestions.