2010-02-23 20:15:24 +01:00
|
|
|
//===-- MBlazeISelLowering.h - MBlaze 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 MBlaze uses to lower LLVM code into a
|
|
|
|
// selection DAG.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef MBlazeISELLOWERING_H
|
|
|
|
#define MBlazeISELLOWERING_H
|
|
|
|
|
2010-10-21 21:48:38 +02:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-02-23 20:15:24 +01:00
|
|
|
#include "llvm/CodeGen/SelectionDAG.h"
|
|
|
|
#include "llvm/Target/TargetLowering.h"
|
|
|
|
#include "MBlaze.h"
|
|
|
|
#include "MBlazeSubtarget.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace MBlazeCC {
|
|
|
|
enum CC {
|
|
|
|
FIRST = 0,
|
|
|
|
EQ,
|
|
|
|
NE,
|
|
|
|
GT,
|
|
|
|
LT,
|
|
|
|
GE,
|
|
|
|
LE
|
|
|
|
};
|
2010-10-21 21:48:38 +02:00
|
|
|
|
|
|
|
inline static CC getOppositeCondition(CC cc) {
|
|
|
|
switch (cc) {
|
|
|
|
default: llvm_unreachable("Unknown condition code");
|
|
|
|
case EQ: return NE;
|
|
|
|
case NE: return EQ;
|
|
|
|
case GT: return LE;
|
|
|
|
case LT: return GE;
|
|
|
|
case GE: return LT;
|
|
|
|
case LE: return GE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static const char *MBlazeCCToString(CC cc) {
|
|
|
|
switch (cc) {
|
|
|
|
default: llvm_unreachable("Unknown condition code");
|
|
|
|
case EQ: return "eq";
|
|
|
|
case NE: return "ne";
|
|
|
|
case GT: return "gt";
|
|
|
|
case LT: return "lt";
|
|
|
|
case GE: return "ge";
|
|
|
|
case LE: return "le";
|
|
|
|
}
|
|
|
|
}
|
2010-02-23 20:15:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace MBlazeISD {
|
|
|
|
enum NodeType {
|
|
|
|
// Start the numbering from where ISD NodeType finishes.
|
|
|
|
FIRST_NUMBER = ISD::BUILTIN_OP_END,
|
|
|
|
|
|
|
|
// Jump and link (call)
|
|
|
|
JmpLink,
|
|
|
|
|
|
|
|
// Handle gp_rel (small data/bss sections) relocation.
|
|
|
|
GPRel,
|
|
|
|
|
|
|
|
// Select CC Pseudo Instruction
|
|
|
|
Select_CC,
|
|
|
|
|
|
|
|
// Wrap up multiple types of instructions
|
|
|
|
Wrap,
|
|
|
|
|
|
|
|
// Integer Compare
|
|
|
|
ICmp,
|
|
|
|
|
|
|
|
// Return
|
|
|
|
Ret
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// TargetLowering Implementation
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
class MBlazeTargetLowering : public TargetLowering {
|
|
|
|
public:
|
|
|
|
explicit MBlazeTargetLowering(MBlazeTargetMachine &TM);
|
|
|
|
|
|
|
|
/// LowerOperation - Provide custom lowering hooks for some operations.
|
2010-04-17 17:26:15 +02:00
|
|
|
virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
|
2010-02-23 20:15:24 +01:00
|
|
|
|
|
|
|
/// getTargetNodeName - This method returns the name of a target specific
|
|
|
|
// DAG node.
|
|
|
|
virtual const char *getTargetNodeName(unsigned Opcode) const;
|
|
|
|
|
|
|
|
/// getSetCCResultType - get the ISD::SETCC result ValueType
|
|
|
|
MVT::SimpleValueType getSetCCResultType(EVT VT) const;
|
|
|
|
|
|
|
|
virtual unsigned getFunctionAlignment(const Function *F) const;
|
|
|
|
private:
|
|
|
|
// Subtarget Info
|
|
|
|
const MBlazeSubtarget *Subtarget;
|
|
|
|
|
|
|
|
|
|
|
|
// Lower Operand helpers
|
|
|
|
SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
|
|
|
|
CallingConv::ID CallConv, bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
|
|
|
DebugLoc dl, SelectionDAG &DAG,
|
2010-04-17 17:26:15 +02:00
|
|
|
SmallVectorImpl<SDValue> &InVals) const;
|
2010-02-23 20:15:24 +01:00
|
|
|
|
|
|
|
// Lower Operand specifics
|
2010-04-17 17:26:15 +02:00
|
|
|
SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) const;
|
2010-02-23 20:15:24 +01:00
|
|
|
|
|
|
|
virtual SDValue
|
|
|
|
LowerFormalArguments(SDValue Chain,
|
|
|
|
CallingConv::ID CallConv, bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
|
|
|
DebugLoc dl, SelectionDAG &DAG,
|
2010-04-17 17:26:15 +02:00
|
|
|
SmallVectorImpl<SDValue> &InVals) const;
|
2010-02-23 20:15:24 +01:00
|
|
|
|
|
|
|
virtual SDValue
|
|
|
|
LowerCall(SDValue Chain, SDValue Callee,
|
|
|
|
CallingConv::ID CallConv, bool isVarArg,
|
|
|
|
bool &isTailCall,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
2010-07-07 17:54:55 +02:00
|
|
|
const SmallVectorImpl<SDValue> &OutVals,
|
2010-02-23 20:15:24 +01:00
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
|
|
|
DebugLoc dl, SelectionDAG &DAG,
|
2010-04-17 17:26:15 +02:00
|
|
|
SmallVectorImpl<SDValue> &InVals) const;
|
2010-02-23 20:15:24 +01:00
|
|
|
|
|
|
|
virtual SDValue
|
|
|
|
LowerReturn(SDValue Chain,
|
|
|
|
CallingConv::ID CallConv, bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
2010-07-07 17:54:55 +02:00
|
|
|
const SmallVectorImpl<SDValue> &OutVals,
|
2010-04-17 17:26:15 +02:00
|
|
|
DebugLoc dl, SelectionDAG &DAG) const;
|
2010-02-23 20:15:24 +01:00
|
|
|
|
2010-05-01 02:01:06 +02:00
|
|
|
virtual MachineBasicBlock *
|
|
|
|
EmitInstrWithCustomInserter(MachineInstr *MI,
|
|
|
|
MachineBasicBlock *MBB) const;
|
2010-02-23 20:15:24 +01:00
|
|
|
|
|
|
|
// Inline asm support
|
|
|
|
ConstraintType getConstraintType(const std::string &Constraint) const;
|
|
|
|
|
2010-10-29 19:29:13 +02: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.
|
|
|
|
ConstraintWeight getSingleConstraintMatchWeight(
|
|
|
|
AsmOperandInfo &info, const char *constraint) const;
|
|
|
|
|
2010-02-23 20:15:24 +01:00
|
|
|
std::pair<unsigned, const TargetRegisterClass*>
|
|
|
|
getRegForInlineAsmConstraint(const std::string &Constraint,
|
|
|
|
EVT VT) const;
|
|
|
|
|
|
|
|
std::vector<unsigned>
|
|
|
|
getRegClassForInlineAsmConstraint(const std::string &Constraint,
|
|
|
|
EVT VT) const;
|
|
|
|
|
|
|
|
virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
|
|
|
|
|
|
|
|
/// 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.
|
|
|
|
virtual bool isFPImmLegal(const APFloat &Imm, EVT VT) const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // MBlazeISELLOWERING_H
|