blob: a73bbaa7f149d0062807974431841f5bfee1446c [file] [log] [blame]
Duraid Madinaf221c262005-10-28 17:46:35 +00001//===-- IA64ISelLowering.h - IA64 DAG Lowering Interface --------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Duraid Madina and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that IA64 uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_TARGET_IA64_IA64ISELLOWERING_H
16#define LLVM_TARGET_IA64_IA64ISELLOWERING_H
17
18#include "llvm/Target/TargetLowering.h"
19#include "llvm/CodeGen/SelectionDAG.h"
20#include "IA64.h"
21
22namespace llvm {
23 namespace IA64ISD {
24 enum NodeType {
25 // Start the numbering where the builting ops and target ops leave off.
26 FIRST_NUMBER = ISD::BUILTIN_OP_END+IA64::INSTRUCTION_LIST_END,
27
Duraid Madinab1d57fb2005-12-22 06:41:39 +000028 /// GETFD - the getf.d instruction takes a floating point operand and
29 /// returns its 64-bit memory representation as an i64
Duraid Madina644e7db2005-12-22 13:29:14 +000030 GETFD,
31
32 // TODO: explain this hack
Duraid Madinaf54c9392006-01-20 20:24:31 +000033 BRCALL,
34
35 // RET_FLAG - Return with a flag operand
36 RET_FLAG
Duraid Madinaf221c262005-10-28 17:46:35 +000037 };
38 }
39
40 class IA64TargetLowering : public TargetLowering {
41 int VarArgsFrameIndex; // FrameIndex for start of varargs area.
42 //int ReturnAddrIndex; // FrameIndex for return slot.
43 unsigned GP, SP, RP; // FIXME - clean this mess up
44
45 public:
46 IA64TargetLowering(TargetMachine &TM);
47
48 unsigned VirtGPR; // this is public so it can be accessed in the selector
49 // for ISD::RET. add an accessor instead? FIXME
50
51 /// LowerOperation - Provide custom lowering hooks for some operations.
52 ///
53// XXX virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
54
Chris Lattnerc17b41c2006-01-14 22:27:21 +000055 const char *getTargetNodeName(unsigned Opcode) const;
56
Duraid Madinaf221c262005-10-28 17:46:35 +000057 /// LowerArguments - This hook must be implemented to indicate how we should
58 /// lower the arguments for the specified function, into the specified DAG.
59 virtual std::vector<SDOperand>
60 LowerArguments(Function &F, SelectionDAG &DAG);
61
62 /// LowerCallTo - This hook lowers an abstract call to a function into an
63 /// actual call.
64 virtual std::pair<SDOperand, SDOperand>
65 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
66 unsigned CC,
67 bool isTailCall, SDOperand Callee, ArgListTy &Args,
68 SelectionDAG &DAG);
69
Duraid Madinaf54c9392006-01-20 20:24:31 +000070 /// LowerReturnTo - This spits out restore-previous-frame-state+br.ret
71 /// instructions
72 virtual SDOperand LowerReturnTo(SDOperand Chain, SDOperand Op,
73 SelectionDAG &DAG);
74
75 /// LowerOperation - for custom lowering specific ops
76 /// (currently, only "ret void")
77 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
78
Duraid Madinaf221c262005-10-28 17:46:35 +000079 virtual SDOperand LowerVAStart(SDOperand Chain, SDOperand VAListP,
80 Value *VAListV, SelectionDAG &DAG);
Duraid Madinaf54c9392006-01-20 20:24:31 +000081
Duraid Madinaf221c262005-10-28 17:46:35 +000082 virtual std::pair<SDOperand,SDOperand>
83 LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
84 const Type *ArgTy, SelectionDAG &DAG);
85
86 virtual std::pair<SDOperand, SDOperand>
87 LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
88 SelectionDAG &DAG);
89
90// XXX virtual MachineBasicBlock *InsertAtEndOfBasicBlock(MachineInstr *MI,
91// XXX MachineBasicBlock *MBB);
92 };
93}
94
95#endif // LLVM_TARGET_IA64_IA64ISELLOWERING_H