blob: 26cc7d5ec6a4598c7c0914f8511939fdb78e364a [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.
Evan Cheng7df96d62005-12-17 01:21:05 +000026 FIRST_NUMBER = ISD::BUILTIN_OP_END+X86::INSTRUCTION_LIST_END,
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000027
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,
Andrew Lenharthb873ff32005-11-20 21:41:10 +000065
66 /// RDTSC_DAG - This operation implements the lowering for
67 /// readcyclecounter
68 RDTSC_DAG,
Evan Cheng7df96d62005-12-17 01:21:05 +000069
70 /// X86 compare and logical compare instructions.
71 CMP, TEST,
72
73 /// X86 conditional moves.
74 CMOV,
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000075 };
76 }
77
78 //===----------------------------------------------------------------------===//
79 // X86TargetLowering - X86 Implementation of the TargetLowering interface
80 class X86TargetLowering : public TargetLowering {
81 int VarArgsFrameIndex; // FrameIndex for start of varargs area.
82 int ReturnAddrIndex; // FrameIndex for return slot.
83 int BytesToPopOnReturn; // Number of arg bytes ret should pop.
84 int BytesCallerReserves; // Number of arg bytes caller makes.
85 public:
86 X86TargetLowering(TargetMachine &TM);
87
88 // Return the number of bytes that a function should pop when it returns (in
89 // addition to the space used by the return address).
90 //
91 unsigned getBytesToPopOnReturn() const { return BytesToPopOnReturn; }
92
93 // Return the number of bytes that the caller reserves for arguments passed
94 // to this function.
95 unsigned getBytesCallerReserves() const { return BytesCallerReserves; }
96
97 /// LowerOperation - Provide custom lowering hooks for some operations.
98 ///
99 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
100
101 /// LowerArguments - This hook must be implemented to indicate how we should
102 /// lower the arguments for the specified function, into the specified DAG.
103 virtual std::vector<SDOperand>
104 LowerArguments(Function &F, SelectionDAG &DAG);
105
106 /// LowerCallTo - This hook lowers an abstract call to a function into an
107 /// actual call.
108 virtual std::pair<SDOperand, SDOperand>
109 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC,
110 bool isTailCall, SDOperand Callee, ArgListTy &Args,
111 SelectionDAG &DAG);
112
113 virtual SDOperand LowerVAStart(SDOperand Chain, SDOperand VAListP,
114 Value *VAListV, SelectionDAG &DAG);
115 virtual std::pair<SDOperand,SDOperand>
116 LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
117 const Type *ArgTy, SelectionDAG &DAG);
118
119 virtual std::pair<SDOperand, SDOperand>
120 LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
121 SelectionDAG &DAG);
122
123 SDOperand getReturnAddressFrameIndex(SelectionDAG &DAG);
124
125 private:
126 // C Calling Convention implementation.
127 std::vector<SDOperand> LowerCCCArguments(Function &F, SelectionDAG &DAG);
128 std::pair<SDOperand, SDOperand>
129 LowerCCCCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
130 bool isTailCall,
131 SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG);
132
133 // Fast Calling Convention implementation.
134 std::vector<SDOperand> LowerFastCCArguments(Function &F, SelectionDAG &DAG);
135 std::pair<SDOperand, SDOperand>
136 LowerFastCCCallTo(SDOperand Chain, const Type *RetTy, bool isTailCall,
137 SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG);
138 };
139}
140
141#endif // X86ISELLOWERING_H