llvm-project/llvm
Craig Topper 00060a7b97 [X86] Custom type legalize v2i32 smulo/umulo to use a single pmuldq/pmuludq.
With SSE4.1 and above we were using 3 multiply instructions. This
was due to type legalization widening to v4i32 and the low half
being done with pmulld while the high half used two pmuldq/pmuludq.

Instead of that, we can use a single pmuludq/pmuldq to calculate
the full product at once, extract the high and low bits and compare
to check for overflow.

I've restricted SMULO to sse4.1 to get pmuldq. We can probably
do a fixup to pmuludq on earlier targets, but that's for another day.

I was going through my git stash and found an early version of this patch
from a year or two ago so I went ahead and finished it.

Reviewed By: RKSimon

Differential Revision: https://reviews.llvm.org/D130432
2022-07-25 09:12:35 -07:00
..
benchmarks
bindings
cmake [llvm][cmake] Shore up `llvm_check_linker_flags`. 2022-07-25 16:02:25 +00:00
docs
examples
include [JITLink][COFF][x86_64] Reimplement ADDR32NB/REL32. 2022-07-25 23:41:53 +09:00
lib [X86] Custom type legalize v2i32 smulo/umulo to use a single pmuldq/pmuludq. 2022-07-25 09:12:35 -07:00
projects
resources
runtimes
test [X86] Custom type legalize v2i32 smulo/umulo to use a single pmuldq/pmuludq. 2022-07-25 09:12:35 -07:00
tools [llvm-objdump,ARM] Fix .byte directives dumping the wrong byte. 2022-07-25 14:55:33 +01:00
unittests
utils
.clang-format
.clang-tidy
.gitattributes
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
CREDITS.TXT
LICENSE.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.