blob: b4468ac8a3396322c7eb059828e054231aa3d217 [file] [log] [blame]
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001//===-- X86ISelLowering.h - X86 DAG Lowering Interface ----------*- C++ -*-===//
2//
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 X86 uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef X86ISELLOWERING_H
16#define X86ISELLOWERING_H
17
18#include "llvm/Target/TargetLowering.h"
19#include "llvm/CodeGen/SelectionDAG.h"
20
21namespace llvm {
22 // X86 Specific DAG Nodes
23 namespace X86ISD {
24 enum NodeType {
25 // Start the numbering where the builtin ops leave off.
26 FIRST_NUMBER = ISD::BUILTIN_OP_END,
27
28 /// FILD64m - This instruction implements SINT_TO_FP with a
29 /// 64-bit source in memory and a FP reg result. This corresponds to
30 /// the X86::FILD64m instruction. It has two inputs (token chain and
31 /// address) and two outputs (FP value and token chain).
32 FILD64m,
33
34 /// FP_TO_INT*_IN_MEM - This instruction implements FP_TO_SINT with the
35 /// integer destination in memory and a FP reg source. This corresponds
36 /// to the X86::FIST*m instructions and the rounding mode change stuff. It
37 /// has two inputs (token chain and address) and two outputs (FP value and
38 /// token chain).
39 FP_TO_INT16_IN_MEM,
40 FP_TO_INT32_IN_MEM,
41 FP_TO_INT64_IN_MEM,
42
43 /// CALL/TAILCALL - These operations represent an abstract X86 call
44 /// instruction, which includes a bunch of information. In particular the
45 /// operands of these node are:
46 ///
47 /// #0 - The incoming token chain
48 /// #1 - The callee
49 /// #2 - The number of arg bytes the caller pushes on the stack.
50 /// #3 - The number of arg bytes the callee pops off the stack.
51 /// #4 - The value to pass in AL/AX/EAX (optional)
52 /// #5 - The value to pass in DL/DX/EDX (optional)
53 ///
54 /// The result values of these nodes are:
55 ///
56 /// #0 - The outgoing token chain
57 /// #1 - The first register result value (optional)
58 /// #2 - The second register result value (optional)
59 ///
60 /// The CALL vs TAILCALL distinction boils down to whether the callee is
61 /// known not to modify the caller's stack frame, as is standard with
62 /// LLVM.
63 CALL,
64 TAILCALL,
65 };
66 }
67
68 //===----------------------------------------------------------------------===//
69 // X86TargetLowering - X86 Implementation of the TargetLowering interface
70 class X86TargetLowering : public TargetLowering {
71 int VarArgsFrameIndex; // FrameIndex for start of varargs area.
72 int ReturnAddrIndex; // FrameIndex for return slot.
73 int BytesToPopOnReturn; // Number of arg bytes ret should pop.
74 int BytesCallerReserves; // Number of arg bytes caller makes.
75 public:
76 X86TargetLowering(TargetMachine &TM);
77
78 // Return the number of bytes that a function should pop when it returns (in
79 // addition to the space used by the return address).
80 //
81 unsigned getBytesToPopOnReturn() const { return BytesToPopOnReturn; }
82
83 // Return the number of bytes that the caller reserves for arguments passed
84 // to this function.
85 unsigned getBytesCallerReserves() const { return BytesCallerReserves; }
86
87 /// LowerOperation - Provide custom lowering hooks for some operations.
88 ///
89 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
90
91 /// LowerArguments - This hook must be implemented to indicate how we should
92 /// lower the arguments for the specified function, into the specified DAG.
93 virtual std::vector<SDOperand>
94 LowerArguments(Function &F, SelectionDAG &DAG);
95
96 /// LowerCallTo - This hook lowers an abstract call to a function into an
97 /// actual call.
98 virtual std::pair<SDOperand, SDOperand>
99 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC,
100 bool isTailCall, SDOperand Callee, ArgListTy &Args,
101 SelectionDAG &DAG);
102
103 virtual SDOperand LowerVAStart(SDOperand Chain, SDOperand VAListP,
104 Value *VAListV, SelectionDAG &DAG);
105 virtual std::pair<SDOperand,SDOperand>
106 LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
107 const Type *ArgTy, SelectionDAG &DAG);
108
109 virtual std::pair<SDOperand, SDOperand>
110 LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
111 SelectionDAG &DAG);
112
113 SDOperand getReturnAddressFrameIndex(SelectionDAG &DAG);
114
115 private:
116 // C Calling Convention implementation.
117 std::vector<SDOperand> LowerCCCArguments(Function &F, SelectionDAG &DAG);
118 std::pair<SDOperand, SDOperand>
119 LowerCCCCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
120 bool isTailCall,
121 SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG);
122
123 // Fast Calling Convention implementation.
124 std::vector<SDOperand> LowerFastCCArguments(Function &F, SelectionDAG &DAG);
125 std::pair<SDOperand, SDOperand>
126 LowerFastCCCallTo(SDOperand Chain, const Type *RetTy, bool isTailCall,
127 SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG);
128 };
129}
130
131#endif // X86ISELLOWERING_H