2005-11-15 08:40:23 +08:00
|
|
|
//===-- X86ISelLowering.h - X86 DAG Lowering Interface ----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-11-15 08:40:23 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the interfaces that X86 uses to lower LLVM code into a
|
|
|
|
// selection DAG.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_X86_X86ISELLOWERING_H
|
|
|
|
#define LLVM_LIB_TARGET_X86_X86ISELLOWERING_H
|
2005-11-15 08:40:23 +08:00
|
|
|
|
2012-12-04 15:12:27 +08:00
|
|
|
#include "llvm/CodeGen/CallingConvLower.h"
|
2005-11-15 08:40:23 +08:00
|
|
|
#include "llvm/CodeGen/SelectionDAG.h"
|
2012-12-04 15:12:27 +08:00
|
|
|
#include "llvm/Target/TargetLowering.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2005-11-15 08:40:23 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2014-06-10 01:08:19 +08:00
|
|
|
class X86Subtarget;
|
2014-03-19 14:53:25 +08:00
|
|
|
class X86TargetMachine;
|
|
|
|
|
2005-11-15 08:40:23 +08:00
|
|
|
namespace X86ISD {
|
2006-01-06 08:43:03 +08:00
|
|
|
// X86 Specific DAG Nodes
|
2015-05-08 05:33:59 +08:00
|
|
|
enum NodeType : unsigned {
|
2005-11-15 08:40:23 +08:00
|
|
|
// Start the numbering where the builtin ops leave off.
|
2008-09-24 02:42:32 +08:00
|
|
|
FIRST_NUMBER = ISD::BUILTIN_OP_END,
|
2005-11-15 08:40:23 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Bit scan forward.
|
2007-12-14 10:13:44 +08:00
|
|
|
BSF,
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Bit scan reverse.
|
2007-12-14 10:13:44 +08:00
|
|
|
BSR,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Double shift instructions. These correspond to
|
2006-01-10 02:33:28 +08:00
|
|
|
/// X86::SHLDxx and X86::SHRDxx instructions.
|
|
|
|
SHLD,
|
|
|
|
SHRD,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Bitwise logical AND of floating point values. This corresponds
|
2006-01-31 11:14:29 +08:00
|
|
|
/// to X86::ANDPS or X86::ANDPD.
|
|
|
|
FAND,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Bitwise logical OR of floating point values. This corresponds
|
2007-01-05 15:55:56 +08:00
|
|
|
/// to X86::ORPS or X86::ORPD.
|
|
|
|
FOR,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Bitwise logical XOR of floating point values. This corresponds
|
2006-02-01 06:28:30 +08:00
|
|
|
/// to X86::XORPS or X86::XORPD.
|
|
|
|
FXOR,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Bitwise logical ANDNOT of floating point values. This
|
X86: Turn fp selects into mask operations.
double test(double a, double b, double c, double d) { return a<b ? c : d; }
before:
_test:
ucomisd %xmm0, %xmm1
ja LBB0_2
movaps %xmm3, %xmm2
LBB0_2:
movaps %xmm2, %xmm0
after:
_test:
cmpltsd %xmm1, %xmm0
andpd %xmm0, %xmm2
andnpd %xmm3, %xmm0
orpd %xmm2, %xmm0
Small speedup on Benchmarks/SmallPT
llvm-svn: 187706
2013-08-04 20:05:16 +08:00
|
|
|
/// corresponds to X86::ANDNPS or X86::ANDNPD.
|
|
|
|
FANDN,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// These operations represent an abstract X86 call
|
2005-11-15 08:40:23 +08:00
|
|
|
/// instruction, which includes a bunch of information. In particular the
|
|
|
|
/// operands of these node are:
|
|
|
|
///
|
|
|
|
/// #0 - The incoming token chain
|
|
|
|
/// #1 - The callee
|
|
|
|
/// #2 - The number of arg bytes the caller pushes on the stack.
|
|
|
|
/// #3 - The number of arg bytes the callee pops off the stack.
|
|
|
|
/// #4 - The value to pass in AL/AX/EAX (optional)
|
|
|
|
/// #5 - The value to pass in DL/DX/EDX (optional)
|
|
|
|
///
|
|
|
|
/// The result values of these nodes are:
|
|
|
|
///
|
|
|
|
/// #0 - The outgoing token chain
|
|
|
|
/// #1 - The first register result value (optional)
|
|
|
|
/// #2 - The second register result value (optional)
|
|
|
|
///
|
|
|
|
CALL,
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// This operation implements the lowering for readcyclecounter
|
2005-11-21 05:41:10 +08:00
|
|
|
RDTSC_DAG,
|
2005-12-17 09:21:05 +08:00
|
|
|
|
2014-04-25 01:18:27 +08:00
|
|
|
/// X86 Read Time-Stamp Counter and Processor ID.
|
|
|
|
RDTSCP_DAG,
|
|
|
|
|
2014-07-01 01:14:21 +08:00
|
|
|
/// X86 Read Performance Monitoring Counters.
|
|
|
|
RDPMC_DAG,
|
|
|
|
|
2005-12-17 09:21:05 +08:00
|
|
|
/// X86 compare and logical compare instructions.
|
2007-09-18 01:42:53 +08:00
|
|
|
CMP, COMI, UCOMI,
|
2005-12-17 09:21:05 +08:00
|
|
|
|
2008-12-24 06:45:23 +08:00
|
|
|
/// X86 bit-test instructions.
|
|
|
|
BT,
|
|
|
|
|
2010-12-20 08:59:46 +08:00
|
|
|
/// X86 SetCC. Operand 0 is condition code, and operand 1 is the EFLAGS
|
|
|
|
/// operand, usually produced by a CMP instruction.
|
2005-12-22 04:21:51 +08:00
|
|
|
SETCC,
|
|
|
|
|
2013-12-16 21:52:35 +08:00
|
|
|
/// X86 Select
|
|
|
|
SELECT,
|
|
|
|
|
2009-12-15 08:53:42 +08:00
|
|
|
// Same as SETCC except it's materialized with a sbb and the value is all
|
|
|
|
// one's or all zero's.
|
2010-12-20 06:08:31 +08:00
|
|
|
SETCC_CARRY, // R = carry_bit ? ~0 : 0
|
2009-12-15 08:53:42 +08:00
|
|
|
|
2011-06-04 07:53:54 +08:00
|
|
|
/// X86 FP SETCC, implemented with CMP{cc}SS/CMP{cc}SD.
|
|
|
|
/// Operands are two FP values to compare; result is a mask of
|
|
|
|
/// 0s or 1s. Generally DTRT for C/C++ with NaNs.
|
2013-12-16 21:52:35 +08:00
|
|
|
FSETCC,
|
2011-06-04 07:53:54 +08:00
|
|
|
|
2011-06-01 12:39:42 +08:00
|
|
|
/// X86 MOVMSK{pd|ps}, extracts sign bits of two or four FP values,
|
|
|
|
/// result in an integer GPR. Needs masking for scalar result.
|
|
|
|
FGETSIGNx86,
|
|
|
|
|
2009-03-12 14:46:02 +08:00
|
|
|
/// X86 conditional moves. Operand 0 and operand 1 are the two values
|
|
|
|
/// to select from. Operand 2 is the condition code, and operand 3 is the
|
|
|
|
/// flag operand produced by a CMP or TEST instruction. It also writes a
|
|
|
|
/// flag result.
|
2005-12-17 09:21:05 +08:00
|
|
|
CMOV,
|
2005-12-20 07:12:38 +08:00
|
|
|
|
2009-03-23 23:40:10 +08:00
|
|
|
/// X86 conditional branches. Operand 0 is the chain operand, operand 1
|
|
|
|
/// is the block to branch if condition is true, operand 2 is the
|
|
|
|
/// condition code, and operand 3 is the flag operand produced by a CMP
|
2005-12-22 04:21:51 +08:00
|
|
|
/// or TEST instruction.
|
2005-12-20 07:12:38 +08:00
|
|
|
BRCOND,
|
2005-12-21 10:39:21 +08:00
|
|
|
|
2009-03-23 23:40:10 +08:00
|
|
|
/// Return with a flag operand. Operand 0 is the chain operand, operand
|
|
|
|
/// 1 is the number of bytes of stack to pop.
|
2005-12-21 10:39:21 +08:00
|
|
|
RET_FLAG,
|
2006-01-12 06:15:48 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Repeat fill, corresponds to X86::REP_STOSx.
|
2006-01-12 06:15:48 +08:00
|
|
|
REP_STOS,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Repeat move, corresponds to X86::REP_MOVSx.
|
2006-01-12 06:15:48 +08:00
|
|
|
REP_MOVS,
|
2006-02-01 06:28:30 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// On Darwin, this node represents the result of the popl
|
2006-02-18 08:15:05 +08:00
|
|
|
/// at function entry, used for PIC code.
|
|
|
|
GlobalBaseReg,
|
2006-02-23 10:43:52 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// A wrapper node for TargetConstantPool,
|
2008-09-17 05:48:12 +08:00
|
|
|
/// TargetExternalSymbol, and TargetGlobalAddress.
|
2006-02-24 04:41:18 +08:00
|
|
|
Wrapper,
|
2006-03-22 07:01:21 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Special wrapper used under X86-64 PIC mode for RIP
|
2006-12-01 05:55:46 +08:00
|
|
|
/// relative displacements.
|
|
|
|
WrapperRIP,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Copies a 64-bit value from the low word of an XMM vector
|
2010-10-01 07:57:10 +08:00
|
|
|
/// to an MMX vector. If you think this is too close to the previous
|
|
|
|
/// mnemonic, so do I; blame Intel.
|
|
|
|
MOVDQ2Q,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Copies a 32-bit value from the low word of a MMX
|
2012-10-31 06:15:38 +08:00
|
|
|
/// vector to a GPR.
|
|
|
|
MMX_MOVD2W,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Copies a GPR into the low 32-bit word of a MMX vector
|
2015-02-05 21:23:07 +08:00
|
|
|
/// and zero out the high word.
|
|
|
|
MMX_MOVW2D,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Extract an 8-bit value from a vector and zero extend it to
|
2008-02-11 12:19:36 +08:00
|
|
|
/// i32, corresponds to X86::PEXTRB.
|
|
|
|
PEXTRB,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Extract a 16-bit value from a vector and zero extend it to
|
2006-04-01 05:55:24 +08:00
|
|
|
/// i32, corresponds to X86::PEXTRW.
|
2006-04-01 03:22:53 +08:00
|
|
|
PEXTRW,
|
2006-04-01 05:55:24 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Insert any element of a 4 x float vector into any element
|
2008-02-11 12:19:36 +08:00
|
|
|
/// of a destination 4 x floatvector.
|
|
|
|
INSERTPS,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Insert the lower 8-bits of a 32-bit value to a vector,
|
2008-02-11 12:19:36 +08:00
|
|
|
/// corresponds to X86::PINSRB.
|
|
|
|
PINSRB,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Insert the lower 16-bits of a 32-bit value to a vector,
|
2006-04-01 05:55:24 +08:00
|
|
|
/// corresponds to X86::PINSRW.
|
2010-02-23 10:07:48 +08:00
|
|
|
PINSRW, MMX_PINSRW,
|
2006-11-11 05:43:37 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Shuffle 16 8-bit values within a vector.
|
Generate better code for v8i16 shuffles on SSE2
Generate better code for v16i8 shuffles on SSE2 (avoids stack)
Generate pshufb for v8i16 and v16i8 shuffles on SSSE3 where it is fewer uops.
Document the shuffle matching logic and add some FIXMEs for later further
cleanups.
New tests that test the above.
Examples:
New:
_shuf2:
pextrw $7, %xmm0, %eax
punpcklqdq %xmm1, %xmm0
pshuflw $128, %xmm0, %xmm0
pinsrw $2, %eax, %xmm0
Old:
_shuf2:
pextrw $2, %xmm0, %eax
pextrw $7, %xmm0, %ecx
pinsrw $2, %ecx, %xmm0
pinsrw $3, %eax, %xmm0
movd %xmm1, %eax
pinsrw $4, %eax, %xmm0
ret
=========
New:
_shuf4:
punpcklqdq %xmm1, %xmm0
pshufb LCPI1_0, %xmm0
Old:
_shuf4:
pextrw $3, %xmm0, %eax
movsd %xmm1, %xmm0
pextrw $3, %xmm1, %ecx
pinsrw $4, %ecx, %xmm0
pinsrw $5, %eax, %xmm0
========
New:
_shuf1:
pushl %ebx
pushl %edi
pushl %esi
pextrw $1, %xmm0, %eax
rolw $8, %ax
movd %xmm0, %ecx
rolw $8, %cx
pextrw $5, %xmm0, %edx
pextrw $4, %xmm0, %esi
pextrw $3, %xmm0, %edi
pextrw $2, %xmm0, %ebx
movaps %xmm0, %xmm1
pinsrw $0, %ecx, %xmm1
pinsrw $1, %eax, %xmm1
rolw $8, %bx
pinsrw $2, %ebx, %xmm1
rolw $8, %di
pinsrw $3, %edi, %xmm1
rolw $8, %si
pinsrw $4, %esi, %xmm1
rolw $8, %dx
pinsrw $5, %edx, %xmm1
pextrw $7, %xmm0, %eax
rolw $8, %ax
movaps %xmm1, %xmm0
pinsrw $7, %eax, %xmm0
popl %esi
popl %edi
popl %ebx
ret
Old:
_shuf1:
subl $252, %esp
movaps %xmm0, (%esp)
movaps %xmm0, 16(%esp)
movaps %xmm0, 32(%esp)
movaps %xmm0, 48(%esp)
movaps %xmm0, 64(%esp)
movaps %xmm0, 80(%esp)
movaps %xmm0, 96(%esp)
movaps %xmm0, 224(%esp)
movaps %xmm0, 208(%esp)
movaps %xmm0, 192(%esp)
movaps %xmm0, 176(%esp)
movaps %xmm0, 160(%esp)
movaps %xmm0, 144(%esp)
movaps %xmm0, 128(%esp)
movaps %xmm0, 112(%esp)
movzbl 14(%esp), %eax
movd %eax, %xmm1
movzbl 22(%esp), %eax
movd %eax, %xmm2
punpcklbw %xmm1, %xmm2
movzbl 42(%esp), %eax
movd %eax, %xmm1
movzbl 50(%esp), %eax
movd %eax, %xmm3
punpcklbw %xmm1, %xmm3
punpcklbw %xmm2, %xmm3
movzbl 77(%esp), %eax
movd %eax, %xmm1
movzbl 84(%esp), %eax
movd %eax, %xmm2
punpcklbw %xmm1, %xmm2
movzbl 104(%esp), %eax
movd %eax, %xmm1
punpcklbw %xmm1, %xmm0
punpcklbw %xmm2, %xmm0
movaps %xmm0, %xmm1
punpcklbw %xmm3, %xmm1
movzbl 127(%esp), %eax
movd %eax, %xmm0
movzbl 135(%esp), %eax
movd %eax, %xmm2
punpcklbw %xmm0, %xmm2
movzbl 155(%esp), %eax
movd %eax, %xmm0
movzbl 163(%esp), %eax
movd %eax, %xmm3
punpcklbw %xmm0, %xmm3
punpcklbw %xmm2, %xmm3
movzbl 188(%esp), %eax
movd %eax, %xmm0
movzbl 197(%esp), %eax
movd %eax, %xmm2
punpcklbw %xmm0, %xmm2
movzbl 217(%esp), %eax
movd %eax, %xmm4
movzbl 225(%esp), %eax
movd %eax, %xmm0
punpcklbw %xmm4, %xmm0
punpcklbw %xmm2, %xmm0
punpcklbw %xmm3, %xmm0
punpcklbw %xmm1, %xmm0
addl $252, %esp
ret
llvm-svn: 65311
2009-02-23 16:49:38 +08:00
|
|
|
PSHUFB,
|
2011-02-26 05:41:48 +08:00
|
|
|
|
[x86] Implement a faster vector population count based on the PSHUFB
in-register LUT technique.
Summary:
A description of this technique can be found here:
http://wm.ite.pl/articles/sse-popcount.html
The core of the idea is to use an in-register lookup table and the
PSHUFB instruction to compute the population count for the low and high
nibbles of each byte, and then to use horizontal sums to aggregate these
into vector population counts with wider element types.
On x86 there is an instruction that will directly compute the horizontal
sum for the low 8 and high 8 bytes, giving vNi64 popcount very easily.
Various tricks are used to get vNi32 and vNi16 from the vNi8 that the
LUT computes.
The base implemantion of this, and most of the work, was done by Bruno
in a follow up to D6531. See Bruno's detailed post there for lots of
timing information about these changes.
I have extended Bruno's patch in the following ways:
0) I committed the new tests with baseline sequences so this shows
a diff, and regenerated the tests using the update scripts.
1) Bruno had noticed and mentioned in IRC a redundant mask that
I removed.
2) I introduced a particular optimization for the i32 vector cases where
we use PSHL + PSADBW to compute the the low i32 popcounts, and PSHUFD
+ PSADBW to compute doubled high i32 popcounts. This takes advantage
of the fact that to line up the high i32 popcounts we have to shift
them anyways, and we can shift them by one fewer bit to effectively
divide the count by two. While the PSHUFD based horizontal add is no
faster, it doesn't require registers or load traffic the way a mask
would, and provides more ILP as it happens on different ports with
high throughput.
3) I did some code cleanups throughout to simplify the implementation
logic.
4) I refactored it to continue to use the parallel bitmath lowering when
SSSE3 is not available to preserve the performance of that version on
SSE2 targets where it is still much better than scalarizing as we'll
still do a bitmath implementation of popcount even in scalar code
there.
With #1 and #2 above, I analyzed the result in IACA for sandybridge,
ivybridge, and haswell. In every case I measured, the throughput is the
same or better using the LUT lowering, even v2i64 and v4i64, and even
compared with using the native popcnt instruction! The latency of the
LUT lowering is often higher than the latency of the scalarized popcnt
instruction sequence, but I think those latency measurements are deeply
misleading. Keeping the operation fully in the vector unit and having
many chances for increased throughput seems much more likely to win.
With this, we can lower every integer vector popcount implementation
using the LUT strategy if we have SSSE3 or better (and thus have
PSHUFB). I've updated the operation lowering to reflect this. This also
fixes an issue where we were scalarizing horribly some AVX lowerings.
Finally, there are some remaining cleanups. There is duplication between
the two techniques in how they perform the horizontal sum once the byte
population count is computed. I'm going to factor and merge those two in
a separate follow-up commit.
Differential Revision: http://reviews.llvm.org/D10084
llvm-svn: 238636
2015-05-30 11:20:59 +08:00
|
|
|
/// Compute Sum of Absolute Differences.
|
|
|
|
PSADBW,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Bitwise Logical AND NOT of Packed FP values.
|
2011-07-14 05:36:47 +08:00
|
|
|
ANDNP,
|
2011-02-26 05:41:48 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Copy integer sign.
|
2011-11-19 15:33:10 +08:00
|
|
|
PSIGN,
|
2011-02-26 05:41:48 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Blend where the selector is an immediate.
|
2012-12-05 17:24:57 +08:00
|
|
|
BLENDI,
|
2012-04-11 14:40:27 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Blend where the condition has been shrunk.
|
2014-11-06 10:25:03 +08:00
|
|
|
/// This is used to emphasize that the condition mask is
|
|
|
|
/// no more valid for generic VSELECT optimizations.
|
|
|
|
SHRUNKBLEND,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Combined add and sub on an FP vector.
|
2014-09-16 04:09:47 +08:00
|
|
|
ADDSUB,
|
2015-06-03 21:41:48 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// FP vector ops with rounding mode.
|
2015-02-18 15:59:20 +08:00
|
|
|
FADD_RND,
|
|
|
|
FSUB_RND,
|
|
|
|
FMUL_RND,
|
|
|
|
FDIV_RND,
|
2015-05-11 14:05:05 +08:00
|
|
|
FMAX_RND,
|
|
|
|
FMIN_RND,
|
2015-06-03 21:41:48 +08:00
|
|
|
FSQRT_RND,
|
|
|
|
|
|
|
|
// FP vector get exponent
|
|
|
|
FGETEXP_RND,
|
2015-06-28 22:30:39 +08:00
|
|
|
// FP Scale
|
|
|
|
SCALEF,
|
2015-05-04 20:35:55 +08:00
|
|
|
// Integer add/sub with unsigned saturation.
|
|
|
|
ADDUS,
|
2012-12-16 00:47:44 +08:00
|
|
|
SUBUS,
|
2015-05-04 20:35:55 +08:00
|
|
|
// Integer add/sub with signed saturation.
|
|
|
|
ADDS,
|
|
|
|
SUBS,
|
2015-06-18 20:30:53 +08:00
|
|
|
// Unsigned Integer average
|
|
|
|
AVG,
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Integer horizontal add.
|
2011-11-19 17:02:40 +08:00
|
|
|
HADD,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Integer horizontal sub.
|
2011-11-19 17:02:40 +08:00
|
|
|
HSUB,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Floating point horizontal add.
|
2011-09-23 04:15:48 +08:00
|
|
|
FHADD,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Floating point horizontal sub.
|
2011-09-23 04:15:48 +08:00
|
|
|
FHSUB,
|
|
|
|
|
2015-06-23 16:19:46 +08:00
|
|
|
// Integer absolute value
|
|
|
|
ABS,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Floating point max and min.
|
2007-04-21 05:38:10 +08:00
|
|
|
FMAX, FMIN,
|
2007-07-10 08:05:58 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Commutative FMIN and FMAX.
|
2012-08-19 21:06:16 +08:00
|
|
|
FMAXC, FMINC,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Floating point reciprocal-sqrt and reciprocal approximation.
|
|
|
|
/// Note that these typically require refinement
|
2007-07-10 08:05:58 +08:00
|
|
|
/// in order to obtain suitable precision.
|
|
|
|
FRSQRT, FRCP,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Thread Local Storage.
|
2009-04-09 05:14:34 +08:00
|
|
|
TLSADDR,
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Thread Local Storage. A call to get the start address
|
2012-06-02 00:27:21 +08:00
|
|
|
// of the TLS block for the current module.
|
|
|
|
TLSBASEADDR,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Thread Local Storage. When calling to an OS provided
|
2010-06-03 12:07:48 +08:00
|
|
|
// thunk at the address from an earlier relocation.
|
|
|
|
TLSCALL,
|
2009-04-09 05:14:34 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Exception Handling helpers.
|
2007-10-12 03:40:01 +08:00
|
|
|
EH_RETURN,
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// SjLj exception handling setjmp.
|
2012-10-16 06:39:43 +08:00
|
|
|
EH_SJLJ_SETJMP,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// SjLj exception handling longjmp.
|
2012-10-16 06:39:43 +08:00
|
|
|
EH_SJLJ_LONGJMP,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Tail call return. See X86TargetLowering::LowerCall for
|
2013-02-15 07:17:03 +08:00
|
|
|
/// the list of operands.
|
2007-11-16 09:31:51 +08:00
|
|
|
TC_RETURN,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector move to low scalar and zero higher vector elements.
|
2008-05-10 05:53:03 +08:00
|
|
|
VZEXT_MOVL,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector integer zero-extend.
|
2012-10-24 01:34:00 +08:00
|
|
|
VZEXT,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector integer signed-extend.
|
2012-10-24 01:34:00 +08:00
|
|
|
VSEXT,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector integer truncate.
|
2013-08-29 19:56:53 +08:00
|
|
|
VTRUNC,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector integer truncate with mask.
|
2013-08-29 19:56:53 +08:00
|
|
|
VTRUNCM,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector FP extend.
|
2012-08-15 05:24:47 +08:00
|
|
|
VFPEXT,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector FP round.
|
2012-10-11 00:53:28 +08:00
|
|
|
VFPROUND,
|
|
|
|
|
2015-07-13 21:26:20 +08:00
|
|
|
// Vector signed/unsigned integer to double.
|
|
|
|
CVTDQ2PD, CVTUDQ2PD,
|
2015-06-17 05:40:28 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// 128-bit vector logical left / right shift
|
2012-01-23 03:15:14 +08:00
|
|
|
VSHLDQ, VSRLDQ,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector shift elements
|
2012-01-23 03:15:14 +08:00
|
|
|
VSHL, VSRL, VSRA,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector shift elements by immediate
|
2012-01-23 03:15:14 +08:00
|
|
|
VSHLI, VSRLI, VSRAI,
|
2009-04-28 02:41:29 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector packed double/float comparison.
|
2012-01-23 07:36:02 +08:00
|
|
|
CMPP,
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector integer comparisons.
|
2012-01-23 06:42:16 +08:00
|
|
|
PCMPEQ, PCMPGT,
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector integer comparisons, the result is in a mask vector.
|
2013-08-13 21:24:07 +08:00
|
|
|
PCMPEQM, PCMPGTM,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
/// Vector comparison generating mask bits for fp and
|
2013-08-13 21:24:07 +08:00
|
|
|
/// integer signed and unsigned data types.
|
|
|
|
CMPM,
|
|
|
|
CMPMU,
|
2015-05-07 19:24:42 +08:00
|
|
|
// Vector comparison with rounding mode for FP values
|
|
|
|
CMPM_RND,
|
2008-12-12 08:56:36 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Arithmetic operations with FLAGS results.
|
2010-12-20 08:59:46 +08:00
|
|
|
ADD, SUB, ADC, SBB, SMUL,
|
2009-09-19 03:59:53 +08:00
|
|
|
INC, DEC, OR, XOR, AND,
|
2011-02-26 05:41:48 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
BEXTR, // Bit field extract
|
2011-10-21 14:55:01 +08:00
|
|
|
|
it turns out that when ".with.overflow" intrinsics were added to the X86
backend that they were all implemented except umul. This one fell back
to the default implementation that did a hi/lo multiply and compared the
top. Fix this to check the overflow flag that the 'mul' instruction
sets, so we can avoid an explicit test. Now we compile:
void *func(long count) {
return new int[count];
}
into:
__Z4funcl: ## @_Z4funcl
movl $4, %ecx ## encoding: [0xb9,0x04,0x00,0x00,0x00]
movq %rdi, %rax ## encoding: [0x48,0x89,0xf8]
mulq %rcx ## encoding: [0x48,0xf7,0xe1]
seto %cl ## encoding: [0x0f,0x90,0xc1]
testb %cl, %cl ## encoding: [0x84,0xc9]
movq $-1, %rdi ## encoding: [0x48,0xc7,0xc7,0xff,0xff,0xff,0xff]
cmoveq %rax, %rdi ## encoding: [0x48,0x0f,0x44,0xf8]
jmp __Znam ## TAILCALL
instead of:
__Z4funcl: ## @_Z4funcl
movl $4, %ecx ## encoding: [0xb9,0x04,0x00,0x00,0x00]
movq %rdi, %rax ## encoding: [0x48,0x89,0xf8]
mulq %rcx ## encoding: [0x48,0xf7,0xe1]
testq %rdx, %rdx ## encoding: [0x48,0x85,0xd2]
movq $-1, %rdi ## encoding: [0x48,0xc7,0xc7,0xff,0xff,0xff,0xff]
cmoveq %rax, %rdi ## encoding: [0x48,0x0f,0x44,0xf8]
jmp __Znam ## TAILCALL
Other than the silly seto+test, this is using the o bit directly, so it's going in the right
direction.
llvm-svn: 120935
2010-12-05 15:30:36 +08:00
|
|
|
UMUL, // LOW, HI, FLAGS = umul LHS, RHS
|
2009-03-31 05:36:47 +08:00
|
|
|
|
[X86] Improve mul w/ overflow codegen, to MUL8+SETO.
Currently, @llvm.smul.with.overflow.i8 expands to 9 instructions, where
3 are really needed.
This adds X86ISD::UMUL8/SMUL8 SD nodes, and custom lowers them to
MUL8/IMUL8 + SETO.
i8 is a special case because there is no two/three operand variants of
(I)MUL8, so the first operand and return value need to go in AL/AX.
Also, we can't write patterns for these instructions: TableGen refuses
patterns where output operands don't match SDNode results. In this case,
instructions where the output operand is an implicitly defined register.
A related special case (and FIXME) exists for MUL8 (X86InstrArith.td):
// FIXME: Used for 8-bit mul, ignore result upper 8 bits.
// This probably ought to be moved to a def : Pat<> if the
// syntax can be accepted.
[(set AL, (mul AL, GR8:$src)), (implicit EFLAGS)]
Ideally, these go away with UMUL8, but we still need to improve TableGen
support of implicit operands in patterns.
Before this change:
movsbl %sil, %eax
movsbl %dil, %ecx
imull %eax, %ecx
movb %cl, %al
sarb $7, %al
movzbl %al, %eax
movzbl %ch, %esi
cmpl %eax, %esi
setne %al
After:
movb %dil, %al
imulb %sil
seto %al
Also, remove a made-redundant testcase for PR19858, and enable more FastISel
ALU-overflow tests for SelectionDAG too.
Differential Revision: http://reviews.llvm.org/D5809
llvm-svn: 220516
2014-10-24 05:55:31 +08:00
|
|
|
// 8-bit SMUL/UMUL - AX, FLAGS = smul8/umul8 AL, RHS
|
|
|
|
SMUL8, UMUL8,
|
|
|
|
|
[X86] 8bit divrem: Improve codegen for AH register extraction.
For 8-bit divrems where the remainder is used, we used to generate:
divb %sil
shrw $8, %ax
movzbl %al, %eax
That was to avoid an H-reg access, which is problematic mainly because
it isn't possible in REX-prefixed instructions.
This patch optimizes that to:
divb %sil
movzbl %ah, %eax
To do that, we explicitly extend AH, and extract the L-subreg in the
resulting register. The extension is done using the NOREX variants of
MOVZX. To support signed operations, MOVSX_NOREX is also added.
Further, this introduces a new SDNode type, [us]divrem_ext_hreg, which is
then lowered to a sequence containing a single zext (rather than 2).
Differential Revision: http://reviews.llvm.org/D6064
llvm-svn: 221176
2014-11-04 04:26:35 +08:00
|
|
|
// 8-bit divrem that zero-extend the high result (AH).
|
|
|
|
UDIVREM8_ZEXT_HREG,
|
|
|
|
SDIVREM8_SEXT_HREG,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// X86-specific multiply by immediate.
|
2009-07-29 08:28:05 +08:00
|
|
|
MUL_IMM,
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector bitwise comparisons.
|
2009-08-15 09:38:56 +08:00
|
|
|
PTEST,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector packed fp sign bitwise comparisons.
|
2010-08-11 07:25:42 +08:00
|
|
|
TESTP,
|
|
|
|
|
2015-03-04 04:58:35 +08:00
|
|
|
// Vector "test" in AVX-512, the result is in a mask vector.
|
2013-08-21 17:36:02 +08:00
|
|
|
TESTM,
|
2014-02-05 15:05:03 +08:00
|
|
|
TESTNM,
|
2013-08-21 17:36:02 +08:00
|
|
|
|
2013-08-05 16:52:21 +08:00
|
|
|
// OR/AND test for masks
|
|
|
|
KORTEST,
|
|
|
|
|
2010-08-21 06:55:05 +08:00
|
|
|
// Several flavors of instructions with vector shuffle behaviors.
|
2014-06-20 09:05:28 +08:00
|
|
|
PACKSS,
|
|
|
|
PACKUS,
|
2014-08-06 01:22:55 +08:00
|
|
|
// Intra-lane alignr
|
2013-01-28 14:48:25 +08:00
|
|
|
PALIGNR,
|
2014-08-06 01:22:55 +08:00
|
|
|
// AVX512 inter-lane alignr
|
|
|
|
VALIGN,
|
2010-08-21 06:55:05 +08:00
|
|
|
PSHUFD,
|
|
|
|
PSHUFHW,
|
|
|
|
PSHUFLW,
|
2012-01-01 07:50:21 +08:00
|
|
|
SHUFP,
|
2015-06-03 18:56:40 +08:00
|
|
|
//Shuffle Packed Values at 128-bit granularity
|
|
|
|
SHUF128,
|
2010-08-21 06:55:05 +08:00
|
|
|
MOVDDUP,
|
|
|
|
MOVSHDUP,
|
|
|
|
MOVSLDUP,
|
|
|
|
MOVLHPS,
|
|
|
|
MOVLHPD,
|
2010-09-01 05:15:21 +08:00
|
|
|
MOVHLPS,
|
2010-09-01 13:08:25 +08:00
|
|
|
MOVLPS,
|
|
|
|
MOVLPD,
|
2010-08-21 06:55:05 +08:00
|
|
|
MOVSD,
|
|
|
|
MOVSS,
|
2011-12-06 16:21:25 +08:00
|
|
|
UNPCKL,
|
|
|
|
UNPCKH,
|
2014-09-23 18:08:29 +08:00
|
|
|
VPERMILPV,
|
2014-09-23 06:29:42 +08:00
|
|
|
VPERMILPI,
|
2012-04-16 08:41:45 +08:00
|
|
|
VPERMV,
|
2013-08-11 15:55:09 +08:00
|
|
|
VPERMV3,
|
2014-01-23 22:27:26 +08:00
|
|
|
VPERMIV3,
|
2012-04-16 08:41:45 +08:00
|
|
|
VPERMI,
|
2011-11-30 15:47:51 +08:00
|
|
|
VPERM2X128,
|
2015-06-01 14:50:49 +08:00
|
|
|
//Fix Up Special Packed Float32/64 values
|
|
|
|
VFIXUPIMM,
|
2015-06-01 19:05:34 +08:00
|
|
|
//Range Restriction Calculation For Packed Pairs of Float32/64 values
|
|
|
|
VRANGE,
|
2015-05-18 14:42:57 +08:00
|
|
|
// Broadcast scalar to vector
|
2011-08-17 10:29:19 +08:00
|
|
|
VBROADCAST,
|
2015-05-18 14:42:57 +08:00
|
|
|
// Broadcast subvector to vector
|
|
|
|
SUBV_BROADCAST,
|
2014-02-10 15:02:39 +08:00
|
|
|
// Insert/Extract vector element
|
2013-09-12 16:55:00 +08:00
|
|
|
VINSERT,
|
2014-02-10 15:02:39 +08:00
|
|
|
VEXTRACT,
|
2010-08-21 06:55:05 +08:00
|
|
|
|
2015-07-07 04:46:41 +08:00
|
|
|
/// SSE4A Extraction and Insertion.
|
|
|
|
EXTRQI, INSERTQI,
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// Vector multiply packed unsigned doubleword integers
|
2012-02-05 11:14:49 +08:00
|
|
|
PMULUDQ,
|
2014-10-02 03:39:32 +08:00
|
|
|
// Vector multiply packed signed doubleword integers
|
2014-04-26 22:12:19 +08:00
|
|
|
PMULDQ,
|
2015-07-06 22:03:40 +08:00
|
|
|
// Vector Multiply Packed UnsignedIntegers with Round and Scale
|
|
|
|
MULHRS,
|
2015-07-21 15:11:28 +08:00
|
|
|
// Multiply and Add Packed Integers
|
|
|
|
VPMADDUBSW, VPMADDWD,
|
2012-08-01 20:06:00 +08:00
|
|
|
// FMA nodes
|
|
|
|
FMADD,
|
|
|
|
FNMADD,
|
|
|
|
FMSUB,
|
|
|
|
FNMSUB,
|
|
|
|
FMADDSUB,
|
|
|
|
FMSUBADD,
|
2015-01-28 18:21:27 +08:00
|
|
|
// FMA with rounding mode
|
|
|
|
FMADD_RND,
|
|
|
|
FNMADD_RND,
|
|
|
|
FMSUB_RND,
|
|
|
|
FNMSUB_RND,
|
|
|
|
FMADDSUB_RND,
|
2015-02-23 23:12:31 +08:00
|
|
|
FMSUBADD_RND,
|
|
|
|
RNDSCALE,
|
2012-08-01 20:06:00 +08:00
|
|
|
|
2014-12-11 23:02:24 +08:00
|
|
|
// Compress and expand
|
|
|
|
COMPRESS,
|
|
|
|
EXPAND,
|
|
|
|
|
2015-06-14 20:44:55 +08:00
|
|
|
//Convert Unsigned/Integer to Scalar Floating-Point Value
|
|
|
|
//with rounding mode
|
|
|
|
SINT_TO_FP_RND,
|
|
|
|
UINT_TO_FP_RND,
|
2015-07-13 21:26:20 +08:00
|
|
|
|
|
|
|
// Vector float/double to signed/unsigned integer.
|
|
|
|
FP_TO_SINT_RND, FP_TO_UINT_RND,
|
2014-10-02 03:39:32 +08:00
|
|
|
// Save xmm argument registers to the stack, according to %al. An operator
|
|
|
|
// is needed so that this can be expanded with control flow.
|
2009-09-26 04:36:54 +08:00
|
|
|
VASTART_SAVE_XMM_REGS,
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// Windows's _chkstk call to do stack probing.
|
2010-10-21 09:41:01 +08:00
|
|
|
WIN_ALLOCA,
|
2010-03-07 03:32:29 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// For allocating variable amounts of stack space when using
|
2011-08-31 03:43:21 +08:00
|
|
|
// segmented stacks. Check if the current stacklet has enough space, and
|
2011-09-07 03:29:31 +08:00
|
|
|
// falls back to heap allocation if not.
|
2011-08-31 03:43:21 +08:00
|
|
|
SEG_ALLOCA,
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// Windows's _ftol2 runtime routine to do fptoui.
|
2012-02-25 03:01:22 +08:00
|
|
|
WIN_FTOL,
|
|
|
|
|
2010-11-20 19:25:00 +08:00
|
|
|
// Memory barrier
|
|
|
|
MEMBARRIER,
|
|
|
|
MFENCE,
|
|
|
|
SFENCE,
|
|
|
|
LFENCE,
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// Store FP status word into i16 register.
|
2012-04-27 20:07:43 +08:00
|
|
|
FNSTSW16r,
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// Store contents of %ah into %eflags.
|
2012-04-27 20:07:43 +08:00
|
|
|
SAHF,
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// Get a random integer and indicate whether it is valid in CF.
|
2012-07-12 17:31:43 +08:00
|
|
|
RDRAND,
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// Get a NIST SP800-90B & C compliant random integer and
|
2013-03-29 07:41:26 +08:00
|
|
|
// indicate whether it is valid in CF.
|
|
|
|
RDSEED,
|
|
|
|
|
2012-08-06 14:22:36 +08:00
|
|
|
PCMPISTRI,
|
|
|
|
PCMPESTRI,
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// Test if in transactional execution.
|
2013-03-27 06:47:01 +08:00
|
|
|
XTEST,
|
|
|
|
|
2014-11-12 15:31:03 +08:00
|
|
|
// ERI instructions
|
|
|
|
RSQRT28, RCP28, EXP2,
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// Compare and swap.
|
2014-07-02 02:53:31 +08:00
|
|
|
LCMPXCHG_DAG = ISD::FIRST_TARGET_MEMORY_OPCODE,
|
2010-09-22 08:34:38 +08:00
|
|
|
LCMPXCHG8_DAG,
|
2011-08-27 05:21:21 +08:00
|
|
|
LCMPXCHG16_DAG,
|
2010-03-07 03:32:29 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// Load, scalar_to_vector, and zero extend.
|
2010-09-22 09:05:16 +08:00
|
|
|
VZEXT_LOAD,
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
// Store FP control world into i16 memory.
|
2010-09-22 09:11:26 +08:00
|
|
|
FNSTCW16m,
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// This instruction implements FP_TO_SINT with the
|
2010-09-22 09:05:16 +08:00
|
|
|
/// integer destination in memory and a FP reg source. This corresponds
|
|
|
|
/// to the X86::FIST*m instructions and the rounding mode change stuff. It
|
|
|
|
/// has two inputs (token chain and address) and two outputs (int value
|
|
|
|
/// and token chain).
|
|
|
|
FP_TO_INT16_IN_MEM,
|
|
|
|
FP_TO_INT32_IN_MEM,
|
2010-09-22 09:28:21 +08:00
|
|
|
FP_TO_INT64_IN_MEM,
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// This instruction implements SINT_TO_FP with the
|
2010-09-22 09:28:21 +08:00
|
|
|
/// integer source in memory and FP reg result. This corresponds to the
|
|
|
|
/// X86::FILD*m instructions. It has three inputs (token chain, address,
|
|
|
|
/// and source type) and two outputs (FP value and token chain). FILD_FLAG
|
|
|
|
/// also produces a flag).
|
|
|
|
FILD,
|
|
|
|
FILD_FLAG,
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// This instruction implements an extending load to FP stack slots.
|
2010-09-22 09:28:21 +08:00
|
|
|
/// This corresponds to the X86::FLD32m / X86::FLD64m. It takes a chain
|
|
|
|
/// operand, ptr to load from, and a ValueType node indicating the type
|
|
|
|
/// to load to.
|
|
|
|
FLD,
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// This instruction implements a truncating store to FP stack
|
2010-09-22 09:28:21 +08:00
|
|
|
/// slots. This corresponds to the X86::FST32m / X86::FST64m. It takes a
|
|
|
|
/// chain operand, value to store, address, and a ValueType to store it
|
|
|
|
/// as.
|
2010-10-13 02:00:49 +08:00
|
|
|
FST,
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// This instruction grabs the address of the next argument
|
2010-10-13 02:00:49 +08:00
|
|
|
/// from a va_list. (reads and modifies the va_list in memory)
|
|
|
|
VAARG_64
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2010-03-07 03:32:29 +08:00
|
|
|
// WARNING: Do not add anything in the end unless you want the node to
|
|
|
|
// have memop! In fact, starting from ATOMADD64_DAG all opcodes will be
|
|
|
|
// thought as target memory ops!
|
2005-11-15 08:40:23 +08:00
|
|
|
};
|
2015-06-23 17:49:53 +08:00
|
|
|
}
|
2005-11-15 08:40:23 +08:00
|
|
|
|
2008-01-30 03:34:22 +08:00
|
|
|
/// Define some predicates that are used for node matching.
|
|
|
|
namespace X86 {
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the specified
|
2011-02-03 23:50:00 +08:00
|
|
|
/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
|
2013-07-31 19:35:14 +08:00
|
|
|
/// suitable for input to VEXTRACTF128, VEXTRACTI128 instructions.
|
|
|
|
bool isVEXTRACT128Index(SDNode *N);
|
2011-02-03 23:50:00 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the specified
|
2011-02-05 00:08:29 +08:00
|
|
|
/// INSERT_SUBVECTOR operand specifies a subvector insert that is
|
2013-07-31 19:35:14 +08:00
|
|
|
/// suitable for input to VINSERTF128, VINSERTI128 instructions.
|
|
|
|
bool isVINSERT128Index(SDNode *N);
|
2011-02-05 00:08:29 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the specified
|
2013-07-31 19:35:14 +08:00
|
|
|
/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
|
|
|
|
/// suitable for input to VEXTRACTF64X4, VEXTRACTI64X4 instructions.
|
|
|
|
bool isVEXTRACT256Index(SDNode *N);
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the specified
|
2013-07-31 19:35:14 +08:00
|
|
|
/// INSERT_SUBVECTOR operand specifies a subvector insert that is
|
|
|
|
/// suitable for input to VINSERTF64X4, VINSERTI64X4 instructions.
|
|
|
|
bool isVINSERT256Index(SDNode *N);
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return the appropriate
|
2013-07-31 19:35:14 +08:00
|
|
|
/// immediate to extract the specified EXTRACT_SUBVECTOR index
|
|
|
|
/// with VEXTRACTF128, VEXTRACTI128 instructions.
|
|
|
|
unsigned getExtractVEXTRACT128Immediate(SDNode *N);
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return the appropriate
|
2013-07-31 19:35:14 +08:00
|
|
|
/// immediate to insert at the specified INSERT_SUBVECTOR index
|
|
|
|
/// with VINSERTF128, VINSERT128 instructions.
|
|
|
|
unsigned getInsertVINSERT128Immediate(SDNode *N);
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return the appropriate
|
2011-02-03 23:50:00 +08:00
|
|
|
/// immediate to extract the specified EXTRACT_SUBVECTOR index
|
2013-07-31 19:35:14 +08:00
|
|
|
/// with VEXTRACTF64X4, VEXTRACTI64x4 instructions.
|
|
|
|
unsigned getExtractVEXTRACT256Immediate(SDNode *N);
|
2011-02-03 23:50:00 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return the appropriate
|
2011-02-05 00:08:29 +08:00
|
|
|
/// immediate to insert at the specified INSERT_SUBVECTOR index
|
2013-07-31 19:35:14 +08:00
|
|
|
/// with VINSERTF64x4, VINSERTI64x4 instructions.
|
|
|
|
unsigned getInsertVINSERT256Immediate(SDNode *N);
|
2011-02-05 00:08:29 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Returns true if Elt is a constant zero or floating point constant +0.0.
|
2009-07-30 16:33:02 +08:00
|
|
|
bool isZeroNode(SDValue Elt);
|
2009-08-06 07:01:26 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Returns true of the given offset can be
|
2009-08-06 07:01:26 +08:00
|
|
|
/// fit into displacement field of the instruction.
|
|
|
|
bool isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
|
|
|
|
bool hasSymbolicDisplacement = true);
|
2011-06-24 01:54:54 +08:00
|
|
|
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Determines whether the callee is required to pop its
|
2011-06-24 01:54:54 +08:00
|
|
|
/// own arguments. Callee pop is necessary to support tail calls.
|
|
|
|
bool isCalleePop(CallingConv::ID CallingConv,
|
|
|
|
bool is64Bit, bool IsVarArg, bool TailCallOpt);
|
2014-08-15 01:13:26 +08:00
|
|
|
|
|
|
|
/// AVX512 static rounding constants. These need to match the values in
|
|
|
|
/// avx512fintrin.h.
|
|
|
|
enum STATIC_ROUNDING {
|
|
|
|
TO_NEAREST_INT = 0,
|
|
|
|
TO_NEG_INF = 1,
|
|
|
|
TO_POS_INF = 2,
|
|
|
|
TO_ZERO = 3,
|
|
|
|
CUR_DIRECTION = 4
|
|
|
|
};
|
2015-06-23 17:49:53 +08:00
|
|
|
}
|
2008-01-30 03:34:22 +08:00
|
|
|
|
2006-10-19 02:26:48 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
2014-10-02 03:39:32 +08:00
|
|
|
// X86 Implementation of the TargetLowering interface
|
2014-03-31 14:22:15 +08:00
|
|
|
class X86TargetLowering final : public TargetLowering {
|
2005-11-15 08:40:23 +08:00
|
|
|
public:
|
2015-02-03 01:38:43 +08:00
|
|
|
explicit X86TargetLowering(const X86TargetMachine &TM,
|
|
|
|
const X86Subtarget &STI);
|
2005-11-15 08:40:23 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
unsigned getJumpTableEncoding() const override;
|
2015-05-12 09:26:05 +08:00
|
|
|
bool useSoftFloat() const override;
|
2010-01-26 07:38:14 +08:00
|
|
|
|
2015-07-09 23:12:23 +08:00
|
|
|
MVT getScalarShiftAmountTy(const DataLayout &, EVT) const override {
|
2015-07-09 10:09:20 +08:00
|
|
|
return MVT::i8;
|
|
|
|
}
|
2011-02-26 05:41:48 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
const MCExpr *
|
2010-01-26 13:02:42 +08:00
|
|
|
LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
|
|
|
|
const MachineBasicBlock *MBB, unsigned uid,
|
2014-03-09 15:44:38 +08:00
|
|
|
MCContext &Ctx) const override;
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Returns relocation base for the given PIC jumptable.
|
2014-03-09 15:44:38 +08:00
|
|
|
SDValue getPICJumpTableRelocBase(SDValue Table,
|
|
|
|
SelectionDAG &DAG) const override;
|
|
|
|
const MCExpr *
|
2010-01-26 14:28:43 +08:00
|
|
|
getPICJumpTableRelocBaseExpr(const MachineFunction *MF,
|
2014-03-09 15:44:38 +08:00
|
|
|
unsigned JTI, MCContext &Ctx) const override;
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return the desired alignment for ByVal aggregate
|
2008-01-24 07:17:41 +08:00
|
|
|
/// function arguments in the caller parameter area. For X86, aggregates
|
|
|
|
/// that contains are placed at 16-byte boundaries while the rest are at
|
|
|
|
/// 4-byte boundaries.
|
2015-07-09 10:09:28 +08:00
|
|
|
unsigned getByValTypeAlignment(Type *Ty,
|
|
|
|
const DataLayout &DL) const override;
|
2008-05-15 16:39:06 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Returns the target specific optimal type for load
|
2010-04-03 03:36:14 +08:00
|
|
|
/// and store operations as a result of memset, memcpy, and memmove
|
|
|
|
/// lowering. If DstAlign is zero that means it's safe to destination
|
|
|
|
/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
|
|
|
|
/// means there isn't a need to check it against alignment requirement,
|
2012-12-12 10:34:41 +08:00
|
|
|
/// probably because the source does not need to be loaded. If 'IsMemset' is
|
|
|
|
/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
|
|
|
|
/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
|
|
|
|
/// source is constant so it does not need to be loaded.
|
2010-04-17 04:11:05 +08:00
|
|
|
/// It returns EVT::Other if the type should be determined using generic
|
|
|
|
/// target-independent logic.
|
2014-03-09 15:44:38 +08:00
|
|
|
EVT getOptimalMemOpType(uint64_t Size, unsigned DstAlign, unsigned SrcAlign,
|
|
|
|
bool IsMemset, bool ZeroMemset, bool MemcpyStrSrc,
|
|
|
|
MachineFunction &MF) const override;
|
2009-08-16 05:21:19 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Returns true if it's safe to use load / store of the
|
2012-12-12 08:42:09 +08:00
|
|
|
/// specified type to expand memcpy / memset inline. This is mostly true
|
2012-12-12 09:32:07 +08:00
|
|
|
/// for all types except for some special cases. For example, on X86
|
2012-12-12 08:42:09 +08:00
|
|
|
/// targets without SSE2 f64 load / store are done with fldl / fstpl which
|
2012-12-12 09:32:07 +08:00
|
|
|
/// also does type conversion. Note the specified type doesn't have to be
|
|
|
|
/// legal as the hook is used before type legalization.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isSafeMemOpType(MVT VT) const override;
|
2012-12-12 08:42:09 +08:00
|
|
|
|
2015-07-02 01:55:07 +08:00
|
|
|
/// Returns true if the target allows unaligned memory accesses of the
|
|
|
|
/// specified type. Returns whether it is "fast" in the last argument.
|
2014-07-28 01:46:40 +08:00
|
|
|
bool allowsMisalignedMemoryAccesses(EVT VT, unsigned AS, unsigned Align,
|
2014-03-09 15:44:38 +08:00
|
|
|
bool *Fast) const override;
|
2009-07-01 06:38:32 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Provide custom lowering hooks for some operations.
|
2005-11-15 08:40:23 +08:00
|
|
|
///
|
2014-03-09 15:44:38 +08:00
|
|
|
SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
|
2005-11-15 08:40:23 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Replace the results of node with an illegal result
|
2008-12-01 19:39:25 +08:00
|
|
|
/// type with new values built out of custom code.
|
2007-11-24 15:07:01 +08:00
|
|
|
///
|
2014-03-09 15:44:38 +08:00
|
|
|
void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue>&Results,
|
|
|
|
SelectionDAG &DAG) const override;
|
2007-11-24 15:07:01 +08:00
|
|
|
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const override;
|
X86 target specific DAG combine: turn build_vector (load x), (load x+4),
(load x+8), (load x+12), <0, 1, 2, 3> to a single 128-bit load (aligned and
unaligned).
e.g.
__m128 test(float a, float b, float c, float d) {
return _mm_set_ps(d, c, b, a);
}
_test:
movups 4(%esp), %xmm0
ret
llvm-svn: 29042
2006-07-07 16:33:52 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the target has native support for
|
2010-04-17 14:13:15 +08:00
|
|
|
/// the specified value type and it is 'desirable' to use the type for the
|
|
|
|
/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
|
|
|
|
/// instruction encodings are longer and some i16 instructions are slow.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isTypeDesirableForOp(unsigned Opc, EVT VT) const override;
|
2010-04-17 14:13:15 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the target has native support for the
|
2010-04-17 14:13:15 +08:00
|
|
|
/// specified value type and it is 'desirable' to use the type. e.g. On x86
|
|
|
|
/// i16 is legal, but undesirable since i16 instruction encodings are longer
|
|
|
|
/// and some i16 instructions are slow.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const override;
|
2010-04-16 14:14:10 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
MachineBasicBlock *
|
2010-05-01 08:01:06 +08:00
|
|
|
EmitInstrWithCustomInserter(MachineInstr *MI,
|
2014-03-09 15:44:38 +08:00
|
|
|
MachineBasicBlock *MBB) const override;
|
2006-01-11 08:33:36 +08:00
|
|
|
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// This method returns the name of a target specific DAG node.
|
2014-03-09 15:44:38 +08:00
|
|
|
const char *getTargetNodeName(unsigned Opcode) const override;
|
2005-12-20 14:22:03 +08:00
|
|
|
|
[CodeGenPrepare] Teach when it is profitable to speculate calls to @llvm.cttz/ctlz.
If the control flow is modelling an if-statement where the only instruction in
the 'then' basic block (excluding the terminator) is a call to cttz/ctlz,
CodeGenPrepare can try to speculate the cttz/ctlz call and simplify the control
flow graph.
Example:
\code
entry:
%cmp = icmp eq i64 %val, 0
br i1 %cmp, label %end.bb, label %then.bb
then.bb:
%c = tail call i64 @llvm.cttz.i64(i64 %val, i1 true)
br label %end.bb
end.bb:
%cond = phi i64 [ %c, %then.bb ], [ 64, %entry]
\code
In this example, basic block %then.bb is taken if value %val is not zero.
Also, the phi node in %end.bb would propagate the size-of in bits of %val
only if %val is equal to zero.
With this patch, CodeGenPrepare will try to hoist the call to cttz from %then.bb
into basic block %entry only if cttz is cheap to speculate for the target.
Added two new hooks in TargetLowering.h to let targets customize the behavior
(i.e. decide whether it is cheap or not to speculate calls to cttz/ctlz). The
two new methods are 'isCheapToSpeculateCtlz' and 'isCheapToSpeculateCttz'.
By default, both methods return 'false'.
On X86, method 'isCheapToSpeculateCtlz' returns true only if the target has
LZCNT. Method 'isCheapToSpeculateCttz' only returns true if the target has BMI.
Differential Revision: http://reviews.llvm.org/D6728
llvm-svn: 224899
2014-12-28 19:07:35 +08:00
|
|
|
bool isCheapToSpeculateCttz() const override;
|
|
|
|
|
|
|
|
bool isCheapToSpeculateCtlz() const override;
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return the value type to use for ISD::SETCC.
|
2015-07-09 10:09:04 +08:00
|
|
|
EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context,
|
|
|
|
EVT VT) const override;
|
2008-03-10 23:42:14 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Determine which of the bits specified in Mask are known to be either
|
|
|
|
/// zero or one and return them in the KnownZero/KnownOne bitsets.
|
2014-05-15 05:14:37 +08:00
|
|
|
void computeKnownBitsForTargetNode(const SDValue Op,
|
|
|
|
APInt &KnownZero,
|
|
|
|
APInt &KnownOne,
|
|
|
|
const SelectionDAG &DAG,
|
|
|
|
unsigned Depth = 0) const override;
|
2008-05-13 03:56:52 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Determine the number of bits in the operation that are sign bits.
|
2014-03-09 15:44:38 +08:00
|
|
|
unsigned ComputeNumSignBitsForTargetNode(SDValue Op,
|
2014-04-05 04:13:13 +08:00
|
|
|
const SelectionDAG &DAG,
|
2014-03-09 15:44:38 +08:00
|
|
|
unsigned Depth) const override;
|
2010-09-22 04:42:50 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isGAPlusOffset(SDNode *N, const GlobalValue* &GA,
|
|
|
|
int64_t &Offset) const override;
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue getReturnAddressFrameIndex(SelectionDAG &DAG) const;
|
2005-11-15 08:40:23 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
bool ExpandInlineAsm(CallInst *CI) const override;
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2015-07-06 03:29:18 +08:00
|
|
|
ConstraintType getConstraintType(StringRef Constraint) const override;
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2010-10-30 01:29:13 +08:00
|
|
|
/// Examine constraint string and operand type and determine a weight value.
|
2010-09-14 02:15:37 +08:00
|
|
|
/// The operand object must already have been set up with the operand type.
|
2014-03-09 15:44:38 +08:00
|
|
|
ConstraintWeight
|
|
|
|
getSingleConstraintMatchWeight(AsmOperandInfo &info,
|
|
|
|
const char *constraint) const override;
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
const char *LowerXConstraint(EVT ConstraintVT) const override;
|
2008-01-29 10:21:21 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Lower the specified operand into the Ops vector. If it is invalid, don't
|
|
|
|
/// add anything to Ops. If hasMemory is true it means one of the asm
|
|
|
|
/// constraint of the inline asm instruction being processed is 'm'.
|
2014-03-09 15:44:38 +08:00
|
|
|
void LowerAsmOperandForConstraint(SDValue Op,
|
|
|
|
std::string &Constraint,
|
|
|
|
std::vector<SDValue> &Ops,
|
|
|
|
SelectionDAG &DAG) const override;
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2015-07-06 03:29:18 +08:00
|
|
|
unsigned
|
|
|
|
getInlineAsmMemConstraint(StringRef ConstraintCode) const override {
|
2015-05-16 20:09:54 +08:00
|
|
|
if (ConstraintCode == "i")
|
|
|
|
return InlineAsm::Constraint_i;
|
|
|
|
else if (ConstraintCode == "o")
|
|
|
|
return InlineAsm::Constraint_o;
|
|
|
|
else if (ConstraintCode == "v")
|
|
|
|
return InlineAsm::Constraint_v;
|
|
|
|
else if (ConstraintCode == "X")
|
|
|
|
return InlineAsm::Constraint_X;
|
|
|
|
return TargetLowering::getInlineAsmMemConstraint(ConstraintCode);
|
2015-03-16 21:13:41 +08:00
|
|
|
}
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Given a physical register constraint
|
2006-10-19 02:26:48 +08:00
|
|
|
/// (e.g. {edx}), return the register number and the register class for the
|
|
|
|
/// register. This should only be used for C_Register constraints. On
|
|
|
|
/// error, this returns a register number of 0.
|
2015-02-27 06:38:43 +08:00
|
|
|
std::pair<unsigned, const TargetRegisterClass *>
|
|
|
|
getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
|
2015-07-06 03:29:18 +08:00
|
|
|
StringRef Constraint, MVT VT) const override;
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the addressing mode represented
|
2007-03-31 07:15:24 +08:00
|
|
|
/// by AM is legal for this target, for a load/store of the specified type.
|
2015-07-09 10:09:40 +08:00
|
|
|
bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM,
|
|
|
|
Type *Ty, unsigned AS) const override;
|
2007-03-31 07:15:24 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the specified immediate is legal
|
2012-07-17 14:53:39 +08:00
|
|
|
/// icmp immediate, that is the target has icmp instructions which can
|
|
|
|
/// compare a register against the immediate without having to materialize
|
|
|
|
/// the immediate into a register.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isLegalICmpImmediate(int64_t Imm) const override;
|
2012-07-17 14:53:39 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the specified immediate is legal
|
2012-07-17 14:53:39 +08:00
|
|
|
/// add immediate, that is the target has add instructions which can
|
|
|
|
/// add a register and the immediate without having to materialize
|
|
|
|
/// the immediate into a register.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isLegalAddImmediate(int64_t Imm) const override;
|
2012-07-17 14:53:39 +08:00
|
|
|
|
2014-04-26 09:11:26 +08:00
|
|
|
/// \brief Return the cost of the scaling factor used in the addressing
|
|
|
|
/// mode represented by AM for this target, for a load/store
|
|
|
|
/// of the specified type.
|
|
|
|
/// If the AM is supported, the return value must be >= 0.
|
|
|
|
/// If the AM is not supported, it returns a negative value.
|
2015-07-09 10:09:40 +08:00
|
|
|
int getScalingFactorCost(const DataLayout &DL, const AddrMode &AM, Type *Ty,
|
2015-06-01 13:31:59 +08:00
|
|
|
unsigned AS) const override;
|
2014-02-19 18:02:43 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isVectorShiftByScalarCheap(Type *Ty) const override;
|
2014-02-19 18:02:43 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if it's free to truncate a value of
|
Loosen up iv reuse to allow reuse of the same stride but a larger type when truncating from the larger type to smaller type is free.
e.g.
Turns this loop:
LBB1_1: # entry.bb_crit_edge
xorl %ecx, %ecx
xorw %dx, %dx
movw %dx, %si
LBB1_2: # bb
movl L_X$non_lazy_ptr, %edi
movw %si, (%edi)
movl L_Y$non_lazy_ptr, %edi
movw %dx, (%edi)
addw $4, %dx
incw %si
incl %ecx
cmpl %eax, %ecx
jne LBB1_2 # bb
into
LBB1_1: # entry.bb_crit_edge
xorl %ecx, %ecx
xorw %dx, %dx
LBB1_2: # bb
movl L_X$non_lazy_ptr, %esi
movw %cx, (%esi)
movl L_Y$non_lazy_ptr, %esi
movw %dx, (%esi)
addw $4, %dx
incl %ecx
cmpl %eax, %ecx
jne LBB1_2 # bb
llvm-svn: 43375
2007-10-26 09:56:11 +08:00
|
|
|
/// type Ty1 to type Ty2. e.g. On x86 it's free to truncate a i32 value in
|
|
|
|
/// register EAX to i16 by referencing its sub-register AX.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isTruncateFree(Type *Ty1, Type *Ty2) const override;
|
|
|
|
bool isTruncateFree(EVT VT1, EVT VT2) const override;
|
Implement support for using modeling implicit-zero-extension on x86-64
with SUBREG_TO_REG, teach SimpleRegisterCoalescing to coalesce
SUBREG_TO_REG instructions (which are similar to INSERT_SUBREG
instructions), and teach the DAGCombiner to take advantage of this on
targets which support it. This eliminates many redundant
zero-extension operations on x86-64.
This adds a new TargetLowering hook, isZExtFree. It's similar to
isTruncateFree, except it only applies to actual definitions, and not
no-op truncates which may not zero the high bits.
Also, this adds a new optimization to SimplifyDemandedBits: transform
operations like x+y into (zext (add (trunc x), (trunc y))) on targets
where all the casts are no-ops. In contexts where the high part of the
add is explicitly masked off, this allows the mask operation to be
eliminated. Fix the DAGCombiner to avoid undoing these transformations
to eliminate casts on targets where the casts are no-ops.
Also, this adds a new two-address lowering heuristic. Since
two-address lowering runs before coalescing, it helps to be able to
look through copies when deciding whether commuting and/or
three-address conversion are profitable.
Also, fix a bug in LiveInterval::MergeInClobberRanges. It didn't handle
the case that a clobber range extended both before and beyond an
existing live range. In that case, multiple live ranges need to be
added. This was exposed by the new subreg coalescing code.
Remove 2008-05-06-SpillerBug.ll. It was bugpoint-reduced, and the
spiller behavior it was looking for no longer occurrs with the new
instruction selection.
llvm-svn: 68576
2009-04-08 08:15:30 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
bool allowTruncateForTailCall(Type *Ty1, Type *Ty2) const override;
|
Refactor isInTailCallPosition handling
This change came about primarily because of two issues in the existing code.
Niether of:
define i64 @test1(i64 %val) {
%in = trunc i64 %val to i32
tail call i32 @ret32(i32 returned %in)
ret i64 %val
}
define i64 @test2(i64 %val) {
tail call i32 @ret32(i32 returned undef)
ret i32 42
}
should be tail calls, and the function sameNoopInput is responsible. The main
problem is that it is completely symmetric in the "tail call" and "ret" value,
but in reality different things are allowed on each side.
For these cases:
1. Any truncation should lead to a larger value being generated by "tail call"
than needed by "ret".
2. Undef should only be allowed as a source for ret, not as a result of the
call.
Along the way I noticed that a mismatch between what this function treats as a
valid truncation and what the backends see can lead to invalid calls as well
(see x86-32 test case).
This patch refactors the code so that instead of being based primarily on
values which it recurses into when necessary, it starts by inspecting the type
and considers each fundamental slot that the backend will see in turn. For
example, given a pathological function that returned {{}, {{}, i32, {}}, i32}
we would consider each "real" i32 in turn, and ask if it passes through
unchanged. This is much closer to what the backend sees as a result of
ComputeValueVTs.
Aside from the bug fixes, this eliminates the recursion that's going on and, I
believe, makes the bulk of the code significantly easier to understand. The
trade-off is the nasty iterators needed to find the real types inside a
returned value.
llvm-svn: 187787
2013-08-06 17:12:35 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if any actual instruction that defines a
|
Implement support for using modeling implicit-zero-extension on x86-64
with SUBREG_TO_REG, teach SimpleRegisterCoalescing to coalesce
SUBREG_TO_REG instructions (which are similar to INSERT_SUBREG
instructions), and teach the DAGCombiner to take advantage of this on
targets which support it. This eliminates many redundant
zero-extension operations on x86-64.
This adds a new TargetLowering hook, isZExtFree. It's similar to
isTruncateFree, except it only applies to actual definitions, and not
no-op truncates which may not zero the high bits.
Also, this adds a new optimization to SimplifyDemandedBits: transform
operations like x+y into (zext (add (trunc x), (trunc y))) on targets
where all the casts are no-ops. In contexts where the high part of the
add is explicitly masked off, this allows the mask operation to be
eliminated. Fix the DAGCombiner to avoid undoing these transformations
to eliminate casts on targets where the casts are no-ops.
Also, this adds a new two-address lowering heuristic. Since
two-address lowering runs before coalescing, it helps to be able to
look through copies when deciding whether commuting and/or
three-address conversion are profitable.
Also, fix a bug in LiveInterval::MergeInClobberRanges. It didn't handle
the case that a clobber range extended both before and beyond an
existing live range. In that case, multiple live ranges need to be
added. This was exposed by the new subreg coalescing code.
Remove 2008-05-06-SpillerBug.ll. It was bugpoint-reduced, and the
spiller behavior it was looking for no longer occurrs with the new
instruction selection.
llvm-svn: 68576
2009-04-08 08:15:30 +08:00
|
|
|
/// value of type Ty1 implicit zero-extends the value to Ty2 in the result
|
|
|
|
/// register. This does not necessarily include registers defined in
|
|
|
|
/// unknown ways, such as incoming arguments, or copies from unknown
|
|
|
|
/// virtual registers. Also, if isTruncateFree(Ty2, Ty1) is true, this
|
|
|
|
/// does not necessarily apply to truncate instructions. e.g. on x86-64,
|
|
|
|
/// all instructions that define 32-bit values implicit zero-extend the
|
|
|
|
/// result out to 64 bits.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isZExtFree(Type *Ty1, Type *Ty2) const override;
|
|
|
|
bool isZExtFree(EVT VT1, EVT VT2) const override;
|
|
|
|
bool isZExtFree(SDValue Val, EVT VT2) const override;
|
Implement support for using modeling implicit-zero-extension on x86-64
with SUBREG_TO_REG, teach SimpleRegisterCoalescing to coalesce
SUBREG_TO_REG instructions (which are similar to INSERT_SUBREG
instructions), and teach the DAGCombiner to take advantage of this on
targets which support it. This eliminates many redundant
zero-extension operations on x86-64.
This adds a new TargetLowering hook, isZExtFree. It's similar to
isTruncateFree, except it only applies to actual definitions, and not
no-op truncates which may not zero the high bits.
Also, this adds a new optimization to SimplifyDemandedBits: transform
operations like x+y into (zext (add (trunc x), (trunc y))) on targets
where all the casts are no-ops. In contexts where the high part of the
add is explicitly masked off, this allows the mask operation to be
eliminated. Fix the DAGCombiner to avoid undoing these transformations
to eliminate casts on targets where the casts are no-ops.
Also, this adds a new two-address lowering heuristic. Since
two-address lowering runs before coalescing, it helps to be able to
look through copies when deciding whether commuting and/or
three-address conversion are profitable.
Also, fix a bug in LiveInterval::MergeInClobberRanges. It didn't handle
the case that a clobber range extended both before and beyond an
existing live range. In that case, multiple live ranges need to be
added. This was exposed by the new subreg coalescing code.
Remove 2008-05-06-SpillerBug.ll. It was bugpoint-reduced, and the
spiller behavior it was looking for no longer occurrs with the new
instruction selection.
llvm-svn: 68576
2009-04-08 08:15:30 +08:00
|
|
|
|
[CodeGen] Add hook/combine to form vector extloads, enabled on X86.
The combine that forms extloads used to be disabled on vector types,
because "None of the supported targets knows how to perform load and
sign extend on vectors in one instruction."
That's not entirely true, since at least SSE4.1 X86 knows how to do
those sextloads/zextloads (with PMOVS/ZX).
But there are several aspects to getting this right.
First, vector extloads are controlled by a profitability callback.
For instance, on ARM, several instructions have folded extload forms,
so it's not always beneficial to create an extload node (and trying to
match extloads is a whole 'nother can of worms).
The interesting optimization enables folding of s/zextloads to illegal
(splittable) vector types, expanding them into smaller legal extloads.
It's not ideal (it introduces some legalization-like behavior in the
combine) but it's better than the obvious alternative: form illegal
extloads, and later try to split them up. If you do that, you might
generate extloads that can't be split up, but have a valid ext+load
expansion. At vector-op legalization time, it's too late to generate
this kind of code, so you end up forced to scalarize. It's better to
just avoid creating egregiously illegal nodes.
This optimization is enabled unconditionally on X86.
Note that the splitting combine is happy with "custom" extloads. As
is, this bypasses the actual custom lowering, and just unrolls the
extload. But from what I've seen, this is still much better than the
current custom lowering, which does some kind of unrolling at the end
anyway (see for instance load_sext_4i8_to_4i64 on SSE2, and the added
FIXME).
Also note that the existing combine that forms extloads is now also
enabled on legal vectors. This doesn't have a big effect on X86
(because sext+load is usually combined to sext_inreg+aextload).
On ARM it fires on some rare occasions; that's for a separate commit.
Differential Revision: http://reviews.llvm.org/D6904
llvm-svn: 228325
2015-02-06 02:31:02 +08:00
|
|
|
/// Return true if folding a vector load into ExtVal (a sign, zero, or any
|
|
|
|
/// extend node) is profitable.
|
|
|
|
bool isVectorLoadExtDesirable(SDValue) const override;
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if an FMA operation is faster than a pair of fmul and fadd
|
|
|
|
/// instructions. fmuladd intrinsics will be expanded to FMAs when this
|
|
|
|
/// method returns true, otherwise fmuladd is expanded to fmul + fadd.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isFMAFasterThanFMulAndFAdd(EVT VT) const override;
|
2012-08-01 20:06:00 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if it's profitable to narrow
|
2009-05-28 08:35:15 +08:00
|
|
|
/// operations of type VT1 to VT2. e.g. on x86, it's profitable to narrow
|
|
|
|
/// from i32 to i8 but not from i32 to i16.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isNarrowingProfitable(EVT VT1, EVT VT2) const override;
|
2009-05-28 08:35:15 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Returns true if the target can instruction select the
|
2009-10-28 03:56:55 +08:00
|
|
|
/// specified FP immediate natively. If false, the legalizer will
|
|
|
|
/// materialize the FP immediate as a load from a constant pool.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isFPImmLegal(const APFloat &Imm, EVT VT) const override;
|
2009-10-28 03:56:55 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Targets can use this to indicate that they only support *some*
|
|
|
|
/// VECTOR_SHUFFLE operations, those with specific masks. By default, if a
|
|
|
|
/// target supports the VECTOR_SHUFFLE node, all mask values are assumed to
|
|
|
|
/// be legal.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isShuffleMaskLegal(const SmallVectorImpl<int> &Mask,
|
|
|
|
EVT VT) const override;
|
2006-04-20 16:58:49 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Similar to isShuffleMaskLegal. This is used by Targets can use this to
|
|
|
|
/// indicate if there is a suitable VECTOR_SHUFFLE that can be used to
|
|
|
|
/// replace a VAND with a constant pool entry.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
|
|
|
|
EVT VT) const override;
|
2008-03-05 09:30:59 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// If true, then instruction selection should
|
2008-03-05 09:30:59 +08:00
|
|
|
/// seek to shrink the FP constant of the specified type to a smaller type
|
|
|
|
/// in order to save space and / or reduce runtime.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool ShouldShrinkFPConstant(EVT VT) const override {
|
2008-03-05 09:30:59 +08:00
|
|
|
// Don't shrink FP constpool if SSE2 is available since cvtss2sd is more
|
|
|
|
// expensive than a straight movsd. On the other hand, it's important to
|
|
|
|
// shrink long double fp constant since fldt is very slow.
|
2009-08-12 04:47:22 +08:00
|
|
|
return !X86ScalarSSEf64 || VT == MVT::f80;
|
2008-03-05 09:30:59 +08:00
|
|
|
}
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2015-01-06 15:12:52 +08:00
|
|
|
/// Return true if we believe it is correct and profitable to reduce the
|
|
|
|
/// load node to a smaller type.
|
|
|
|
bool shouldReduceLoadWidth(SDNode *Load, ISD::LoadExtType ExtTy,
|
|
|
|
EVT NewVT) const override;
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the specified scalar FP type is computed in an SSE
|
|
|
|
/// register, not on the X87 floating point stack.
|
2009-08-11 06:56:29 +08:00
|
|
|
bool isScalarFPTypeInSSEReg(EVT VT) const {
|
2009-08-12 04:47:22 +08:00
|
|
|
return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
|
|
|
|
(VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1
|
2008-01-18 14:52:41 +08:00
|
|
|
}
|
2008-08-20 05:32:53 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the target uses the MSVC _ftol2 routine for fptoui.
|
2014-06-10 01:08:19 +08:00
|
|
|
bool isTargetFTOL() const;
|
2012-02-25 03:01:22 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the MSVC _ftol2 routine should be used for fptoui to the
|
|
|
|
/// given type.
|
2012-02-25 03:01:22 +08:00
|
|
|
bool isIntegerTypeFTOL(EVT VT) const {
|
|
|
|
return isTargetFTOL() && VT == MVT::i64;
|
|
|
|
}
|
|
|
|
|
2014-01-28 09:20:14 +08:00
|
|
|
/// \brief Returns true if it is beneficial to convert a load of a constant
|
|
|
|
/// to just the constant itself.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool shouldConvertConstantLoadToIntImm(const APInt &Imm,
|
|
|
|
Type *Ty) const override;
|
2014-01-28 09:20:14 +08:00
|
|
|
|
2014-12-17 20:32:17 +08:00
|
|
|
/// Return true if EXTRACT_SUBVECTOR is cheap for this result type
|
|
|
|
/// with this index.
|
|
|
|
bool isExtractSubvectorCheap(EVT ResVT, unsigned Index) const override;
|
|
|
|
|
2014-03-26 20:52:28 +08:00
|
|
|
/// Intel processors have a unified instruction and data cache
|
2014-04-29 15:58:41 +08:00
|
|
|
const char * getClearCacheBuiltinName() const override {
|
2014-04-28 12:05:08 +08:00
|
|
|
return nullptr; // nothing to do, move along.
|
2014-03-26 20:52:28 +08:00
|
|
|
}
|
|
|
|
|
2015-07-10 01:40:29 +08:00
|
|
|
unsigned getRegisterByName(const char* RegName, EVT VT,
|
|
|
|
SelectionDAG &DAG) const override;
|
2014-05-07 00:51:25 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// This method returns a target specific FastISel object,
|
2008-08-20 05:32:53 +08:00
|
|
|
/// or null if the target does not support "fast" ISel.
|
2014-03-09 15:44:38 +08:00
|
|
|
FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
|
|
|
|
const TargetLibraryInfo *libInfo) const override;
|
2009-07-01 06:38:32 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Return true if the target stores stack protector cookies at a fixed
|
|
|
|
/// offset in some non-standard address space, and populates the address
|
|
|
|
/// space and offset as appropriate.
|
2014-03-09 15:44:38 +08:00
|
|
|
bool getStackCookieLocation(unsigned &AddressSpace,
|
|
|
|
unsigned &Offset) const override;
|
2010-07-06 13:18:56 +08:00
|
|
|
|
2011-06-07 07:15:58 +08:00
|
|
|
SDValue BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain, SDValue StackSlot,
|
|
|
|
SelectionDAG &DAG) const;
|
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override;
|
2013-11-15 09:34:59 +08:00
|
|
|
|
2014-07-26 03:31:34 +08:00
|
|
|
bool useLoadStackGuardNode() const override;
|
2014-07-03 10:11:29 +08:00
|
|
|
/// \brief Customize the preferred legalization strategy for certain types.
|
|
|
|
LegalizeTypeAction getPreferredVectorAction(EVT VT) const override;
|
|
|
|
|
2010-07-27 05:50:05 +08:00
|
|
|
protected:
|
2015-02-26 08:00:24 +08:00
|
|
|
std::pair<const TargetRegisterClass *, uint8_t>
|
|
|
|
findRepresentativeClass(const TargetRegisterInfo *TRI,
|
|
|
|
MVT VT) const override;
|
2010-07-27 05:50:05 +08:00
|
|
|
|
2005-11-15 08:40:23 +08:00
|
|
|
private:
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Keep a pointer to the X86Subtarget around so that we can
|
2006-04-26 04:13:52 +08:00
|
|
|
/// make the right decision when generating code for different targets.
|
|
|
|
const X86Subtarget *Subtarget;
|
2012-10-09 00:38:25 +08:00
|
|
|
const DataLayout *TD;
|
2006-04-26 04:13:52 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Select between SSE or x87 floating point ops.
|
2007-09-23 22:52:20 +08:00
|
|
|
/// When SSE is available, use it for f32 operations.
|
|
|
|
/// When SSE2 is available, use it for f64 operations.
|
|
|
|
bool X86ScalarSSEf32;
|
|
|
|
bool X86ScalarSSEf64;
|
2008-01-30 03:34:22 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// A list of legal FP immediates.
|
2009-10-28 03:56:55 +08:00
|
|
|
std::vector<APFloat> LegalFPImmediates;
|
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Indicate that this x86 target can instruction
|
2009-10-28 03:56:55 +08:00
|
|
|
/// select the specified FP immediate natively.
|
|
|
|
void addLegalFPImmediate(const APFloat& Imm) {
|
|
|
|
LegalFPImmediates.push_back(Imm);
|
|
|
|
}
|
|
|
|
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
|
2009-09-02 16:44:58 +08:00
|
|
|
CallingConv::ID CallConv, bool isVarArg,
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
2013-05-25 10:42:55 +08:00
|
|
|
SDLoc dl, SelectionDAG &DAG,
|
2010-04-17 23:26:15 +08:00
|
|
|
SmallVectorImpl<SDValue> &InVals) const;
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
SDValue LowerMemArgument(SDValue Chain,
|
2009-09-02 16:44:58 +08:00
|
|
|
CallingConv::ID CallConv,
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
const SmallVectorImpl<ISD::InputArg> &ArgInfo,
|
2013-05-25 10:42:55 +08:00
|
|
|
SDLoc dl, SelectionDAG &DAG,
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
const CCValAssign &VA, MachineFrameInfo *MFI,
|
2010-04-17 23:26:15 +08:00
|
|
|
unsigned i) const;
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
SDValue LowerMemOpCallTo(SDValue Chain, SDValue StackPtr, SDValue Arg,
|
2013-05-25 10:42:55 +08:00
|
|
|
SDLoc dl, SelectionDAG &DAG,
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
const CCValAssign &VA,
|
2010-04-17 23:26:15 +08:00
|
|
|
ISD::ArgFlagsTy Flags) const;
|
2007-08-31 23:06:30 +08:00
|
|
|
|
2008-01-06 00:56:59 +08:00
|
|
|
// Call lowering helpers.
|
2010-01-27 08:07:07 +08:00
|
|
|
|
2014-10-02 03:39:32 +08:00
|
|
|
/// Check whether the call is eligible for tail call optimization. Targets
|
|
|
|
/// that want to do tail call optimization should implement this function.
|
2010-02-03 07:55:14 +08:00
|
|
|
bool IsEligibleForTailCallOptimization(SDValue Callee,
|
2010-01-27 08:07:07 +08:00
|
|
|
CallingConv::ID CalleeCC,
|
|
|
|
bool isVarArg,
|
2010-03-16 02:54:48 +08:00
|
|
|
bool isCalleeStructRet,
|
|
|
|
bool isCallerStructRet,
|
2012-09-25 13:32:34 +08:00
|
|
|
Type *RetTy,
|
2010-01-27 14:25:16 +08:00
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
2010-07-07 23:54:55 +08:00
|
|
|
const SmallVectorImpl<SDValue> &OutVals,
|
2010-01-27 14:25:16 +08:00
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
2010-01-27 08:07:07 +08:00
|
|
|
SelectionDAG& DAG) const;
|
2010-04-17 23:26:15 +08:00
|
|
|
bool IsCalleePop(bool isVarArg, CallingConv::ID CallConv) const;
|
2008-07-28 05:46:04 +08:00
|
|
|
SDValue EmitTailCallLoadRetAddr(SelectionDAG &DAG, SDValue &OutRetAddr,
|
|
|
|
SDValue Chain, bool IsTailCall, bool Is64Bit,
|
2013-05-25 10:42:55 +08:00
|
|
|
int FPDiff, SDLoc dl) const;
|
2008-04-13 02:11:06 +08:00
|
|
|
|
2010-04-17 23:26:15 +08:00
|
|
|
unsigned GetAlignedArgumentStackSize(unsigned StackSize,
|
|
|
|
SelectionDAG &DAG) const;
|
2006-01-27 16:10:46 +08:00
|
|
|
|
2009-05-23 17:59:16 +08:00
|
|
|
std::pair<SDValue,SDValue> FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
|
2012-02-25 11:37:25 +08:00
|
|
|
bool isSigned,
|
|
|
|
bool isReplace) const;
|
Optimize splat of a scalar load into a shuffle of a vector load when it's legal. e.g.
vector_shuffle (scalar_to_vector (i32 load (ptr + 4))), undef, <0, 0, 0, 0>
=>
vector_shuffle (v4i32 load ptr), undef, <1, 1, 1, 1>
iff ptr is 16-byte aligned (or can be made into 16-byte aligned).
llvm-svn: 90984
2009-12-10 05:00:30 +08:00
|
|
|
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const;
|
2013-08-05 16:52:21 +08:00
|
|
|
SDValue LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const;
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const;
|
2014-05-17 06:47:43 +08:00
|
|
|
SDValue LowerVSELECT(SDValue Op, SelectionDAG &DAG) const;
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const;
|
2014-03-02 17:19:44 +08:00
|
|
|
SDValue ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) const;
|
2014-04-09 20:37:50 +08:00
|
|
|
SDValue InsertBitToMaskVector(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
|
2013-05-25 10:42:55 +08:00
|
|
|
SDValue LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
|
2009-02-05 04:06:27 +08:00
|
|
|
int64_t Offset, SelectionDAG &DAG) const;
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerUINT_TO_FP_i64(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerUINT_TO_FP_i32(SDValue Op, SelectionDAG &DAG) const;
|
2012-10-24 01:36:08 +08:00
|
|
|
SDValue lowerUINT_TO_FP_vec(SDValue Op, SelectionDAG &DAG) const;
|
2013-01-21 05:34:37 +08:00
|
|
|
SDValue LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const;
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerFP_TO_UINT(SDValue Op, SelectionDAG &DAG) const;
|
2010-04-21 09:47:12 +08:00
|
|
|
SDValue LowerToBT(SDValue And, ISD::CondCode CC,
|
2013-05-25 10:42:55 +08:00
|
|
|
SDLoc dl, SelectionDAG &DAG) const;
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerSELECT(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerMEMSET(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerVAARG(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerFRAME_TO_ARGS_OFFSET(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const;
|
2012-10-16 06:39:43 +08:00
|
|
|
SDValue lowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue lowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const;
|
2011-09-06 21:37:06 +08:00
|
|
|
SDValue LowerINIT_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) const;
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) const;
|
2014-05-06 09:20:42 +08:00
|
|
|
SDValue LowerWin64_i128OP(SDValue Op, SelectionDAG &DAG) const;
|
Extend the statepoint intrinsic to allow statepoints to be marked as transitions from GC-aware code to code that is not GC-aware.
This changes the shape of the statepoint intrinsic from:
@llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 unused, ...call args, i32 # deopt args, ...deopt args, ...gc args)
to:
@llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 flags, ...call args, i32 # transition args, ...transition args, i32 # deopt args, ...deopt args, ...gc args)
This extension offers the backend the opportunity to insert (somewhat) arbitrary code to manage the transition from GC-aware code to code that is not GC-aware and back.
In order to support the injection of transition code, this extension wraps the STATEPOINT ISD node generated by the usual lowering lowering with two additional nodes: GC_TRANSITION_START and GC_TRANSITION_END. The transition arguments that were passed passed to the intrinsic (if any) are lowered and provided as operands to these nodes and may be used by the backend during code generation.
Eventually, the lowering of the GC_TRANSITION_{START,END} nodes should be informed by the GC strategy in use for the function containing the intrinsic call; for now, these nodes are instead replaced with no-ops.
Differential Revision: http://reviews.llvm.org/D9501
llvm-svn: 236888
2015-05-09 02:07:42 +08:00
|
|
|
SDValue LowerGC_TRANSITION_START(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerGC_TRANSITION_END(SDValue Op, SelectionDAG &DAG) const;
|
2008-12-01 19:39:25 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
SDValue
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
LowerFormalArguments(SDValue Chain,
|
2009-09-02 16:44:58 +08:00
|
|
|
CallingConv::ID CallConv, bool isVarArg,
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
2013-05-25 10:42:55 +08:00
|
|
|
SDLoc dl, SelectionDAG &DAG,
|
2014-03-09 15:44:38 +08:00
|
|
|
SmallVectorImpl<SDValue> &InVals) const override;
|
|
|
|
SDValue LowerCall(CallLoweringInfo &CLI,
|
|
|
|
SmallVectorImpl<SDValue> &InVals) const override;
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
SDValue LowerReturn(SDValue Chain,
|
|
|
|
CallingConv::ID CallConv, bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
|
|
|
const SmallVectorImpl<SDValue> &OutVals,
|
|
|
|
SDLoc dl, SelectionDAG &DAG) const override;
|
Major calling convention code refactoring.
Instead of awkwardly encoding calling-convention information with ISD::CALL,
ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
provides three virtual functions for targets to override:
LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
lowering done on the special nodes. They provide the same information, but
in a more immediately usable format.
This also reworks much of the target-independent tail call logic. The
decision of whether or not to perform a tail call is now cleanly split
between target-independent portions, and the target dependent portion
in IsEligibleForTailCallOptimization.
This also synchronizes all in-tree targets, to help enable future
refactoring and feature work.
llvm-svn: 78142
2009-08-05 09:29:28 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
bool isUsedByReturnOnly(SDNode *N, SDValue &Chain) const override;
|
2010-12-01 07:55:39 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
bool mayBeEmittedAsTailCall(CallInst *CI) const override;
|
2011-03-21 09:19:09 +08:00
|
|
|
|
2014-08-08 16:21:19 +08:00
|
|
|
EVT getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
|
2014-03-09 15:44:38 +08:00
|
|
|
ISD::NodeType ExtendKind) const override;
|
2011-03-17 06:20:18 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
bool CanLowerReturn(CallingConv::ID CallConv, MachineFunction &MF,
|
|
|
|
bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
|
|
|
LLVMContext &Context) const override;
|
2009-11-07 10:11:54 +08:00
|
|
|
|
2014-04-04 13:16:06 +08:00
|
|
|
const MCPhysReg *getScratchRegisters(CallingConv::ID CC) const override;
|
2013-11-09 09:51:33 +08:00
|
|
|
|
2014-09-17 08:06:58 +08:00
|
|
|
bool shouldExpandAtomicLoadInIR(LoadInst *SI) const override;
|
|
|
|
bool shouldExpandAtomicStoreInIR(StoreInst *SI) const override;
|
Mutate TargetLowering::shouldExpandAtomicRMWInIR to specifically dictate how AtomicRMWInsts are expanded.
Summary:
In PNaCl, most atomic instructions have their own @llvm.nacl.atomic.* function, each one, with a few exceptions, represents a consistent behaviour across all NaCl-supported targets. Unfortunately, the atomic RMW operations nand, [u]min, and [u]max aren't directly represented by any such @llvm.nacl.atomic.* function. This patch refines shouldExpandAtomicRMWInIR in TargetLowering so that a future `Le32TargetLowering` class can selectively inform the caller how the target desires the atomic RMW instruction to be expanded (ie via load-linked/store-conditional for ARM/AArch64, via cmpxchg for X86/others?, or not at all for Mips) if at all.
This does not represent a behavioural change and as such no tests were added.
Patch by: Richard Diamond.
Reviewers: jfb
Reviewed By: jfb
Subscribers: jfb, aemerson, t.p.northover, llvm-commits
Differential Revision: http://reviews.llvm.org/D7713
llvm-svn: 231250
2015-03-04 23:47:57 +08:00
|
|
|
TargetLoweringBase::AtomicRMWExpansionKind
|
|
|
|
shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const override;
|
2014-09-17 08:06:58 +08:00
|
|
|
|
2014-09-26 01:27:43 +08:00
|
|
|
LoadInst *
|
|
|
|
lowerIdempotentRMWIntoFencedLoad(AtomicRMWInst *AI) const override;
|
|
|
|
|
2014-09-17 08:06:58 +08:00
|
|
|
bool needsCmpXchgNb(const Type *MemType) const;
|
|
|
|
|
2012-09-20 11:06:15 +08:00
|
|
|
/// Utility function to emit atomic-load-arith operations (and, or, xor,
|
|
|
|
/// nand, max, min, umax, umin). It takes the corresponding instruction to
|
|
|
|
/// expand, the associated machine basic block, and the associated X86
|
|
|
|
/// opcodes for reg/reg.
|
|
|
|
MachineBasicBlock *EmitAtomicLoadArith(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *MBB) const;
|
|
|
|
|
|
|
|
/// Utility function to emit atomic-load-arith operations (and, or, xor,
|
|
|
|
/// nand, add, sub, swap) for 64-bit operands on 32-bit target.
|
|
|
|
MachineBasicBlock *EmitAtomicLoadArith6432(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *MBB) const;
|
2009-03-05 03:44:21 +08:00
|
|
|
|
2010-10-13 02:00:49 +08:00
|
|
|
// Utility function to emit the low-level va_arg code for X86-64.
|
|
|
|
MachineBasicBlock *EmitVAARG64WithCustomInserter(
|
|
|
|
MachineInstr *MI,
|
|
|
|
MachineBasicBlock *MBB) const;
|
|
|
|
|
2009-08-15 09:38:56 +08:00
|
|
|
/// Utility function to emit the xmm reg save portion of va_start.
|
|
|
|
MachineBasicBlock *EmitVAStartSaveXMMRegsWithCustomInserter(
|
|
|
|
MachineInstr *BInstr,
|
|
|
|
MachineBasicBlock *BB) const;
|
|
|
|
|
2009-09-02 13:57:00 +08:00
|
|
|
MachineBasicBlock *EmitLoweredSelect(MachineInstr *I,
|
2010-05-01 08:01:06 +08:00
|
|
|
MachineBasicBlock *BB) const;
|
2010-03-07 03:32:29 +08:00
|
|
|
|
2010-10-21 09:41:01 +08:00
|
|
|
MachineBasicBlock *EmitLoweredWinAlloca(MachineInstr *MI,
|
2010-05-01 08:01:06 +08:00
|
|
|
MachineBasicBlock *BB) const;
|
2010-10-21 07:40:27 +08:00
|
|
|
|
2011-08-31 03:47:04 +08:00
|
|
|
MachineBasicBlock *EmitLoweredSegAlloca(MachineInstr *MI,
|
2014-09-22 21:11:35 +08:00
|
|
|
MachineBasicBlock *BB) const;
|
2011-08-31 03:47:04 +08:00
|
|
|
|
2010-06-03 12:07:48 +08:00
|
|
|
MachineBasicBlock *EmitLoweredTLSCall(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *BB) const;
|
2010-03-07 03:32:29 +08:00
|
|
|
|
2010-11-28 04:43:02 +08:00
|
|
|
MachineBasicBlock *emitLoweredTLSAddr(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *BB) const;
|
|
|
|
|
2012-10-16 06:39:43 +08:00
|
|
|
MachineBasicBlock *emitEHSjLjSetJmp(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *MBB) const;
|
|
|
|
|
|
|
|
MachineBasicBlock *emitEHSjLjLongJmp(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *MBB) const;
|
|
|
|
|
2014-01-24 04:23:36 +08:00
|
|
|
MachineBasicBlock *emitFMA3Instr(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *MBB) const;
|
|
|
|
|
2009-03-05 03:44:21 +08:00
|
|
|
/// Emit nodes that will be selected as "test Op0,Op0", or something
|
2009-03-07 09:58:32 +08:00
|
|
|
/// equivalent, for use with the given x86 condition code.
|
2014-04-15 06:23:06 +08:00
|
|
|
SDValue EmitTest(SDValue Op0, unsigned X86CC, SDLoc dl,
|
2014-04-13 14:39:55 +08:00
|
|
|
SelectionDAG &DAG) const;
|
2009-03-05 03:44:21 +08:00
|
|
|
|
|
|
|
/// Emit nodes that will be selected as "cmp Op0,Op1", or something
|
2014-06-10 18:50:11 +08:00
|
|
|
/// equivalent, for use with the given x86 condition code.
|
|
|
|
SDValue EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC, SDLoc dl,
|
|
|
|
SelectionDAG &DAG) const;
|
2012-04-27 20:07:43 +08:00
|
|
|
|
|
|
|
/// Convert a comparison if required by the subtarget.
|
|
|
|
SDValue ConvertCmpIfNecessary(SDValue Cmp, SelectionDAG &DAG) const;
|
2014-10-25 01:02:16 +08:00
|
|
|
|
|
|
|
/// Use rsqrt* to speed up sqrt calculations.
|
|
|
|
SDValue getRsqrtEstimate(SDValue Operand, DAGCombinerInfo &DCI,
|
|
|
|
unsigned &RefinementSteps,
|
|
|
|
bool &UseOneConstNR) const override;
|
2014-11-12 04:51:00 +08:00
|
|
|
|
|
|
|
/// Use rcp* to speed up fdiv calculations.
|
|
|
|
SDValue getRecipEstimate(SDValue Operand, DAGCombinerInfo &DCI,
|
|
|
|
unsigned &RefinementSteps) const override;
|
[x86] Implement combineRepeatedFPDivisors
Set the transform bar at 2 divisions because the fastest current
x86 FP divider circuit is in SandyBridge / Haswell at 10 cycle
latency (best case) relative to a 5 cycle multiplier.
So that's the worst case for this transform (no latency win),
but multiplies are obviously pipelined while divisions are not,
so there's still a big throughput win which we would expect to
show up in typical FP code.
These are the sequences I'm comparing:
divss %xmm2, %xmm0
mulss %xmm1, %xmm0
divss %xmm2, %xmm0
Becomes:
movss LCPI0_0(%rip), %xmm3 ## xmm3 = mem[0],zero,zero,zero
divss %xmm2, %xmm3
mulss %xmm3, %xmm0
mulss %xmm1, %xmm0
mulss %xmm3, %xmm0
[Ignore for the moment that we don't optimize the chain of 3 multiplies
into 2 independent fmuls followed by 1 dependent fmul...this is the DAG
version of: https://llvm.org/bugs/show_bug.cgi?id=21768 ...if we fix that,
then the transform becomes even more profitable on all targets.]
Differential Revision: http://reviews.llvm.org/D8941
llvm-svn: 235012
2015-04-15 23:22:55 +08:00
|
|
|
|
|
|
|
/// Reassociate floating point divisions into multiply by reciprocal.
|
|
|
|
bool combineRepeatedFPDivisors(unsigned NumUsers) const override;
|
2005-11-15 08:40:23 +08:00
|
|
|
};
|
2008-09-03 08:03:49 +08:00
|
|
|
|
|
|
|
namespace X86 {
|
2012-08-03 12:06:28 +08:00
|
|
|
FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
|
|
|
|
const TargetLibraryInfo *libInfo);
|
2008-09-03 08:03:49 +08:00
|
|
|
}
|
2015-06-23 17:49:53 +08:00
|
|
|
}
|
2005-11-15 08:40:23 +08:00
|
|
|
|
|
|
|
#endif // X86ISELLOWERING_H
|