blob: b1ce8e22b0e367c70b7f4bf278b3fd9edc63140a [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,
Evan Cheng898101c2005-12-19 23:12:38 +000075
76 /// X86 conditional branches.
77 BRCOND,
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000078 };
79 }
80
81 //===----------------------------------------------------------------------===//
82 // X86TargetLowering - X86 Implementation of the TargetLowering interface
83 class X86TargetLowering : public TargetLowering {
84 int VarArgsFrameIndex; // FrameIndex for start of varargs area.
85 int ReturnAddrIndex; // FrameIndex for return slot.
86 int BytesToPopOnReturn; // Number of arg bytes ret should pop.
87 int BytesCallerReserves; // Number of arg bytes caller makes.
88 public:
89 X86TargetLowering(TargetMachine &TM);
90
91 // Return the number of bytes that a function should pop when it returns (in
92 // addition to the space used by the return address).
93 //
94 unsigned getBytesToPopOnReturn() const { return BytesToPopOnReturn; }
95
96 // Return the number of bytes that the caller reserves for arguments passed
97 // to this function.
98 unsigned getBytesCallerReserves() const { return BytesCallerReserves; }
99
100 /// LowerOperation - Provide custom lowering hooks for some operations.
101 ///
102 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
103
104 /// LowerArguments - This hook must be implemented to indicate how we should
105 /// lower the arguments for the specified function, into the specified DAG.
106 virtual std::vector<SDOperand>
107 LowerArguments(Function &F, SelectionDAG &DAG);
108
109 /// LowerCallTo - This hook lowers an abstract call to a function into an
110 /// actual call.
111 virtual std::pair<SDOperand, SDOperand>
112 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC,
113 bool isTailCall, SDOperand Callee, ArgListTy &Args,
114 SelectionDAG &DAG);
115
116 virtual SDOperand LowerVAStart(SDOperand Chain, SDOperand VAListP,
117 Value *VAListV, SelectionDAG &DAG);
118 virtual std::pair<SDOperand,SDOperand>
119 LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
120 const Type *ArgTy, SelectionDAG &DAG);
121
122 virtual std::pair<SDOperand, SDOperand>
123 LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
124 SelectionDAG &DAG);
125
Evan Cheng72261582005-12-20 06:22:03 +0000126 /// getTargetNodeName - This method returns the name of a target specific
127 /// DAG node.
128 virtual const char *getTargetNodeName(unsigned Opcode) const;
129
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000130 SDOperand getReturnAddressFrameIndex(SelectionDAG &DAG);
131
132 private:
133 // C Calling Convention implementation.
134 std::vector<SDOperand> LowerCCCArguments(Function &F, SelectionDAG &DAG);
135 std::pair<SDOperand, SDOperand>
136 LowerCCCCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
137 bool isTailCall,
138 SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG);
139
140 // Fast Calling Convention implementation.
141 std::vector<SDOperand> LowerFastCCArguments(Function &F, SelectionDAG &DAG);
142 std::pair<SDOperand, SDOperand>
143 LowerFastCCCallTo(SDOperand Chain, const Type *RetTy, bool isTailCall,
144 SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG);
145 };
146}
147
148#endif // X86ISELLOWERING_H