blob: aef51f0f1157b2d8214bee9a3e1d62042922d104 [file] [log] [blame]
Duraid Madinaf2db9b82005-10-28 17:46:35 +00001//===-- IA64ISelLowering.h - IA64 DAG Lowering Interface --------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Duraid Madinaf2db9b82005-10-28 17:46:35 +00007//
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 Madinaa6ec3cb2005-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 Madina64aa0ea2005-12-22 13:29:14 +000030 GETFD,
31
32 // TODO: explain this hack
Duraid Madinabea99472006-01-20 20:24:31 +000033 BRCALL,
34
35 // RET_FLAG - Return with a flag operand
36 RET_FLAG
Duraid Madinaf2db9b82005-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
Duraid Madinaf2db9b82005-10-28 17:46:35 +000044 public:
Dan Gohman61e729e2007-08-02 21:21:54 +000045 explicit IA64TargetLowering(TargetMachine &TM);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000046
47 unsigned VirtGPR; // this is public so it can be accessed in the selector
48 // for ISD::RET. add an accessor instead? FIXME
Chris Lattnerbc0f4602006-01-14 22:27:21 +000049 const char *getTargetNodeName(unsigned Opcode) const;
Scott Michel405fba12008-03-10 23:49:09 +000050
51 /// getSetCCResultType: return ISD::SETCC's result type.
52 virtual MVT::ValueType getSetCCResultType(const SDOperand &) const;
Chris Lattnerbc0f4602006-01-14 22:27:21 +000053
Duraid Madinaf2db9b82005-10-28 17:46:35 +000054 /// LowerArguments - This hook must be implemented to indicate how we should
55 /// lower the arguments for the specified function, into the specified DAG.
56 virtual std::vector<SDOperand>
57 LowerArguments(Function &F, SelectionDAG &DAG);
58
59 /// LowerCallTo - This hook lowers an abstract call to a function into an
60 /// actual call.
61 virtual std::pair<SDOperand, SDOperand>
Duncan Sands00fee652008-02-14 17:28:50 +000062 LowerCallTo(SDOperand Chain, const Type *RetTy,
63 bool RetSExt, bool RetZExt, bool isVarArg,
64 unsigned CC, bool isTailCall,
Reid Spencer47857812006-12-31 05:55:36 +000065 SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG);
Duncan Sands00fee652008-02-14 17:28:50 +000066
Duraid Madinabea99472006-01-20 20:24:31 +000067 /// LowerOperation - for custom lowering specific ops
68 /// (currently, only "ret void")
69 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
70
Duraid Madinaf2db9b82005-10-28 17:46:35 +000071 };
72}
73
74#endif // LLVM_TARGET_IA64_IA64ISELLOWERING_H