2005-11-15 00:40:23 +00:00
|
|
|
//===-- X86ISelLowering.h - X86 DAG Lowering Interface ----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-11-15 00:40:23 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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"
|
2007-07-14 14:06:15 +00:00
|
|
|
#include "X86RegisterInfo.h"
|
2008-01-05 16:56:59 +00:00
|
|
|
#include "X86MachineFunctionInfo.h"
|
2005-11-15 00:40:23 +00:00
|
|
|
#include "llvm/Target/TargetLowering.h"
|
|
|
|
#include "llvm/CodeGen/SelectionDAG.h"
|
2007-08-31 15:06:30 +00:00
|
|
|
#include "llvm/CodeGen/CallingConvLower.h"
|
2005-11-15 00:40:23 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2007-12-14 02:13:44 +00:00
|
|
|
/// BSF - Bit scan forward.
|
|
|
|
/// BSR - Bit scan reverse.
|
|
|
|
BSF,
|
|
|
|
BSR,
|
|
|
|
|
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.
|
2007-09-17 17:42:53 +00:00
|
|
|
CMP, 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
|
|
|
|
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,
|
2007-07-10 00:05:58 +00:00
|
|
|
|
|
|
|
/// FRSQRT, FRCP - Floating point reciprocal-sqrt and reciprocal
|
|
|
|
/// approximation. Note that these typically require refinement
|
|
|
|
/// in order to obtain suitable precision.
|
|
|
|
FRSQRT, FRCP,
|
|
|
|
|
2007-04-20 21:38:10 +00:00
|
|
|
// Thread Local Storage
|
2007-07-14 14:06:15 +00:00
|
|
|
TLSADDR, THREAD_POINTER,
|
|
|
|
|
|
|
|
// Exception Handling helpers
|
2007-10-11 19:40:01 +00:00
|
|
|
EH_RETURN,
|
|
|
|
|
|
|
|
// tail call return
|
|
|
|
// oeprand #0 chain
|
|
|
|
// operand #1 callee (register or absolute)
|
|
|
|
// operand #2 stack adjustment
|
|
|
|
// operand #3 optional in flag
|
2007-11-16 01:31:51 +00:00
|
|
|
TC_RETURN,
|
|
|
|
|
|
|
|
// Store FP control world into i16 memory
|
|
|
|
FNSTCW16m
|
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 BytesToPopOnReturn; // Number of arg bytes ret should pop.
|
|
|
|
int BytesCallerReserves; // Number of arg bytes caller makes.
|
2007-10-11 19:40:01 +00:00
|
|
|
|
2005-11-15 00:40:23 +00:00
|
|
|
public:
|
2007-08-02 21:21:54 +00:00
|
|
|
explicit X86TargetLowering(TargetMachine &TM);
|
2005-11-15 00:40:23 +00:00
|
|
|
|
Much improved pic jumptable codegen:
Then:
call "L1$pb"
"L1$pb":
popl %eax
...
LBB1_1: # entry
imull $4, %ecx, %ecx
leal LJTI1_0-"L1$pb"(%eax), %edx
addl LJTI1_0-"L1$pb"(%ecx,%eax), %edx
jmpl *%edx
.align 2
.set L1_0_set_3,LBB1_3-LJTI1_0
.set L1_0_set_2,LBB1_2-LJTI1_0
.set L1_0_set_5,LBB1_5-LJTI1_0
.set L1_0_set_4,LBB1_4-LJTI1_0
LJTI1_0:
.long L1_0_set_3
.long L1_0_set_2
Now:
call "L1$pb"
"L1$pb":
popl %eax
...
LBB1_1: # entry
addl LJTI1_0-"L1$pb"(%eax,%ecx,4), %eax
jmpl *%eax
.align 2
.set L1_0_set_3,LBB1_3-"L1$pb"
.set L1_0_set_2,LBB1_2-"L1$pb"
.set L1_0_set_5,LBB1_5-"L1$pb"
.set L1_0_set_4,LBB1_4-"L1$pb"
LJTI1_0:
.long L1_0_set_3
.long L1_0_set_2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43924 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-09 01:32:10 +00:00
|
|
|
/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
|
|
|
|
/// jumptable.
|
|
|
|
SDOperand getPICJumpTableRelocBase(SDOperand Table,
|
|
|
|
SelectionDAG &DAG) const;
|
|
|
|
|
2005-11-15 00:40:23 +00:00
|
|
|
// 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);
|
|
|
|
|
2007-11-24 07:07:01 +00:00
|
|
|
/// ExpandOperation - Custom lower the specified operation, splitting the
|
|
|
|
/// value into two pieces.
|
|
|
|
///
|
|
|
|
virtual SDNode *ExpandOperationResult(SDNode *N, 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;
|
2007-08-25 00:47:38 +00:00
|
|
|
|
|
|
|
/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
|
|
|
|
/// vector. If it is invalid, don't add anything to Ops.
|
|
|
|
virtual void LowerAsmOperandForConstraint(SDOperand Op,
|
|
|
|
char ConstraintLetter,
|
|
|
|
std::vector<SDOperand> &Ops,
|
|
|
|
SelectionDAG &DAG);
|
2006-10-31 20:13:11 +00:00
|
|
|
|
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;
|
|
|
|
|
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
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43375 91177308-0d34-0410-b5e6-96231b3b80d8
2007-10-26 01:56:11 +00:00
|
|
|
/// isTruncateFree - Return true if it's free to truncate a value of
|
|
|
|
/// 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.
|
|
|
|
virtual bool isTruncateFree(const Type *Ty1, const Type *Ty2) const;
|
2007-10-29 19:58:20 +00:00
|
|
|
virtual bool isTruncateFree(MVT::ValueType VT1, MVT::ValueType VT2) const;
|
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
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43375 91177308-0d34-0410-b5e6-96231b3b80d8
2007-10-26 01:56:11 +00:00
|
|
|
|
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;
|
2007-10-11 19:40:01 +00:00
|
|
|
|
|
|
|
/// IsEligibleForTailCallOptimization - Check whether the call is eligible
|
|
|
|
/// for tail call optimization. Target which want to do tail call
|
|
|
|
/// optimization should implement this function.
|
|
|
|
virtual bool IsEligibleForTailCallOptimization(SDOperand Call,
|
|
|
|
SDOperand Ret,
|
|
|
|
SelectionDAG &DAG) const;
|
|
|
|
|
2007-11-05 23:12:20 +00:00
|
|
|
virtual const TargetSubtarget* getSubtarget() {
|
|
|
|
return static_cast<const TargetSubtarget*>(Subtarget);
|
|
|
|
}
|
|
|
|
|
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;
|
2007-07-14 14:06:15 +00:00
|
|
|
const MRegisterInfo *RegInfo;
|
2006-04-25 20:13:52 +00:00
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
/// X86StackPtr - X86 physical register used as stack ptr.
|
|
|
|
unsigned X86StackPtr;
|
2007-10-11 19:40:01 +00:00
|
|
|
|
2007-09-23 14:52:20 +00:00
|
|
|
/// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
|
|
|
|
/// floating point ops.
|
|
|
|
/// When SSE is available, use it for f32 operations.
|
|
|
|
/// When SSE2 is available, use it for f64 operations.
|
|
|
|
bool X86ScalarSSEf32;
|
|
|
|
bool X86ScalarSSEf64;
|
2006-04-25 20:13:52 +00:00
|
|
|
|
2007-02-25 08:59:22 +00:00
|
|
|
SDNode *LowerCallResult(SDOperand Chain, SDOperand InFlag, SDNode*TheCall,
|
|
|
|
unsigned CallingConv, SelectionDAG &DAG);
|
|
|
|
|
2007-08-31 15:06:30 +00:00
|
|
|
|
2007-09-14 15:48:13 +00:00
|
|
|
SDOperand LowerMemArgument(SDOperand Op, SelectionDAG &DAG,
|
|
|
|
const CCValAssign &VA, MachineFrameInfo *MFI,
|
|
|
|
SDOperand Root, unsigned i);
|
|
|
|
|
2007-08-31 15:06:30 +00:00
|
|
|
SDOperand LowerMemOpCallTo(SDOperand Op, SelectionDAG &DAG,
|
|
|
|
const SDOperand &StackPtr,
|
|
|
|
const CCValAssign &VA, SDOperand Chain,
|
|
|
|
SDOperand Arg);
|
|
|
|
|
2008-01-05 16:56:59 +00:00
|
|
|
// Call lowering helpers.
|
|
|
|
bool IsCalleePop(SDOperand Op);
|
|
|
|
CCAssignFn *CCAssignFnForNode(SDOperand Op) const;
|
|
|
|
NameDecorationStyle NameDecorationForFORMAL_ARGUMENTS(SDOperand Op);
|
2007-10-11 19:40:01 +00:00
|
|
|
unsigned GetAlignedArgumentStackSize(unsigned StackSize, SelectionDAG &DAG);
|
2006-01-27 08:10:46 +00:00
|
|
|
|
2007-11-24 07:07:01 +00:00
|
|
|
std::pair<SDOperand,SDOperand> FP_TO_SINTHelper(SDOperand Op,
|
|
|
|
SelectionDAG &DAG);
|
|
|
|
|
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);
|
2007-09-29 00:00:36 +00:00
|
|
|
SDOperand LowerSETCC(SDOperand Op, SelectionDAG &DAG);
|
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);
|
2007-09-28 12:53:01 +00:00
|
|
|
SDOperand LowerMEMCPYInline(SDOperand Dest, SDOperand Source,
|
|
|
|
SDOperand Chain, unsigned Size, unsigned Align,
|
|
|
|
SelectionDAG &DAG);
|
2006-04-25 20:13:52 +00:00
|
|
|
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 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);
|
2007-07-14 14:06:15 +00:00
|
|
|
SDOperand LowerFRAME_TO_ARGS_OFFSET(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerEH_RETURN(SDOperand Op, SelectionDAG &DAG);
|
2007-07-27 20:02:49 +00:00
|
|
|
SDOperand LowerTRAMPOLINE(SDOperand Op, SelectionDAG &DAG);
|
2007-11-16 01:31:51 +00:00
|
|
|
SDOperand LowerFLT_ROUNDS(SDOperand Op, SelectionDAG &DAG);
|
2007-12-14 02:13:44 +00:00
|
|
|
SDOperand LowerCTLZ(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
SDOperand LowerCTTZ(SDOperand Op, SelectionDAG &DAG);
|
2007-11-24 07:07:01 +00:00
|
|
|
SDNode *ExpandFP_TO_SINT(SDNode *N, SelectionDAG &DAG);
|
|
|
|
SDNode *ExpandREADCYCLECOUNTER(SDNode *N, SelectionDAG &DAG);
|
2005-11-15 00:40:23 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // X86ISELLOWERING_H
|