2005-11-15 00:40:23 +00:00
|
|
|
//===-- X86ISelLowering.h - X86 DAG Lowering Interface ----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Chris Lattner and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the interfaces that X86 uses to lower LLVM code into a
|
|
|
|
// selection DAG.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86ISELLOWERING_H
|
|
|
|
#define X86ISELLOWERING_H
|
|
|
|
|
2006-01-27 08:10:46 +00:00
|
|
|
#include "X86Subtarget.h"
|
2005-11-15 00:40:23 +00:00
|
|
|
#include "llvm/Target/TargetLowering.h"
|
|
|
|
#include "llvm/CodeGen/SelectionDAG.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace X86ISD {
|
2006-01-06 00:43:03 +00:00
|
|
|
// X86 Specific DAG Nodes
|
2005-11-15 00:40:23 +00:00
|
|
|
enum NodeType {
|
|
|
|
// Start the numbering where the builtin ops leave off.
|
2005-12-17 01:21:05 +00:00
|
|
|
FIRST_NUMBER = ISD::BUILTIN_OP_END+X86::INSTRUCTION_LIST_END,
|
2005-11-15 00:40:23 +00:00
|
|
|
|
2006-01-09 18:33:28 +00:00
|
|
|
/// SHLD, SHRD - Double shift instructions. These correspond to
|
|
|
|
/// X86::SHLDxx and X86::SHRDxx instructions.
|
|
|
|
SHLD,
|
|
|
|
SHRD,
|
|
|
|
|
2006-01-31 03:14:29 +00:00
|
|
|
/// FAND - Bitwise logical AND of floating point values. This corresponds
|
|
|
|
/// to X86::ANDPS or X86::ANDPD.
|
|
|
|
FAND,
|
|
|
|
|
2007-01-05 07:55:56 +00:00
|
|
|
/// FOR - Bitwise logical OR of floating point values. This corresponds
|
|
|
|
/// to X86::ORPS or X86::ORPD.
|
|
|
|
FOR,
|
|
|
|
|
2006-01-31 22:28:30 +00:00
|
|
|
/// FXOR - Bitwise logical XOR of floating point values. This corresponds
|
|
|
|
/// to X86::XORPS or X86::XORPD.
|
|
|
|
FXOR,
|
|
|
|
|
2007-01-05 21:37:56 +00:00
|
|
|
/// FSRL - Bitwise logical right shift of floating point values. These
|
|
|
|
/// corresponds to X86::PSRLDQ.
|
2007-01-05 07:55:56 +00:00
|
|
|
FSRL,
|
|
|
|
|
2006-02-04 02:20:30 +00:00
|
|
|
/// FILD, FILD_FLAG - This instruction implements SINT_TO_FP with the
|
|
|
|
/// 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).
|
2006-01-12 22:54:21 +00:00
|
|
|
FILD,
|
2006-02-04 02:20:30 +00:00
|
|
|
FILD_FLAG,
|
2005-11-15 00:40:23 +00:00
|
|
|
|
|
|
|
/// FP_TO_INT*_IN_MEM - This instruction implements FP_TO_SINT with the
|
|
|
|
/// integer destination in memory and a FP reg source. This corresponds
|
|
|
|
/// to the X86::FIST*m instructions and the rounding mode change stuff. It
|
2006-10-18 18:26:48 +00:00
|
|
|
/// has two inputs (token chain and address) and two outputs (int value
|
|
|
|
/// and token chain).
|
2005-11-15 00:40:23 +00:00
|
|
|
FP_TO_INT16_IN_MEM,
|
|
|
|
FP_TO_INT32_IN_MEM,
|
|
|
|
FP_TO_INT64_IN_MEM,
|
|
|
|
|
2005-12-21 02:39:21 +00:00
|
|
|
/// FLD - This instruction implements an extending load to FP stack slots.
|
|
|
|
/// This corresponds to the X86::FLD32m / X86::FLD64m. It takes a chain
|
2005-12-23 07:31:11 +00:00
|
|
|
/// operand, ptr to load from, and a ValueType node indicating the type
|
|
|
|
/// to load to.
|
2005-12-21 02:39:21 +00:00
|
|
|
FLD,
|
|
|
|
|
2006-01-05 00:27:02 +00:00
|
|
|
/// FST - This instruction implements a truncating store to FP stack
|
|
|
|
/// 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.
|
|
|
|
FST,
|
|
|
|
|
2007-02-25 08:15:11 +00:00
|
|
|
/// FP_GET_RESULT - This corresponds to FpGETRESULT pseudo instruction
|
|
|
|
/// which copies from ST(0) to the destination. It takes a chain and
|
|
|
|
/// writes a RFP result and a chain.
|
2006-01-05 00:27:02 +00:00
|
|
|
FP_GET_RESULT,
|
|
|
|
|
2007-02-25 08:15:11 +00:00
|
|
|
/// FP_SET_RESULT - This corresponds to FpSETRESULT pseudo instruction
|
|
|
|
/// which copies the source operand to ST(0). It takes a chain+value and
|
|
|
|
/// returns a chain and a flag.
|
2005-12-21 02:39:21 +00:00
|
|
|
FP_SET_RESULT,
|
|
|
|
|
2005-11-15 00:40:23 +00:00
|
|
|
/// CALL/TAILCALL - These operations represent an abstract X86 call
|
|
|
|
/// 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)
|
|
|
|
///
|
|
|
|
/// The CALL vs TAILCALL distinction boils down to whether the callee is
|
|
|
|
/// known not to modify the caller's stack frame, as is standard with
|
|
|
|
/// LLVM.
|
|
|
|
CALL,
|
|
|
|
TAILCALL,
|
2005-11-20 21:41:10 +00:00
|
|
|
|
|
|
|
/// RDTSC_DAG - This operation implements the lowering for
|
|
|
|
/// readcyclecounter
|
|
|
|
RDTSC_DAG,
|
2005-12-17 01:21:05 +00:00
|
|
|
|
|
|
|
/// X86 compare and logical compare instructions.
|
2006-04-05 23:38:46 +00:00
|
|
|
CMP, TEST, COMI, UCOMI,
|
2005-12-17 01:21:05 +00:00
|
|
|
|
2005-12-21 20:21:51 +00:00
|
|
|
/// X86 SetCC. Operand 1 is condition code, and operand 2 is the flag
|
|
|
|
/// operand produced by a CMP instruction.
|
|
|
|
SETCC,
|
|
|
|
|
|
|
|
/// X86 conditional moves. Operand 1 and operand 2 are the two values
|
2006-10-18 18:26:48 +00:00
|
|
|
/// to select from (operand 1 is a R/W operand). Operand 3 is the
|
|
|
|
/// condition code, and operand 4 is the flag operand produced by a CMP
|
|
|
|
/// or TEST instruction. It also writes a flag result.
|
2005-12-17 01:21:05 +00:00
|
|
|
CMOV,
|
2005-12-19 23:12:38 +00:00
|
|
|
|
2005-12-21 20:21:51 +00:00
|
|
|
/// X86 conditional branches. Operand 1 is the chain operand, operand 2
|
|
|
|
/// is the block to branch if condition is true, operand 3 is the
|
|
|
|
/// condition code, and operand 4 is the flag operand produced by a CMP
|
|
|
|
/// or TEST instruction.
|
2005-12-19 23:12:38 +00:00
|
|
|
BRCOND,
|
2005-12-21 02:39:21 +00:00
|
|
|
|
2006-01-11 22:15:48 +00:00
|
|
|
/// Return with a flag operand. Operand 1 is the chain operand, operand
|
|
|
|
/// 2 is the number of bytes of stack to pop.
|
2005-12-21 02:39:21 +00:00
|
|
|
RET_FLAG,
|
2006-01-11 22:15:48 +00:00
|
|
|
|
|
|
|
/// REP_STOS - Repeat fill, corresponds to X86::REP_STOSx.
|
|
|
|
REP_STOS,
|
|
|
|
|
|
|
|
/// REP_MOVS - Repeat move, corresponds to X86::REP_MOVSx.
|
|
|
|
REP_MOVS,
|
2006-01-31 22:28:30 +00:00
|
|
|
|
|
|
|
/// LOAD_PACK Load a 128-bit packed float / double value. It has the same
|
|
|
|
/// operands as a normal load.
|
|
|
|
LOAD_PACK,
|
2006-02-18 00:15:05 +00:00
|
|
|
|
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
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29042 91177308-0d34-0410-b5e6-96231b3b80d8
2006-07-07 08:33:52 +00:00
|
|
|
/// LOAD_UA Load an unaligned 128-bit value. It has the same operands as
|
|
|
|
/// a normal load.
|
|
|
|
LOAD_UA,
|
|
|
|
|
2006-02-18 00:15:05 +00:00
|
|
|
/// GlobalBaseReg - On Darwin, this node represents the result of the popl
|
|
|
|
/// at function entry, used for PIC code.
|
|
|
|
GlobalBaseReg,
|
2006-02-23 02:43:52 +00:00
|
|
|
|
2006-09-28 23:33:12 +00:00
|
|
|
/// Wrapper - A wrapper node for TargetConstantPool,
|
2006-02-23 20:41:18 +00:00
|
|
|
/// TargetExternalSymbol, and TargetGlobalAddress.
|
|
|
|
Wrapper,
|
2006-03-21 23:01:21 +00:00
|
|
|
|
2006-11-30 21:55:46 +00:00
|
|
|
/// WrapperRIP - Special wrapper used under X86-64 PIC mode for RIP
|
|
|
|
/// relative displacements.
|
|
|
|
WrapperRIP,
|
|
|
|
|
2006-03-24 23:15:12 +00:00
|
|
|
/// S2VEC - X86 version of SCALAR_TO_VECTOR. The destination base does not
|
|
|
|
/// have to match the operand type.
|
|
|
|
S2VEC,
|
2006-03-22 02:53:00 +00:00
|
|
|
|
2006-03-31 19:22:53 +00:00
|
|
|
/// PEXTRW - Extract a 16-bit value from a vector and zero extend it to
|
2006-03-31 21:55:24 +00:00
|
|
|
/// i32, corresponds to X86::PEXTRW.
|
2006-03-31 19:22:53 +00:00
|
|
|
PEXTRW,
|
2006-03-31 21:55:24 +00:00
|
|
|
|
|
|
|
/// PINSRW - Insert the lower 16-bits of a 32-bit value to a vector,
|
|
|
|
/// corresponds to X86::PINSRW.
|
2006-11-10 21:43:37 +00:00
|
|
|
PINSRW,
|
|
|
|
|
|
|
|
/// FMAX, FMIN - Floating point max and min.
|
|
|
|
///
|
2007-04-20 21:38:10 +00:00
|
|
|
FMAX, FMIN,
|
|
|
|
// Thread Local Storage
|
|
|
|
TLSADDR, THREAD_POINTER
|
2005-11-15 00:40:23 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2006-03-22 02:53:00 +00:00
|
|
|
/// Define some predicates that are used for node matching.
|
|
|
|
namespace X86 {
|
2006-03-22 18:59:22 +00:00
|
|
|
/// isPSHUFDMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a shuffle of elements that is suitable for input to PSHUFD.
|
|
|
|
bool isPSHUFDMask(SDNode *N);
|
|
|
|
|
2006-03-29 23:07:14 +00:00
|
|
|
/// isPSHUFHWMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a shuffle of elements that is suitable for input to PSHUFD.
|
|
|
|
bool isPSHUFHWMask(SDNode *N);
|
|
|
|
|
|
|
|
/// isPSHUFLWMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a shuffle of elements that is suitable for input to PSHUFD.
|
|
|
|
bool isPSHUFLWMask(SDNode *N);
|
|
|
|
|
2006-03-24 01:18:28 +00:00
|
|
|
/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a shuffle of elements that is suitable for input to SHUFP*.
|
|
|
|
bool isSHUFPMask(SDNode *N);
|
|
|
|
|
2006-03-24 02:58:06 +00:00
|
|
|
/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
|
|
|
|
bool isMOVHLPSMask(SDNode *N);
|
|
|
|
|
Fixed a bug which causes x86 be to incorrectly match
shuffle v, undef, <2, ?, 3, ?>
to movhlps
It should match to unpckhps instead.
Added proper matching code for
shuffle v, undef, <2, 3, 2, 3>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31519 91177308-0d34-0410-b5e6-96231b3b80d8
2006-11-07 22:14:24 +00:00
|
|
|
/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
|
|
|
|
/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
|
|
|
|
/// <2, 3, 2, 3>
|
|
|
|
bool isMOVHLPS_v_undef_Mask(SDNode *N);
|
|
|
|
|
2006-04-06 23:23:56 +00:00
|
|
|
/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
|
|
|
|
bool isMOVLPMask(SDNode *N);
|
|
|
|
|
|
|
|
/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
|
2006-04-19 20:35:22 +00:00
|
|
|
/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
|
|
|
|
/// as well as MOVLHPS.
|
2006-04-06 23:23:56 +00:00
|
|
|
bool isMOVHPMask(SDNode *N);
|
|
|
|
|
2006-03-28 00:39:58 +00:00
|
|
|
/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a shuffle of elements that is suitable for input to UNPCKL.
|
2006-04-20 08:58:49 +00:00
|
|
|
bool isUNPCKLMask(SDNode *N, bool V2IsSplat = false);
|
2006-03-28 00:39:58 +00:00
|
|
|
|
2006-03-28 02:43:26 +00:00
|
|
|
/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a shuffle of elements that is suitable for input to UNPCKH.
|
2006-04-20 08:58:49 +00:00
|
|
|
bool isUNPCKHMask(SDNode *N, bool V2IsSplat = false);
|
2006-03-28 02:43:26 +00:00
|
|
|
|
Handle canonical form of e.g.
vector_shuffle v1, v1, <0, 4, 1, 5, 2, 6, 3, 7>
This is turned into
vector_shuffle v1, <undef>, <0, 0, 1, 1, 2, 2, 3, 3>
by dag combiner.
It would match a {p}unpckl on x86.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27437 91177308-0d34-0410-b5e6-96231b3b80d8
2006-04-05 07:20:06 +00:00
|
|
|
/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
|
|
|
|
/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
|
|
|
|
/// <0, 0, 1, 1>
|
|
|
|
bool isUNPCKL_v_undef_Mask(SDNode *N);
|
|
|
|
|
Support for the special case of a vector with the canonical form:
vector_shuffle v1, v2, <2, 6, 3, 7>
I.e.
vector_shuffle v, undef, <2, 2, 3, 3>
MMX only has a shuffle for v4i16 vectors. It needs to use the unpackh for
this type of operation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36403 91177308-0d34-0410-b5e6-96231b3b80d8
2007-04-24 21:16:55 +00:00
|
|
|
/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
|
|
|
|
/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
|
|
|
|
/// <2, 2, 3, 3>
|
|
|
|
bool isUNPCKH_v_undef_Mask(SDNode *N);
|
|
|
|
|
Now generating perfect (I think) code for "vector set" with a single non-zero
scalar value.
e.g.
_mm_set_epi32(0, a, 0, 0);
==>
movd 4(%esp), %xmm0
pshufd $69, %xmm0, %xmm0
_mm_set_epi8(0, 0, 0, 0, 0, a, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
==>
movzbw 4(%esp), %ax
movzwl %ax, %eax
pxor %xmm0, %xmm0
pinsrw $5, %eax, %xmm0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27923 91177308-0d34-0410-b5e6-96231b3b80d8
2006-04-21 01:05:10 +00:00
|
|
|
/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a shuffle of elements that is suitable for input to MOVSS,
|
|
|
|
/// MOVSD, and MOVD, i.e. setting the lowest element.
|
|
|
|
bool isMOVLMask(SDNode *N);
|
2006-04-11 00:19:04 +00:00
|
|
|
|
2006-04-14 21:59:03 +00:00
|
|
|
/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
|
|
|
|
bool isMOVSHDUPMask(SDNode *N);
|
|
|
|
|
|
|
|
/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
|
|
|
|
bool isMOVSLDUPMask(SDNode *N);
|
|
|
|
|
2006-03-22 02:53:00 +00:00
|
|
|
/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a splat of a single element.
|
|
|
|
bool isSplatMask(SDNode *N);
|
|
|
|
|
2006-10-27 21:08:32 +00:00
|
|
|
/// isSplatLoMask - Return true if the specified VECTOR_SHUFFLE operand
|
|
|
|
/// specifies a splat of zero element.
|
|
|
|
bool isSplatLoMask(SDNode *N);
|
|
|
|
|
2006-03-22 08:01:21 +00:00
|
|
|
/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
|
|
|
|
/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
|
|
|
|
/// instructions.
|
|
|
|
unsigned getShuffleSHUFImmediate(SDNode *N);
|
2006-03-29 23:07:14 +00:00
|
|
|
|
|
|
|
/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
|
|
|
|
/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
|
|
|
|
/// instructions.
|
|
|
|
unsigned getShufflePSHUFHWImmediate(SDNode *N);
|
|
|
|
|
|
|
|
/// getShufflePSHUFKWImmediate - Return the appropriate immediate to shuffle
|
|
|
|
/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
|
|
|
|
/// instructions.
|
|
|
|
unsigned getShufflePSHUFLWImmediate(SDNode *N);
|
2006-03-22 02:53:00 +00:00
|
|
|
}
|
|
|
|
|
2006-10-18 18:26:48 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
2005-11-15 00:40:23 +00:00
|
|
|
// X86TargetLowering - X86 Implementation of the TargetLowering interface
|
|
|
|
class X86TargetLowering : public TargetLowering {
|
|
|
|
int VarArgsFrameIndex; // FrameIndex for start of varargs area.
|
2006-09-08 06:48:29 +00:00
|
|
|
int RegSaveFrameIndex; // X86-64 vararg func register save area.
|
|
|
|
unsigned VarArgsGPOffset; // X86-64 vararg func int reg offset.
|
|
|
|
unsigned VarArgsFPOffset; // X86-64 vararg func fp reg offset.
|
2005-11-15 00:40:23 +00:00
|
|
|
int ReturnAddrIndex; // FrameIndex for return slot.
|
|
|
|
int BytesToPopOnReturn; // Number of arg bytes ret should pop.
|
|
|
|
int BytesCallerReserves; // Number of arg bytes caller makes.
|
|
|
|
public:
|
|
|
|
X86TargetLowering(TargetMachine &TM);
|
|
|
|
|
|
|
|
// Return the number of bytes that a function should pop when it returns (in
|
|
|
|
// addition to the space used by the return address).
|
|
|
|
//
|
|
|
|
unsigned getBytesToPopOnReturn() const { return BytesToPopOnReturn; }
|
|
|
|
|
|
|
|
// Return the number of bytes that the caller reserves for arguments passed
|
|
|
|
// to this function.
|
|
|
|
unsigned getBytesCallerReserves() const { return BytesCallerReserves; }
|
|
|
|
|
2007-02-26 04:01:25 +00:00
|
|
|
/// getStackPtrReg - Return the stack pointer register we are using: either
|
|
|
|
/// ESP or RSP.
|
|
|
|
unsigned getStackPtrReg() const { return X86StackPtr; }
|
|
|
|
|
2005-11-15 00:40:23 +00:00
|
|
|
/// LowerOperation - Provide custom lowering hooks for some operations.
|
|
|
|
///
|
|
|
|
virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
|
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
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29042 91177308-0d34-0410-b5e6-96231b3b80d8
2006-07-07 08:33:52 +00:00
|
|
|
virtual SDOperand PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
|
|
|
|
2006-01-11 00:33:36 +00:00
|
|
|
virtual MachineBasicBlock *InsertAtEndOfBasicBlock(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *MBB);
|
|
|
|
|
2005-12-20 06:22:03 +00:00
|
|
|
/// getTargetNodeName - This method returns the name of a target specific
|
|
|
|
/// DAG node.
|
|
|
|
virtual const char *getTargetNodeName(unsigned Opcode) const;
|
|
|
|
|
2006-02-16 21:11:51 +00:00
|
|
|
/// computeMaskedBitsForTargetNode - Determine which of the bits specified
|
|
|
|
/// in Mask are known to be either zero or one and return them in the
|
|
|
|
/// KnownZero/KnownOne bitsets.
|
|
|
|
virtual void computeMaskedBitsForTargetNode(const SDOperand Op,
|
|
|
|
uint64_t Mask,
|
|
|
|
uint64_t &KnownZero,
|
|
|
|
uint64_t &KnownOne,
|
2007-06-22 14:59:07 +00:00
|
|
|
const SelectionDAG &DAG,
|
2006-02-16 21:11:51 +00:00
|
|
|
unsigned Depth = 0) const;
|
|
|
|
|
2005-11-15 00:40:23 +00:00
|
|
|
SDOperand getReturnAddressFrameIndex(SelectionDAG &DAG);
|
|
|
|
|
2007-03-25 02:14:49 +00:00
|
|
|
ConstraintType getConstraintType(const std::string &Constraint) const;
|
2006-07-11 02:54:03 +00:00
|
|
|
|
2006-01-31 19:43:35 +00:00
|
|
|
std::vector<unsigned>
|
2006-02-22 00:56:39 +00:00
|
|
|
getRegClassForInlineAsmConstraint(const std::string &Constraint,
|
|
|
|
MVT::ValueType VT) const;
|
2006-10-31 20:13:11 +00:00
|
|
|
/// isOperandValidForConstraint - Return the specified operand (possibly
|
|
|
|
/// modified) if the specified SDOperand is valid for the specified target
|
|
|
|
/// constraint letter, otherwise return null.
|
|
|
|
SDOperand isOperandValidForConstraint(SDOperand Op, char ConstraintLetter,
|
|
|
|
SelectionDAG &DAG);
|
|
|
|
|
2006-10-18 18:26:48 +00:00
|
|
|
/// getRegForInlineAsmConstraint - Given a physical register constraint
|
|
|
|
/// (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.
|
2006-07-31 23:26:50 +00:00
|
|
|
std::pair<unsigned, const TargetRegisterClass*>
|
|
|
|
getRegForInlineAsmConstraint(const std::string &Constraint,
|
|
|
|
MVT::ValueType VT) const;
|
|
|
|
|
2007-03-30 23:15:24 +00:00
|
|
|
/// isLegalAddressingMode - Return true if the addressing mode represented
|
|
|
|
/// by AM is legal for this target, for a load/store of the specified type.
|
|
|
|
virtual bool isLegalAddressingMode(const AddrMode &AM, const Type *Ty)const;
|
|
|
|
|
2006-03-22 18:59:22 +00:00
|
|
|
/// isShuffleMaskLegal - Targets can use this to indicate that they only
|
|
|
|
/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
|
2006-10-18 18:26:48 +00:00
|
|
|
/// By default, if a target supports the VECTOR_SHUFFLE node, all mask
|
|
|
|
/// values are assumed to be legal.
|
2006-03-22 22:07:06 +00:00
|
|
|
virtual bool isShuffleMaskLegal(SDOperand Mask, MVT::ValueType VT) const;
|
2006-04-20 08:58:49 +00:00
|
|
|
|
|
|
|
/// isVectorClearMaskLegal - 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.
|
|
|
|
virtual bool isVectorClearMaskLegal(std::vector<SDOperand> &BVOps,
|
|
|
|
MVT::ValueType EVT,
|
|
|
|
SelectionDAG &DAG) const;
|
2005-11-15 00:40:23 +00:00
|
|
|
private:
|
2006-04-25 20:13:52 +00:00
|
|
|
/// Subtarget - Keep a pointer to the X86Subtarget around so that we can
|
|
|
|
/// make the right decision when generating code for different targets.
|
|
|
|
const X86Subtarget *Subtarget;
|
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
/// X86StackPtr - X86 physical register used as stack ptr.
|
|
|
|
unsigned X86StackPtr;
|
|
|
|
|
2006-04-25 20:13:52 +00:00
|
|
|
/// X86ScalarSSE - Select between SSE2 or x87 floating point ops.
|
|
|
|
bool X86ScalarSSE;
|
|
|
|
|
2007-02-25 08:59:22 +00:00
|
|
|
SDNode *LowerCallResult(SDOperand Chain, SDOperand InFlag, SDNode*TheCall,
|
|
|
|
unsigned CallingConv, SelectionDAG &DAG);
|
|
|
|
|
2007-01-28 13:31:35 +00:00
|
|
|
// C and StdCall Calling Convention implementation.
|
|
|
|
SDOperand LowerCCCArguments(SDOperand Op, SelectionDAG &DAG,
|
|
|
|
bool isStdCall = false);
|
2007-02-25 09:06:15 +00:00
|
|
|
SDOperand LowerCCCCallTo(SDOperand Op, SelectionDAG &DAG, unsigned CC);
|
2005-11-15 00:40:23 +00:00
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
// X86-64 C Calling Convention implementation.
|
|
|
|
SDOperand LowerX86_64CCCArguments(SDOperand Op, SelectionDAG &DAG);
|
2007-02-25 09:06:15 +00:00
|
|
|
SDOperand LowerX86_64CCCCallTo(SDOperand Op, SelectionDAG &DAG,unsigned CC);
|
2006-09-08 06:48:29 +00:00
|
|
|
|
2007-01-28 13:31:35 +00:00
|
|
|
// Fast and FastCall Calling Convention implementation.
|
2007-02-28 06:05:16 +00:00
|
|
|
SDOperand LowerFastCCArguments(SDOperand Op, SelectionDAG &DAG);
|
2007-02-25 09:06:15 +00:00
|
|
|
SDOperand LowerFastCCCallTo(SDOperand Op, SelectionDAG &DAG, unsigned CC);
|
2006-01-27 08:10:46 +00:00
|
|
|
|
2006-04-25 20:13:52 +00:00
|
|
|
SDOperand LowerBUILD_VECTOR(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerVECTOR_SHUFFLE(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerEXTRACT_VECTOR_ELT(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerINSERT_VECTOR_ELT(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerSCALAR_TO_VECTOR(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerConstantPool(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerGlobalAddress(SDOperand Op, SelectionDAG &DAG);
|
2007-04-20 21:38:10 +00:00
|
|
|
SDOperand LowerGlobalTLSAddress(SDOperand Op, SelectionDAG &DAG);
|
2006-04-25 20:13:52 +00:00
|
|
|
SDOperand LowerExternalSymbol(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerShift(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerSINT_TO_FP(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerFP_TO_SINT(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerFABS(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerFNEG(SDOperand Op, SelectionDAG &DAG);
|
2007-01-05 07:55:56 +00:00
|
|
|
SDOperand LowerFCOPYSIGN(SDOperand Op, SelectionDAG &DAG);
|
2006-09-11 02:19:56 +00:00
|
|
|
SDOperand LowerSETCC(SDOperand Op, SelectionDAG &DAG, SDOperand Chain);
|
2006-04-25 20:13:52 +00:00
|
|
|
SDOperand LowerSELECT(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerBRCOND(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerMEMSET(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerMEMCPY(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerJumpTable(SDOperand Op, SelectionDAG &DAG);
|
2006-05-25 00:59:30 +00:00
|
|
|
SDOperand LowerCALL(SDOperand Op, SelectionDAG &DAG);
|
2006-04-25 20:13:52 +00:00
|
|
|
SDOperand LowerRET(SDOperand Op, SelectionDAG &DAG);
|
2007-04-17 09:20:00 +00:00
|
|
|
SDOperand LowerDYNAMIC_STACKALLOC(SDOperand Op, SelectionDAG &DAG);
|
2006-04-26 01:20:17 +00:00
|
|
|
SDOperand LowerFORMAL_ARGUMENTS(SDOperand Op, SelectionDAG &DAG);
|
2006-04-25 20:13:52 +00:00
|
|
|
SDOperand LowerREADCYCLCECOUNTER(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerVASTART(SDOperand Op, SelectionDAG &DAG);
|
2007-03-02 23:16:35 +00:00
|
|
|
SDOperand LowerVACOPY(SDOperand Op, SelectionDAG &DAG);
|
2006-04-25 20:13:52 +00:00
|
|
|
SDOperand LowerINTRINSIC_WO_CHAIN(SDOperand Op, SelectionDAG &DAG);
|
2007-01-29 22:58:52 +00:00
|
|
|
SDOperand LowerRETURNADDR(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerFRAMEADDR(SDOperand Op, SelectionDAG &DAG);
|
2005-11-15 00:40:23 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // X86ISELLOWERING_H
|