2011-04-16 05:51:11 +08:00
|
|
|
//===-- MipsISelLowering.h - Mips DAG Lowering Interface --------*- C++ -*-===//
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
|
|
|
// 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.
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
2011-04-16 05:51:11 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
|
|
|
// This file defines the interfaces that Mips uses to lower LLVM code into a
|
|
|
|
// selection DAG.
|
|
|
|
//
|
2011-04-16 05:51:11 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
|
|
|
|
#ifndef MipsISELLOWERING_H
|
|
|
|
#define MipsISELLOWERING_H
|
|
|
|
|
|
|
|
#include "Mips.h"
|
|
|
|
#include "MipsSubtarget.h"
|
2012-10-27 07:56:38 +08:00
|
|
|
#include "llvm/CodeGen/CallingConvLower.h"
|
2012-03-18 02:46:09 +08:00
|
|
|
#include "llvm/CodeGen/SelectionDAG.h"
|
|
|
|
#include "llvm/Target/TargetLowering.h"
|
2013-01-23 04:05:56 +08:00
|
|
|
#include <deque>
|
2013-01-24 12:24:02 +08:00
|
|
|
#include <string>
|
2007-06-06 15:42:06 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace MipsISD {
|
|
|
|
enum NodeType {
|
|
|
|
// Start the numbering from where ISD NodeType finishes.
|
2008-09-24 02:42:32 +08:00
|
|
|
FIRST_NUMBER = ISD::BUILTIN_OP_END,
|
2007-06-06 15:42:06 +08:00
|
|
|
|
|
|
|
// Jump and link (call)
|
|
|
|
JmpLink,
|
|
|
|
|
2012-10-20 04:59:39 +08:00
|
|
|
// Tail call
|
|
|
|
TailCall,
|
|
|
|
|
2007-06-06 15:42:06 +08:00
|
|
|
// Get the Higher 16 bits from a 32-bit immediate
|
|
|
|
// No relation with Mips Hi register
|
2011-03-05 01:51:39 +08:00
|
|
|
Hi,
|
2007-06-06 15:42:06 +08:00
|
|
|
|
|
|
|
// Get the Lower 16 bits from a 32-bit immediate
|
|
|
|
// No relation with Mips Lo register
|
2011-03-05 01:51:39 +08:00
|
|
|
Lo,
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2008-07-22 02:52:34 +08:00
|
|
|
// Handle gp_rel (small data/bss sections) relocation.
|
|
|
|
GPRel,
|
|
|
|
|
2011-05-31 10:53:58 +08:00
|
|
|
// Thread Pointer
|
|
|
|
ThreadPointer,
|
|
|
|
|
2008-07-09 12:45:36 +08:00
|
|
|
// Floating Point Branch Conditional
|
Several changes to Mips backend, experimental fp support being the most
important.
- Cleanup in the Subtarget info with addition of new features, not all support
yet, but they allow the future inclusion of features easier. Among new features,
we have : Arch family info (mips1, mips2, ...), ABI info (o32, eabi), 64-bit
integer
and float registers, allegrex vector FPU (VFPU), single float only support.
- TargetMachine now detects allegrex core.
- Added allegrex (Mips32r2) sext_inreg instructions.
- *Added Float Point Instructions*, handling single float only, and
aliased accesses for 32-bit FPUs.
- Some cleanup in FP instruction formats and FP register classes.
- Calling conventions improved to support mips 32-bit EABI.
- Added Asm Printer support for fp cond codes.
- Added support for sret copy to a return register.
- EABI support added into LowerCALL and FORMAL_ARGS.
- MipsFunctionInfo now keeps a virtual register per function to track the
sret on function entry until function ret.
- MipsInstrInfo FP support into methods (isMoveInstr, isLoadFromStackSlot, ...),
FP cond codes mapping and initial FP Branch Analysis.
- Two new Mips SDNode to handle fp branch and compare instructions : FPBrcond,
FPCmp
- MipsTargetLowering : handling different FP classes, Allegrex support, sret
return copy, no homing location within EABI, non 32-bit stack objects
arguments, and asm constraint for float.
llvm-svn: 53146
2008-07-06 03:05:21 +08:00
|
|
|
FPBrcond,
|
|
|
|
|
2008-07-09 12:45:36 +08:00
|
|
|
// Floating Point Compare
|
Several changes to Mips backend, experimental fp support being the most
important.
- Cleanup in the Subtarget info with addition of new features, not all support
yet, but they allow the future inclusion of features easier. Among new features,
we have : Arch family info (mips1, mips2, ...), ABI info (o32, eabi), 64-bit
integer
and float registers, allegrex vector FPU (VFPU), single float only support.
- TargetMachine now detects allegrex core.
- Added allegrex (Mips32r2) sext_inreg instructions.
- *Added Float Point Instructions*, handling single float only, and
aliased accesses for 32-bit FPUs.
- Some cleanup in FP instruction formats and FP register classes.
- Calling conventions improved to support mips 32-bit EABI.
- Added Asm Printer support for fp cond codes.
- Added support for sret copy to a return register.
- EABI support added into LowerCALL and FORMAL_ARGS.
- MipsFunctionInfo now keeps a virtual register per function to track the
sret on function entry until function ret.
- MipsInstrInfo FP support into methods (isMoveInstr, isLoadFromStackSlot, ...),
FP cond codes mapping and initial FP Branch Analysis.
- Two new Mips SDNode to handle fp branch and compare instructions : FPBrcond,
FPCmp
- MipsTargetLowering : handling different FP classes, Allegrex support, sret
return copy, no homing location within EABI, non 32-bit stack objects
arguments, and asm constraint for float.
llvm-svn: 53146
2008-07-06 03:05:21 +08:00
|
|
|
FPCmp,
|
|
|
|
|
2011-04-01 02:26:17 +08:00
|
|
|
// Floating Point Conditional Moves
|
|
|
|
CMovFP_T,
|
|
|
|
CMovFP_F,
|
|
|
|
|
2009-05-28 01:23:44 +08:00
|
|
|
// Floating Point Rounding
|
|
|
|
FPRound,
|
|
|
|
|
2011-03-05 01:51:39 +08:00
|
|
|
// Return
|
2011-01-19 03:29:17 +08:00
|
|
|
Ret,
|
|
|
|
|
2013-01-30 08:26:49 +08:00
|
|
|
EH_RETURN,
|
|
|
|
|
2011-01-19 03:29:17 +08:00
|
|
|
// MAdd/Sub nodes
|
|
|
|
MAdd,
|
|
|
|
MAddu,
|
|
|
|
MSub,
|
2011-03-05 05:03:24 +08:00
|
|
|
MSubu,
|
|
|
|
|
|
|
|
// DivRem(u)
|
|
|
|
DivRem,
|
2011-04-16 03:52:08 +08:00
|
|
|
DivRemU,
|
|
|
|
|
|
|
|
BuildPairF64,
|
2011-05-28 09:07:07 +08:00
|
|
|
ExtractElementF64,
|
|
|
|
|
2011-12-09 09:53:17 +08:00
|
|
|
Wrapper,
|
2011-06-21 08:40:49 +08:00
|
|
|
|
2011-07-20 07:30:50 +08:00
|
|
|
DynAlloc,
|
|
|
|
|
2011-08-17 10:05:42 +08:00
|
|
|
Sync,
|
|
|
|
|
|
|
|
Ext,
|
2012-06-02 08:03:12 +08:00
|
|
|
Ins,
|
|
|
|
|
2012-09-22 07:52:47 +08:00
|
|
|
// EXTR.W instrinsic nodes.
|
|
|
|
EXTP,
|
|
|
|
EXTPDP,
|
|
|
|
EXTR_S_H,
|
|
|
|
EXTR_W,
|
|
|
|
EXTR_R_W,
|
|
|
|
EXTR_RS_W,
|
|
|
|
SHILO,
|
|
|
|
MTHLIP,
|
|
|
|
|
|
|
|
// DPA.W intrinsic nodes.
|
|
|
|
MULSAQ_S_W_PH,
|
|
|
|
MAQ_S_W_PHL,
|
|
|
|
MAQ_S_W_PHR,
|
|
|
|
MAQ_SA_W_PHL,
|
|
|
|
MAQ_SA_W_PHR,
|
|
|
|
DPAU_H_QBL,
|
|
|
|
DPAU_H_QBR,
|
|
|
|
DPSU_H_QBL,
|
|
|
|
DPSU_H_QBR,
|
|
|
|
DPAQ_S_W_PH,
|
|
|
|
DPSQ_S_W_PH,
|
|
|
|
DPAQ_SA_L_W,
|
|
|
|
DPSQ_SA_L_W,
|
|
|
|
DPA_W_PH,
|
|
|
|
DPS_W_PH,
|
|
|
|
DPAQX_S_W_PH,
|
|
|
|
DPAQX_SA_W_PH,
|
|
|
|
DPAX_W_PH,
|
|
|
|
DPSX_W_PH,
|
|
|
|
DPSQX_S_W_PH,
|
|
|
|
DPSQX_SA_W_PH,
|
|
|
|
MULSA_W_PH,
|
|
|
|
|
|
|
|
MULT,
|
|
|
|
MULTU,
|
|
|
|
MADD_DSP,
|
|
|
|
MADDU_DSP,
|
|
|
|
MSUB_DSP,
|
|
|
|
MSUBU_DSP,
|
|
|
|
|
2012-06-02 08:03:12 +08:00
|
|
|
// Load/Store Left/Right nodes.
|
|
|
|
LWL = ISD::FIRST_TARGET_MEMORY_OPCODE,
|
|
|
|
LWR,
|
|
|
|
SWL,
|
|
|
|
SWR,
|
|
|
|
LDL,
|
|
|
|
LDR,
|
|
|
|
SDL,
|
|
|
|
SDR
|
2007-06-06 15:42:06 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-04-16 05:51:11 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
// TargetLowering Implementation
|
2011-04-16 05:51:11 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
2012-10-31 04:16:31 +08:00
|
|
|
class MipsFunctionInfo;
|
2011-03-05 01:51:39 +08:00
|
|
|
|
2009-08-13 13:41:27 +08:00
|
|
|
class MipsTargetLowering : public TargetLowering {
|
2007-06-06 15:42:06 +08:00
|
|
|
public:
|
2007-08-03 05:21:54 +08:00
|
|
|
explicit MipsTargetLowering(MipsTargetMachine &TM);
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2011-11-08 02:59:49 +08:00
|
|
|
virtual MVT getShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
|
|
|
|
|
2012-12-11 07:21:26 +08:00
|
|
|
virtual bool allowsUnalignedMemoryAccesses (EVT VT, bool *Fast) const;
|
2011-08-13 05:30:06 +08:00
|
|
|
|
2012-09-22 07:58:31 +08:00
|
|
|
virtual void LowerOperationWrapper(SDNode *N,
|
|
|
|
SmallVectorImpl<SDValue> &Results,
|
|
|
|
SelectionDAG &DAG) const;
|
|
|
|
|
2007-06-06 15:42:06 +08:00
|
|
|
/// LowerOperation - Provide custom lowering hooks for some operations.
|
2010-04-17 23:26:15 +08:00
|
|
|
virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2012-09-22 07:58:31 +08:00
|
|
|
/// ReplaceNodeResults - Replace the results of node with an illegal result
|
|
|
|
/// type with new values built out of custom code.
|
|
|
|
///
|
|
|
|
virtual void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue>&Results,
|
|
|
|
SelectionDAG &DAG) const;
|
|
|
|
|
2011-03-05 01:51:39 +08:00
|
|
|
/// getTargetNodeName - This method returns the name of a target specific
|
2007-06-06 15:42:06 +08:00
|
|
|
// DAG node.
|
|
|
|
virtual const char *getTargetNodeName(unsigned Opcode) const;
|
|
|
|
|
2008-03-10 23:42:14 +08:00
|
|
|
/// getSetCCResultType - get the ISD::SETCC result ValueType
|
2011-09-07 03:07:46 +08:00
|
|
|
EVT getSetCCResultType(EVT VT) const;
|
2008-03-10 23:42:14 +08:00
|
|
|
|
2011-03-05 01:51:39 +08:00
|
|
|
virtual SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const;
|
2007-06-06 15:42:06 +08:00
|
|
|
private:
|
2012-10-27 07:56:38 +08:00
|
|
|
|
2013-01-28 10:46:49 +08:00
|
|
|
void SetMips16LibcallName(RTLIB::Libcall, const char *Name);
|
|
|
|
|
2012-12-15 08:20:05 +08:00
|
|
|
void setMips16HardFloatLibCalls();
|
|
|
|
|
2013-01-24 12:24:02 +08:00
|
|
|
unsigned int
|
|
|
|
getMips16HelperFunctionStubNumber(ArgListTy &Args) const;
|
|
|
|
|
|
|
|
const char *getMips16HelperFunction
|
|
|
|
(Type* RetTy, ArgListTy &Args, bool &needHelper) const;
|
|
|
|
|
2012-10-27 07:56:38 +08:00
|
|
|
/// ByValArgInfo - Byval argument information.
|
|
|
|
struct ByValArgInfo {
|
|
|
|
unsigned FirstIdx; // Index of the first register used.
|
|
|
|
unsigned NumRegs; // Number of registers used for this argument.
|
|
|
|
unsigned Address; // Offset of the stack area used to pass this argument.
|
|
|
|
|
|
|
|
ByValArgInfo() : FirstIdx(0), NumRegs(0), Address(0) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// MipsCC - This class provides methods used to analyze formal and call
|
|
|
|
/// arguments and inquire about calling convention information.
|
|
|
|
class MipsCC {
|
|
|
|
public:
|
|
|
|
MipsCC(CallingConv::ID CallConv, bool IsVarArg, bool IsO32,
|
|
|
|
CCState &Info);
|
|
|
|
|
|
|
|
void analyzeCallOperands(const SmallVectorImpl<ISD::OutputArg> &Outs);
|
|
|
|
void analyzeFormalArguments(const SmallVectorImpl<ISD::InputArg> &Ins);
|
|
|
|
void handleByValArg(unsigned ValNo, MVT ValVT, MVT LocVT,
|
|
|
|
CCValAssign::LocInfo LocInfo,
|
|
|
|
ISD::ArgFlagsTy ArgFlags);
|
|
|
|
|
|
|
|
const CCState &getCCInfo() const { return CCInfo; }
|
|
|
|
|
|
|
|
/// hasByValArg - Returns true if function has byval arguments.
|
|
|
|
bool hasByValArg() const { return !ByValArgs.empty(); }
|
|
|
|
|
|
|
|
/// useRegsForByval - Returns true if the calling convention allows the
|
|
|
|
/// use of registers to pass byval arguments.
|
|
|
|
bool useRegsForByval() const { return UseRegsForByval; }
|
|
|
|
|
|
|
|
/// regSize - Size (in number of bits) of integer registers.
|
|
|
|
unsigned regSize() const { return RegSize; }
|
|
|
|
|
|
|
|
/// numIntArgRegs - Number of integer registers available for calls.
|
|
|
|
unsigned numIntArgRegs() const { return NumIntArgRegs; }
|
|
|
|
|
|
|
|
/// reservedArgArea - The size of the area the caller reserves for
|
|
|
|
/// register arguments. This is 16-byte if ABI is O32.
|
|
|
|
unsigned reservedArgArea() const { return ReservedArgArea; }
|
|
|
|
|
|
|
|
/// intArgRegs - Pointer to array of integer registers.
|
|
|
|
const uint16_t *intArgRegs() const { return IntArgRegs; }
|
|
|
|
|
|
|
|
typedef SmallVector<ByValArgInfo, 2>::const_iterator byval_iterator;
|
|
|
|
byval_iterator byval_begin() const { return ByValArgs.begin(); }
|
|
|
|
byval_iterator byval_end() const { return ByValArgs.end(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
void allocateRegs(ByValArgInfo &ByVal, unsigned ByValSize,
|
|
|
|
unsigned Align);
|
|
|
|
|
|
|
|
CCState &CCInfo;
|
|
|
|
bool UseRegsForByval;
|
|
|
|
unsigned RegSize;
|
|
|
|
unsigned NumIntArgRegs;
|
|
|
|
unsigned ReservedArgArea;
|
|
|
|
const uint16_t *IntArgRegs, *ShadowRegs;
|
|
|
|
SmallVector<ByValArgInfo, 2> ByValArgs;
|
|
|
|
llvm::CCAssignFn *FixedFn, *VarFn;
|
|
|
|
};
|
|
|
|
|
Several changes to Mips backend, experimental fp support being the most
important.
- Cleanup in the Subtarget info with addition of new features, not all support
yet, but they allow the future inclusion of features easier. Among new features,
we have : Arch family info (mips1, mips2, ...), ABI info (o32, eabi), 64-bit
integer
and float registers, allegrex vector FPU (VFPU), single float only support.
- TargetMachine now detects allegrex core.
- Added allegrex (Mips32r2) sext_inreg instructions.
- *Added Float Point Instructions*, handling single float only, and
aliased accesses for 32-bit FPUs.
- Some cleanup in FP instruction formats and FP register classes.
- Calling conventions improved to support mips 32-bit EABI.
- Added Asm Printer support for fp cond codes.
- Added support for sret copy to a return register.
- EABI support added into LowerCALL and FORMAL_ARGS.
- MipsFunctionInfo now keeps a virtual register per function to track the
sret on function entry until function ret.
- MipsInstrInfo FP support into methods (isMoveInstr, isLoadFromStackSlot, ...),
FP cond codes mapping and initial FP Branch Analysis.
- Two new Mips SDNode to handle fp branch and compare instructions : FPBrcond,
FPCmp
- MipsTargetLowering : handling different FP classes, Allegrex support, sret
return copy, no homing location within EABI, non 32-bit stack objects
arguments, and asm constraint for float.
llvm-svn: 53146
2008-07-06 03:05:21 +08:00
|
|
|
// Subtarget Info
|
|
|
|
const MipsSubtarget *Subtarget;
|
2012-02-28 15:46:26 +08:00
|
|
|
|
2011-10-29 02:47:24 +08:00
|
|
|
bool HasMips64, IsN64, IsO32;
|
2009-08-13 13:41:27 +08:00
|
|
|
|
2007-06-06 15:42:06 +08:00
|
|
|
// Lower Operand helpers
|
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,
|
|
|
|
DebugLoc dl, SelectionDAG &DAG,
|
2010-04-17 23:26:15 +08:00
|
|
|
SmallVectorImpl<SDValue> &InVals) const;
|
2007-06-06 15:42:06 +08:00
|
|
|
|
|
|
|
// Lower Operand specifics
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
|
2011-03-05 04:01:52 +08:00
|
|
|
SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerSELECT(SDValue Op, SelectionDAG &DAG) const;
|
2012-07-12 03:32:27 +08:00
|
|
|
SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const;
|
2012-03-10 07:46:03 +08:00
|
|
|
SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG) const;
|
2010-04-17 23:26:15 +08:00
|
|
|
SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) const;
|
2011-05-26 03:32:07 +08:00
|
|
|
SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const;
|
2012-04-12 06:49:04 +08:00
|
|
|
SDValue LowerFABS(SDValue Op, SelectionDAG &DAG) const;
|
2011-06-02 08:24:44 +08:00
|
|
|
SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const;
|
2012-07-11 08:53:32 +08:00
|
|
|
SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const;
|
2013-01-30 08:26:49 +08:00
|
|
|
SDValue LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const;
|
2011-07-20 07:30:50 +08:00
|
|
|
SDValue LowerMEMBARRIER(SDValue Op, SelectionDAG& DAG) const;
|
2011-07-28 06:21:52 +08:00
|
|
|
SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG& DAG) const;
|
2012-05-09 08:55:21 +08:00
|
|
|
SDValue LowerShiftLeftParts(SDValue Op, SelectionDAG& DAG) const;
|
2012-06-15 05:10:56 +08:00
|
|
|
SDValue LowerShiftRightParts(SDValue Op, SelectionDAG& DAG,
|
|
|
|
bool IsSRA) const;
|
2012-06-02 08:03:49 +08:00
|
|
|
SDValue LowerLOAD(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerSTORE(SDValue Op, SelectionDAG &DAG) const;
|
2012-09-27 10:05:42 +08:00
|
|
|
SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, SelectionDAG &DAG) const;
|
2012-11-08 03:10:58 +08:00
|
|
|
SDValue LowerADD(SDValue Op, SelectionDAG &DAG) const;
|
2008-06-06 08:58:26 +08:00
|
|
|
|
2012-10-20 05:47:33 +08:00
|
|
|
/// IsEligibleForTailCallOptimization - Check whether the call is eligible
|
|
|
|
/// for tail call optimization.
|
2012-10-27 08:56:56 +08:00
|
|
|
bool IsEligibleForTailCallOptimization(const MipsCC &MipsCCInfo,
|
2012-10-31 04:16:31 +08:00
|
|
|
unsigned NextStackOffset,
|
|
|
|
const MipsFunctionInfo& FI) const;
|
2012-10-20 05:47:33 +08:00
|
|
|
|
2012-10-27 08:10:18 +08:00
|
|
|
/// copyByValArg - Copy argument registers which were used to pass a byval
|
|
|
|
/// argument to the stack. Create a stack frame object for the byval
|
|
|
|
/// argument.
|
|
|
|
void copyByValRegs(SDValue Chain, DebugLoc DL,
|
|
|
|
std::vector<SDValue> &OutChains, SelectionDAG &DAG,
|
|
|
|
const ISD::ArgFlagsTy &Flags,
|
|
|
|
SmallVectorImpl<SDValue> &InVals,
|
|
|
|
const Argument *FuncArg,
|
|
|
|
const MipsCC &CC, const ByValArgInfo &ByVal) const;
|
|
|
|
|
2012-10-27 08:16:36 +08:00
|
|
|
/// passByValArg - Pass a byval argument in registers or on stack.
|
|
|
|
void passByValArg(SDValue Chain, DebugLoc DL,
|
2013-01-23 04:05:56 +08:00
|
|
|
std::deque< std::pair<unsigned, SDValue> > &RegsToPass,
|
2012-10-27 08:16:36 +08:00
|
|
|
SmallVector<SDValue, 8> &MemOpChains, SDValue StackPtr,
|
|
|
|
MachineFrameInfo *MFI, SelectionDAG &DAG, SDValue Arg,
|
|
|
|
const MipsCC &CC, const ByValArgInfo &ByVal,
|
|
|
|
const ISD::ArgFlagsTy &Flags, bool isLittle) const;
|
|
|
|
|
2012-10-27 08:21:13 +08:00
|
|
|
/// writeVarArgRegs - Write variable function arguments passed in registers
|
|
|
|
/// to the stack. Also create a stack frame object for the first variable
|
|
|
|
/// argument.
|
|
|
|
void writeVarArgRegs(std::vector<SDValue> &OutChains, const MipsCC &CC,
|
|
|
|
SDValue Chain, DebugLoc DL, SelectionDAG &DAG) 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
|
|
|
virtual SDValue
|
|
|
|
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,
|
|
|
|
DebugLoc 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
|
|
|
|
2012-10-31 03:23:25 +08:00
|
|
|
SDValue passArgOnStack(SDValue StackPtr, unsigned Offset, SDValue Chain,
|
|
|
|
SDValue Arg, DebugLoc DL, bool IsTailCall,
|
|
|
|
SelectionDAG &DAG) 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
|
|
|
virtual SDValue
|
2012-05-26 00:35:28 +08:00
|
|
|
LowerCall(TargetLowering::CallLoweringInfo &CLI,
|
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
|
|
|
|
2012-10-10 09:27:09 +08:00
|
|
|
virtual bool
|
|
|
|
CanLowerReturn(CallingConv::ID CallConv, MachineFunction &MF,
|
|
|
|
bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
|
|
|
LLVMContext &Context) 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
|
|
|
virtual SDValue
|
|
|
|
LowerReturn(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::OutputArg> &Outs,
|
2010-07-07 23:54:55 +08:00
|
|
|
const SmallVectorImpl<SDValue> &OutVals,
|
2010-04-17 23:26:15 +08:00
|
|
|
DebugLoc dl, SelectionDAG &DAG) 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
|
|
|
|
2010-05-01 08:01:06 +08:00
|
|
|
virtual MachineBasicBlock *
|
|
|
|
EmitInstrWithCustomInserter(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *MBB) const;
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2007-08-22 00:09:25 +08:00
|
|
|
// Inline asm support
|
|
|
|
ConstraintType getConstraintType(const std::string &Constraint) const;
|
|
|
|
|
2011-04-16 05:51:11 +08:00
|
|
|
/// Examine constraint string and operand type and determine a weight value.
|
|
|
|
/// The operand object must already have been set up with the operand type.
|
2010-10-30 01:29:13 +08:00
|
|
|
ConstraintWeight getSingleConstraintMatchWeight(
|
|
|
|
AsmOperandInfo &info, const char *constraint) const;
|
|
|
|
|
2011-03-05 01:51:39 +08:00
|
|
|
std::pair<unsigned, const TargetRegisterClass*>
|
2007-08-22 00:09:25 +08:00
|
|
|
getRegForInlineAsmConstraint(const std::string &Constraint,
|
2009-08-11 06:56:29 +08:00
|
|
|
EVT VT) const;
|
2007-08-22 00:09:25 +08:00
|
|
|
|
2012-05-07 11:13:32 +08:00
|
|
|
/// LowerAsmOperandForConstraint - 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'.
|
|
|
|
virtual void LowerAsmOperandForConstraint(SDValue Op,
|
|
|
|
std::string &Constraint,
|
|
|
|
std::vector<SDValue> &Ops,
|
|
|
|
SelectionDAG &DAG) const;
|
|
|
|
|
2012-11-17 08:25:41 +08:00
|
|
|
virtual bool isLegalAddressingMode(const AddrMode &AM, Type *Ty) const;
|
|
|
|
|
Teach DAGCombine to fold constant offsets into GlobalAddress nodes,
and add a TargetLowering hook for it to use to determine when this
is legal (i.e. not in PIC mode, etc.)
This allows instruction selection to emit folded constant offsets
in more cases, such as the included testcase, eliminating the need
for explicit arithmetic instructions.
This eliminates the need for the C++ code in X86ISelDAGToDAG.cpp
that attempted to achieve the same effect, but wasn't as effective.
Also, fix handling of offsets in GlobalAddressSDNodes in several
places, including changing GlobalAddressSDNode's offset from
int to int64_t.
The Mips, Alpha, Sparc, and CellSPU targets appear to be
unaware of GlobalAddress offsets currently, so set the hook to
false on those targets.
llvm-svn: 57748
2008-10-18 10:06:02 +08:00
|
|
|
virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
|
2009-10-28 03:56:55 +08:00
|
|
|
|
2012-06-14 03:33:32 +08:00
|
|
|
virtual EVT getOptimalMemOpType(uint64_t Size, unsigned DstAlign,
|
2012-12-12 10:34:41 +08:00
|
|
|
unsigned SrcAlign,
|
|
|
|
bool IsMemset, bool ZeroMemset,
|
2012-06-14 03:33:32 +08:00
|
|
|
bool MemcpyStrSrc,
|
|
|
|
MachineFunction &MF) const;
|
|
|
|
|
2009-10-28 03:56:55 +08:00
|
|
|
/// isFPImmLegal - Returns true if the target can instruction select the
|
|
|
|
/// specified FP immediate natively. If false, the legalizer will
|
|
|
|
/// materialize the FP immediate as a load from a constant pool.
|
2009-10-28 09:43:28 +08:00
|
|
|
virtual bool isFPImmLegal(const APFloat &Imm, EVT VT) const;
|
2011-05-31 10:54:07 +08:00
|
|
|
|
2012-02-03 12:33:00 +08:00
|
|
|
virtual unsigned getJumpTableEncoding() const;
|
|
|
|
|
2012-09-27 10:15:57 +08:00
|
|
|
MachineBasicBlock *EmitBPOSGE32(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *BB) const;
|
2011-05-31 10:54:07 +08:00
|
|
|
MachineBasicBlock *EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
|
|
|
|
unsigned Size, unsigned BinOpcode, bool Nand = false) const;
|
|
|
|
MachineBasicBlock *EmitAtomicBinaryPartword(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *BB, unsigned Size, unsigned BinOpcode,
|
|
|
|
bool Nand = false) const;
|
|
|
|
MachineBasicBlock *EmitAtomicCmpSwap(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *BB, unsigned Size) const;
|
|
|
|
MachineBasicBlock *EmitAtomicCmpSwapPartword(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *BB, unsigned Size) const;
|
2007-06-06 15:42:06 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // MipsISELLOWERING_H
|