2005-10-28 19:46:35 +02:00
|
|
|
//===-- IA64ISelLowering.h - IA64 DAG Lowering Interface --------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-10-28 19:46:35 +02: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.
|
|
|
|
FIRST_NUMBER = ISD::BUILTIN_OP_END+IA64::INSTRUCTION_LIST_END,
|
|
|
|
|
2005-12-22 07:41:39 +01:00
|
|
|
/// GETFD - the getf.d instruction takes a floating point operand and
|
|
|
|
/// returns its 64-bit memory representation as an i64
|
2005-12-22 14:29:14 +01:00
|
|
|
GETFD,
|
|
|
|
|
|
|
|
// TODO: explain this hack
|
2006-01-20 21:24:31 +01:00
|
|
|
BRCALL,
|
|
|
|
|
|
|
|
// RET_FLAG - Return with a flag operand
|
|
|
|
RET_FLAG
|
2005-10-28 19:46:35 +02: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 23:21:54 +02:00
|
|
|
explicit IA64TargetLowering(TargetMachine &TM);
|
2005-10-28 19:46:35 +02: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 23:27:21 +01:00
|
|
|
const char *getTargetNodeName(unsigned Opcode) const;
|
2008-03-11 00:49:09 +01:00
|
|
|
|
|
|
|
/// getSetCCResultType: return ISD::SETCC's result type.
|
|
|
|
virtual MVT::ValueType getSetCCResultType(const SDOperand &) const;
|
2006-01-14 23:27:21 +01:00
|
|
|
|
2005-10-28 19:46:35 +02:00
|
|
|
/// LowerArguments - This hook must be implemented to indicate how we should
|
|
|
|
/// lower the arguments for the specified function, into the specified DAG.
|
|
|
|
virtual std::vector<SDOperand>
|
|
|
|
LowerArguments(Function &F, SelectionDAG &DAG);
|
|
|
|
|
|
|
|
/// LowerCallTo - This hook lowers an abstract call to a function into an
|
|
|
|
/// actual call.
|
|
|
|
virtual std::pair<SDOperand, SDOperand>
|
2008-02-14 18:28:50 +01:00
|
|
|
LowerCallTo(SDOperand Chain, const Type *RetTy,
|
|
|
|
bool RetSExt, bool RetZExt, bool isVarArg,
|
|
|
|
unsigned CC, bool isTailCall,
|
2006-12-31 06:55:36 +01:00
|
|
|
SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG);
|
2008-02-14 18:28:50 +01:00
|
|
|
|
2006-01-20 21:24:31 +01:00
|
|
|
/// LowerOperation - for custom lowering specific ops
|
|
|
|
/// (currently, only "ret void")
|
|
|
|
virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
|
|
|
|
|
2005-10-28 19:46:35 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LLVM_TARGET_IA64_IA64ISELLOWERING_H
|