2005-10-28 17:46:35 +00:00
|
|
|
//===-- IA64ISelLowering.h - IA64 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-10-28 17:46:35 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the interfaces that IA64 uses to lower LLVM code into a
|
|
|
|
// selection DAG.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TARGET_IA64_IA64ISELLOWERING_H
|
|
|
|
#define LLVM_TARGET_IA64_IA64ISELLOWERING_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetLowering.h"
|
|
|
|
#include "llvm/CodeGen/SelectionDAG.h"
|
|
|
|
#include "IA64.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace IA64ISD {
|
|
|
|
enum NodeType {
|
|
|
|
// Start the numbering where the builting ops and target ops leave off.
|
2008-09-23 18:42:32 +00:00
|
|
|
FIRST_NUMBER = ISD::BUILTIN_OP_END,
|
2005-10-28 17:46:35 +00:00
|
|
|
|
2005-12-22 06:41:39 +00:00
|
|
|
/// GETFD - the getf.d instruction takes a floating point operand and
|
|
|
|
/// returns its 64-bit memory representation as an i64
|
2005-12-22 13:29:14 +00:00
|
|
|
GETFD,
|
|
|
|
|
|
|
|
// TODO: explain this hack
|
2006-01-20 20:24:31 +00:00
|
|
|
BRCALL,
|
|
|
|
|
|
|
|
// RET_FLAG - Return with a flag operand
|
|
|
|
RET_FLAG
|
2005-10-28 17:46:35 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
class IA64TargetLowering : public TargetLowering {
|
|
|
|
int VarArgsFrameIndex; // FrameIndex for start of varargs area.
|
|
|
|
//int ReturnAddrIndex; // FrameIndex for return slot.
|
|
|
|
unsigned GP, SP, RP; // FIXME - clean this mess up
|
|
|
|
public:
|
2007-08-02 21:21:54 +00:00
|
|
|
explicit IA64TargetLowering(TargetMachine &TM);
|
2005-10-28 17:46:35 +00:00
|
|
|
|
|
|
|
unsigned VirtGPR; // this is public so it can be accessed in the selector
|
|
|
|
// for ISD::RET. add an accessor instead? FIXME
|
2006-01-14 22:27:21 +00:00
|
|
|
const char *getTargetNodeName(unsigned Opcode) const;
|
2008-03-10 23:49:09 +00:00
|
|
|
|
|
|
|
/// getSetCCResultType: return ISD::SETCC's result type.
|
2009-01-01 15:52:00 +00:00
|
|
|
virtual MVT getSetCCResultType(MVT VT) const;
|
2006-01-14 22:27:21 +00:00
|
|
|
|
2005-10-28 17:46:35 +00:00
|
|
|
/// LowerArguments - This hook must be implemented to indicate how we should
|
|
|
|
/// lower the arguments for the specified function, into the specified DAG.
|
2008-06-30 20:31:15 +00:00
|
|
|
virtual void LowerArguments(Function &F, SelectionDAG &DAG,
|
2009-01-30 23:10:59 +00:00
|
|
|
SmallVectorImpl<SDValue> &ArgValues,
|
|
|
|
DebugLoc dl);
|
2005-10-28 17:46:35 +00:00
|
|
|
|
|
|
|
/// LowerCallTo - This hook lowers an abstract call to a function into an
|
|
|
|
/// actual call.
|
2008-07-27 21:46:04 +00:00
|
|
|
virtual std::pair<SDValue, SDValue>
|
|
|
|
LowerCallTo(SDValue Chain, const Type *RetTy,
|
2008-09-26 19:31:26 +00:00
|
|
|
bool RetSExt, bool RetZExt, bool isVarArg, bool isInreg,
|
2008-02-14 17:28:50 +00:00
|
|
|
unsigned CC, bool isTailCall,
|
2009-01-30 23:10:59 +00:00
|
|
|
SDValue Callee, ArgListTy &Args, SelectionDAG &DAG,
|
|
|
|
DebugLoc dl);
|
2008-02-14 17:28:50 +00:00
|
|
|
|
2006-01-20 20:24:31 +00:00
|
|
|
/// LowerOperation - for custom lowering specific ops
|
|
|
|
/// (currently, only "ret void")
|
2008-07-27 21:46:04 +00:00
|
|
|
virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG);
|
2006-01-20 20:24:31 +00:00
|
|
|
|
2005-10-28 17:46:35 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LLVM_TARGET_IA64_IA64ISELLOWERING_H
|