2008-03-17 04:21:36 +01:00
|
|
|
//===-- SparcISelLowering.h - Sparc DAG Lowering Interface ------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the interfaces that Sparc uses to lower LLVM code into a
|
|
|
|
// selection DAG.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 18:26:38 +02:00
|
|
|
#ifndef LLVM_LIB_TARGET_SPARC_SPARCISELLOWERING_H
|
|
|
|
#define LLVM_LIB_TARGET_SPARC_SPARCISELLOWERING_H
|
2008-03-17 04:21:36 +01:00
|
|
|
|
|
|
|
#include "Sparc.h"
|
2012-03-17 19:46:09 +01:00
|
|
|
#include "llvm/Target/TargetLowering.h"
|
2008-03-17 04:21:36 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
2013-04-02 06:08:54 +02:00
|
|
|
class SparcSubtarget;
|
|
|
|
|
2008-03-17 04:21:36 +01:00
|
|
|
namespace SPISD {
|
|
|
|
enum {
|
2008-09-23 20:42:32 +02:00
|
|
|
FIRST_NUMBER = ISD::BUILTIN_OP_END,
|
2013-04-03 06:41:44 +02:00
|
|
|
CMPICC, // Compare two GPR operands, set icc+xcc.
|
2008-03-17 04:21:36 +01:00
|
|
|
CMPFCC, // Compare two FP operands, set fcc.
|
|
|
|
BRICC, // Branch to dest on icc condition
|
2013-04-03 06:41:44 +02:00
|
|
|
BRXCC, // Branch to dest on xcc condition (64-bit only).
|
2008-03-17 04:21:36 +01:00
|
|
|
BRFCC, // Branch to dest on fcc condition
|
|
|
|
SELECT_ICC, // Select between two values using the current ICC flags.
|
2013-04-04 05:08:00 +02:00
|
|
|
SELECT_XCC, // Select between two values using the current XCC flags.
|
2008-03-17 04:21:36 +01:00
|
|
|
SELECT_FCC, // Select between two values using the current FCC flags.
|
2008-10-10 22:28:10 +02:00
|
|
|
|
2008-03-17 04:21:36 +01:00
|
|
|
Hi, Lo, // Hi/Lo operations, typically on a global address.
|
2008-10-10 22:28:10 +02:00
|
|
|
|
2008-03-17 04:21:36 +01:00
|
|
|
FTOI, // FP to Int within a FP register.
|
|
|
|
ITOF, // Int to FP within a FP register.
|
2013-11-03 13:28:40 +01:00
|
|
|
FTOX, // FP to Int64 within a FP register.
|
|
|
|
XTOF, // Int64 to FP within a FP register.
|
2008-10-10 22:28:10 +02:00
|
|
|
|
2008-03-17 04:21:36 +01:00
|
|
|
CALL, // A call instruction.
|
2009-09-15 19:46:24 +02:00
|
|
|
RET_FLAG, // Return with a flag operand.
|
2013-09-22 08:48:52 +02:00
|
|
|
GLOBAL_BASE_REG, // Global base reg for PIC.
|
|
|
|
FLUSHW, // FLUSH register windows to stack.
|
|
|
|
|
|
|
|
TLS_ADD, // For Thread Local Storage (TLS).
|
|
|
|
TLS_LD,
|
|
|
|
TLS_CALL
|
2008-03-17 04:21:36 +01:00
|
|
|
};
|
|
|
|
}
|
2008-10-10 22:28:10 +02:00
|
|
|
|
2008-03-17 04:21:36 +01:00
|
|
|
class SparcTargetLowering : public TargetLowering {
|
2013-04-02 06:08:54 +02:00
|
|
|
const SparcSubtarget *Subtarget;
|
2008-03-17 04:21:36 +01:00
|
|
|
public:
|
2015-01-31 00:46:43 +01:00
|
|
|
SparcTargetLowering(TargetMachine &TM, const SparcSubtarget &STI);
|
2014-04-29 09:57:13 +02:00
|
|
|
SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
|
2008-10-10 22:28:10 +02:00
|
|
|
|
2014-05-14 23:14:37 +02:00
|
|
|
/// computeKnownBitsForTargetNode - Determine which of the bits specified
|
2008-10-10 22:28:10 +02:00
|
|
|
/// in Mask are known to be either zero or one and return them in the
|
2008-03-17 04:21:36 +01:00
|
|
|
/// KnownZero/KnownOne bitsets.
|
2014-05-14 23:14:37 +02:00
|
|
|
void computeKnownBitsForTargetNode(const SDValue Op,
|
|
|
|
APInt &KnownZero,
|
|
|
|
APInt &KnownOne,
|
|
|
|
const SelectionDAG &DAG,
|
|
|
|
unsigned Depth = 0) const override;
|
2008-10-10 22:28:10 +02:00
|
|
|
|
2014-04-29 09:57:13 +02:00
|
|
|
MachineBasicBlock *
|
2010-05-01 02:01:06 +02:00
|
|
|
EmitInstrWithCustomInserter(MachineInstr *MI,
|
2014-04-29 09:57:13 +02:00
|
|
|
MachineBasicBlock *MBB) const override;
|
2008-10-10 22:28:10 +02:00
|
|
|
|
2014-04-29 09:57:13 +02:00
|
|
|
const char *getTargetNodeName(unsigned Opcode) const override;
|
2008-10-10 22:28:10 +02:00
|
|
|
|
2014-04-29 09:57:13 +02:00
|
|
|
ConstraintType getConstraintType(const std::string &Constraint) const override;
|
2014-01-22 02:29:51 +01:00
|
|
|
ConstraintWeight
|
|
|
|
getSingleConstraintMatchWeight(AsmOperandInfo &info,
|
2014-04-29 09:57:13 +02:00
|
|
|
const char *constraint) const override;
|
2014-01-22 02:29:51 +01:00
|
|
|
void LowerAsmOperandForConstraint(SDValue Op,
|
|
|
|
std::string &Constraint,
|
|
|
|
std::vector<SDValue> &Ops,
|
2014-04-29 09:57:13 +02:00
|
|
|
SelectionDAG &DAG) const override;
|
2015-02-26 23:38:43 +01:00
|
|
|
std::pair<unsigned, const TargetRegisterClass *>
|
|
|
|
getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
|
|
|
|
const std::string &Constraint,
|
|
|
|
MVT VT) const override;
|
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 04:06:02 +02:00
|
|
|
|
2014-04-29 09:57:13 +02:00
|
|
|
bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
|
|
|
|
MVT getScalarShiftAmountTy(EVT LHSTy) const override { return MVT::i32; }
|
2009-07-01 00:38:32 +02:00
|
|
|
|
2013-12-09 05:02:15 +01:00
|
|
|
/// getSetCCResultType - Return the ISD::SETCC ValueType
|
2014-04-29 09:57:13 +02:00
|
|
|
EVT getSetCCResultType(LLVMContext &Context, EVT VT) const override;
|
2013-12-09 05:02:15 +01:00
|
|
|
|
2014-04-29 09:57:13 +02: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 03:29:28 +02:00
|
|
|
LowerFormalArguments(SDValue Chain,
|
2009-09-02 10:44:58 +02: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 03:29:28 +02:00
|
|
|
bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
2013-05-25 04:42:55 +02:00
|
|
|
SDLoc dl, SelectionDAG &DAG,
|
2014-04-29 09:57:13 +02:00
|
|
|
SmallVectorImpl<SDValue> &InVals) const override;
|
2013-04-02 06:09:02 +02:00
|
|
|
SDValue LowerFormalArguments_32(SDValue Chain,
|
|
|
|
CallingConv::ID CallConv,
|
|
|
|
bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
2013-05-25 04:42:55 +02:00
|
|
|
SDLoc dl, SelectionDAG &DAG,
|
2013-04-02 06:09:02 +02:00
|
|
|
SmallVectorImpl<SDValue> &InVals) const;
|
|
|
|
SDValue LowerFormalArguments_64(SDValue Chain,
|
|
|
|
CallingConv::ID CallConv,
|
|
|
|
bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
2013-05-25 04:42:55 +02:00
|
|
|
SDLoc dl, SelectionDAG &DAG,
|
2013-04-02 06:09:02 +02: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 03:29:28 +02:00
|
|
|
|
2014-04-29 09:57:13 +02:00
|
|
|
SDValue
|
2012-05-25 18:35:28 +02:00
|
|
|
LowerCall(TargetLowering::CallLoweringInfo &CLI,
|
2014-04-29 09:57:13 +02:00
|
|
|
SmallVectorImpl<SDValue> &InVals) const override;
|
2013-04-07 21:10:57 +02:00
|
|
|
SDValue LowerCall_32(TargetLowering::CallLoweringInfo &CLI,
|
|
|
|
SmallVectorImpl<SDValue> &InVals) const;
|
|
|
|
SDValue LowerCall_64(TargetLowering::CallLoweringInfo &CLI,
|
|
|
|
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 03:29:28 +02:00
|
|
|
|
2014-04-29 09:57:13 +02: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 03:29:28 +02:00
|
|
|
LowerReturn(SDValue Chain,
|
2009-09-02 10:44:58 +02: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 03:29:28 +02:00
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
2010-07-07 17:54:55 +02:00
|
|
|
const SmallVectorImpl<SDValue> &OutVals,
|
2014-04-29 09:57:13 +02:00
|
|
|
SDLoc dl, SelectionDAG &DAG) const override;
|
2013-04-07 01:57:33 +02:00
|
|
|
SDValue LowerReturn_32(SDValue Chain,
|
|
|
|
CallingConv::ID CallConv, bool IsVarArg,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
|
|
|
const SmallVectorImpl<SDValue> &OutVals,
|
2013-05-25 04:42:55 +02:00
|
|
|
SDLoc DL, SelectionDAG &DAG) const;
|
2013-04-07 01:57:33 +02:00
|
|
|
SDValue LowerReturn_64(SDValue Chain,
|
|
|
|
CallingConv::ID CallConv, bool IsVarArg,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
|
|
|
const SmallVectorImpl<SDValue> &OutVals,
|
2013-05-25 04:42:55 +02:00
|
|
|
SDLoc DL, SelectionDAG &DAG) const;
|
2009-09-15 19:46:24 +02:00
|
|
|
|
2010-04-17 17:26:15 +02:00
|
|
|
SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
|
2013-09-22 08:48:52 +02:00
|
|
|
SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
|
2010-04-17 17:26:15 +02:00
|
|
|
SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
|
2013-06-03 07:58:33 +02:00
|
|
|
SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
|
2011-02-21 04:42:44 +01:00
|
|
|
|
|
|
|
unsigned getSRetArgSize(SelectionDAG &DAG, SDValue Callee) const;
|
2013-04-14 03:33:32 +02:00
|
|
|
SDValue withTargetFlags(SDValue Op, unsigned TF, SelectionDAG &DAG) const;
|
|
|
|
SDValue makeHiLoPair(SDValue Op, unsigned HiTF, unsigned LoTF,
|
|
|
|
SelectionDAG &DAG) const;
|
2013-04-14 06:35:16 +02:00
|
|
|
SDValue makeAddress(SDValue Op, SelectionDAG &DAG) const;
|
2013-09-03 06:11:59 +02:00
|
|
|
|
|
|
|
SDValue LowerF128_LibCallArg(SDValue Chain, ArgListTy &Args,
|
|
|
|
SDValue Arg, SDLoc DL,
|
|
|
|
SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerF128Op(SDValue Op, SelectionDAG &DAG,
|
|
|
|
const char *LibFuncName,
|
|
|
|
unsigned numArgs) const;
|
|
|
|
SDValue LowerF128Compare(SDValue LHS, SDValue RHS,
|
|
|
|
unsigned &SPCC,
|
|
|
|
SDLoc DL,
|
|
|
|
SelectionDAG &DAG) const;
|
|
|
|
|
2014-04-29 09:57:13 +02:00
|
|
|
bool ShouldShrinkFPConstant(EVT VT) const override {
|
2013-09-03 06:11:59 +02:00
|
|
|
// Do not shrink FP constpool if VT == MVT::f128.
|
|
|
|
// (ldd, call _Q_fdtoq) is more expensive than two ldds.
|
|
|
|
return VT != MVT::f128;
|
|
|
|
}
|
2013-11-03 13:28:40 +01:00
|
|
|
|
2014-04-29 09:57:13 +02:00
|
|
|
void ReplaceNodeResults(SDNode *N,
|
2013-11-03 13:28:40 +01:00
|
|
|
SmallVectorImpl<SDValue>& Results,
|
2014-04-29 09:57:13 +02:00
|
|
|
SelectionDAG &DAG) const override;
|
2014-01-24 07:23:31 +01:00
|
|
|
|
|
|
|
MachineBasicBlock *expandSelectCC(MachineInstr *MI, MachineBasicBlock *BB,
|
|
|
|
unsigned BROpcode) const;
|
|
|
|
MachineBasicBlock *expandAtomicRMW(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *BB,
|
|
|
|
unsigned Opcode,
|
|
|
|
unsigned CondCode = 0) const;
|
2008-03-17 04:21:36 +01:00
|
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif // SPARC_ISELLOWERING_H
|