1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/test
Artyom Skrobov d5f3afc063 Adding support for TargetLoweringBase::LibCall
Summary:
TargetLoweringBase::Expand is defined as "Try to expand this to other ops,
otherwise use a libcall." For ISD::UDIV and ISD::SDIV, the choice between
the two possibilities was defined in a rather convoluted way:

- if DIVREM is legal, expand to DIVREM
- if DIVREM has a custom lowering, expand to DIVREM
- if DIVREM libcall is defined and a remainder from the same division is
  computed elsewhere, expand to a DIVREM libcall
- else, expand to a DIV libcall

This had the undesirable effect that if both DIV and DIVREM are implemented
as libcalls, then ISD::UDIV and ISD::SDIV are expanded to the heavier DIVREM
libcall, even when the remainder isn't used.

The new code adds a new LegalizeAction, TargetLoweringBase::LibCall, so that
backends can directly control whether they prefer an expansion or a conversion
to a libcall. This makes the generic lowering code even more generic,
allowing its reuse in a wider range of target-specific configurations.

The useful effect is that ARM backend will now generate a call
to __aeabi_{i,u}div rather than __aeabi_{i,u}divmod in cases where
it doesn't need the remainder. There's no functional change outside
the ARM backend.

Reviewers: t.p.northover, rengolin

Subscribers: t.p.northover, llvm-commits, aemerson

Differential Revision: http://reviews.llvm.org/D13862

llvm-svn: 250826
2015-10-20 13:14:52 +00:00
..
Analysis [CostModel] Fixed AVX integer shift costs 2015-10-17 13:23:38 +00:00
Assembler
Bindings
Bitcode
BugPoint
CodeGen Adding support for TargetLoweringBase::LibCall 2015-10-20 13:14:52 +00:00
DebugInfo s/NumFiles/NumStreams/ 2015-10-15 01:39:00 +00:00
Examples
ExecutionEngine [RuntimeDyld][COFF] Fix some endianness issues, re-enable the regression test. 2015-10-19 20:37:52 +00:00
Feature
FileCheck
Instrumentation [PGO] Eliminate prof data register calls on FreeBSD platform 2015-10-19 04:17:10 +00:00
Integer
JitListener
LibDriver
Linker
LTO
MC AVX512: Implemented encoding and intrinsics for VPBROADCASTB/W/D/Q instructions. 2015-10-20 11:56:42 +00:00
Object
Other
SymbolRewriter
TableGen
tools Fix windows bot failures from r250699 by removing "/" from expected path 2015-10-19 15:19:02 +00:00
Transforms [RS4GC] Re-purpose normalizeForInvokeSafepoint; NFC. 2015-10-20 01:06:24 +00:00
Unit
Verifier
YAMLParser
.clang-format
CMakeLists.txt [CMake] check-llvm requires llvm-pdbdump. 2015-10-15 13:22:38 +00:00
lit.cfg
lit.site.cfg.in
Makefile
Makefile.tests
TestRunner.sh