blob: daf392ce0a756284d14979186301603e3d607b48 [file] [log] [blame]
Nate Begeman21e463b2005-10-16 05:39:50 +00001//===-- PPCISelLowering.h - PPC32 DAG Lowering Interface --------*- C++ -*-===//
Chris Lattner7c5a3d32005-08-16 17:14:42 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner 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 PPC uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_TARGET_POWERPC_PPC32ISELLOWERING_H
16#define LLVM_TARGET_POWERPC_PPC32ISELLOWERING_H
17
18#include "llvm/Target/TargetLowering.h"
Chris Lattner0bbea952005-08-26 20:25:03 +000019#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner26689592005-10-14 23:51:18 +000020#include "PPC.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000021
22namespace llvm {
Chris Lattner0bbea952005-08-26 20:25:03 +000023 namespace PPCISD {
24 enum NodeType {
25 // Start the numbering where the builting ops and target ops leave off.
26 FIRST_NUMBER = ISD::BUILTIN_OP_END+PPC::INSTRUCTION_LIST_END,
27
28 /// FSEL - Traditional three-operand fsel node.
29 ///
30 FSEL,
Chris Lattnerf7605322005-08-31 21:09:52 +000031
Nate Begemanc09eeec2005-09-06 22:03:27 +000032 /// FCFID - The FCFID instruction, taking an f64 operand and producing
33 /// and f64 value containing the FP representation of the integer that
34 /// was temporarily in the f64 operand.
35 FCFID,
36
37 /// FCTI[D,W]Z - The FCTIDZ and FCTIWZ instructions, taking an f32 or f64
38 /// operand, producing an f64 value containing the integer representation
39 /// of that FP value.
40 FCTIDZ, FCTIWZ,
Chris Lattner860e8862005-11-17 07:30:41 +000041
Nate Begeman993aeb22005-12-13 22:55:22 +000042 // VMADDFP, VNMSUBFP - The VMADDFP and VNMSUBFP instructions, taking
43 // three v4f32 operands and producing a v4f32 result.
44 VMADDFP, VNMSUBFP,
45
Chris Lattner860e8862005-11-17 07:30:41 +000046 /// Hi/Lo - These represent the high and low 16-bit parts of a global
47 /// address respectively. These nodes have two operands, the first of
48 /// which must be a TargetGlobalAddress, and the second of which must be a
49 /// Constant. Selected naively, these turn into 'lis G+C' and 'li G+C',
50 /// though these are usually folded into other nodes.
51 Hi, Lo,
52
53 /// GlobalBaseReg - On Darwin, this node represents the result of the mflr
54 /// at function entry, used for PIC code.
55 GlobalBaseReg,
Chris Lattner4172b102005-12-06 02:10:38 +000056
Chris Lattner4172b102005-12-06 02:10:38 +000057 /// These nodes represent the 32-bit PPC shifts that operate on 6-bit
58 /// shift amounts. These nodes are generated by the multi-precision shift
59 /// code.
60 SRL, SRA, SHL,
Nate Begeman9e4dd9d2005-12-20 00:26:01 +000061
62 /// Return with a flag operand, matched by 'blr'
63 RET_FLAG,
64};
Chris Lattner0bbea952005-08-26 20:25:03 +000065 }
66
Nate Begeman21e463b2005-10-16 05:39:50 +000067 class PPCTargetLowering : public TargetLowering {
Chris Lattner7c5a3d32005-08-16 17:14:42 +000068 int VarArgsFrameIndex; // FrameIndex for start of varargs area.
69 int ReturnAddrIndex; // FrameIndex for return slot.
70 public:
Nate Begeman21e463b2005-10-16 05:39:50 +000071 PPCTargetLowering(TargetMachine &TM);
Chris Lattner7c5a3d32005-08-16 17:14:42 +000072
Chris Lattnere4bc9ea2005-08-26 00:52:45 +000073 /// LowerOperation - Provide custom lowering hooks for some operations.
74 ///
75 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
76
Chris Lattner7c5a3d32005-08-16 17:14:42 +000077 /// LowerArguments - This hook must be implemented to indicate how we should
78 /// lower the arguments for the specified function, into the specified DAG.
79 virtual std::vector<SDOperand>
80 LowerArguments(Function &F, SelectionDAG &DAG);
81
82 /// LowerCallTo - This hook lowers an abstract call to a function into an
83 /// actual call.
84 virtual std::pair<SDOperand, SDOperand>
85 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
86 unsigned CC,
87 bool isTailCall, SDOperand Callee, ArgListTy &Args,
88 SelectionDAG &DAG);
Nate Begeman4a959452005-10-18 23:23:37 +000089
90 virtual SDOperand LowerReturnTo(SDOperand Chain, SDOperand Op,
91 SelectionDAG &DAG);
Chris Lattner7c5a3d32005-08-16 17:14:42 +000092
93 virtual SDOperand LowerVAStart(SDOperand Chain, SDOperand VAListP,
94 Value *VAListV, SelectionDAG &DAG);
95
96 virtual std::pair<SDOperand,SDOperand>
97 LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
98 const Type *ArgTy, SelectionDAG &DAG);
99
100 virtual std::pair<SDOperand, SDOperand>
101 LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
102 SelectionDAG &DAG);
Chris Lattner8a2d3ca2005-08-26 21:23:58 +0000103
104 virtual MachineBasicBlock *InsertAtEndOfBasicBlock(MachineInstr *MI,
105 MachineBasicBlock *MBB);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000106 };
107}
108
109#endif // LLVM_TARGET_POWERPC_PPC32ISELLOWERING_H