MipsCCState.h: Use LLVM_DELETED_FUNCTION for msc17.
[oota-llvm.git] / lib / Target / Mips / MipsCCState.h
1 //===---- MipsCCState.h - CCState with Mips specific extensions -----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef MIPSCCSTATE_H
11 #define MIPSCCSTATE_H
12
13 #include "llvm/ADT/SmallVector.h"
14 #include "llvm/CodeGen/CallingConvLower.h"
15 #include "MipsISelLowering.h"
16
17 namespace llvm {
18 class SDNode;
19 class MipsSubtarget;
20
21 class MipsCCState : public CCState {
22 public:
23   enum SpecialCallingConvType { Mips16RetHelperConv, NoSpecialCallingConv };
24
25   /// Determine the SpecialCallingConvType for the given callee
26   static SpecialCallingConvType
27   getSpecialCallingConvForCallee(const SDNode *Callee,
28                                  const MipsSubtarget &Subtarget);
29
30 private:
31   /// Identify lowered values that originated from f128 arguments and record
32   /// this for use by RetCC_MipsN.
33   void PreAnalyzeCallResultForF128(const SmallVectorImpl<ISD::InputArg> &Ins,
34                                    const TargetLowering::CallLoweringInfo &CLI);
35
36   /// Identify lowered values that originated from f128 arguments and record
37   /// this for use by RetCC_MipsN.
38   void PreAnalyzeReturnForF128(const SmallVectorImpl<ISD::OutputArg> &Outs);
39
40   /// Identify lowered values that originated from f128 arguments and record
41   /// this.
42   void
43   PreAnalyzeCallOperands(const SmallVectorImpl<ISD::OutputArg> &Outs,
44                          std::vector<TargetLowering::ArgListEntry> &FuncArgs,
45                          const SDNode *CallNode);
46
47   /// Identify lowered values that originated from f128 arguments and record
48   /// this.
49   void
50   PreAnalyzeFormalArgumentsForF128(const SmallVectorImpl<ISD::InputArg> &Ins);
51
52   /// Records whether the value has been lowered from an f128.
53   SmallVector<bool, 4> OriginalArgWasF128;
54
55   /// Records whether the value was a fixed argument.
56   /// See ISD::OutputArg::IsFixed,
57   SmallVector<bool, 4> CallOperandIsFixed;
58
59   // Used to handle MIPS16-specific calling convention tweaks.
60   // FIXME: This should probably be a fully fledged calling convention.
61   SpecialCallingConvType SpecialCallingConv;
62
63 public:
64   MipsCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
65               SmallVectorImpl<CCValAssign> &locs, LLVMContext &C,
66               SpecialCallingConvType SpecialCC = NoSpecialCallingConv)
67       : CCState(CC, isVarArg, MF, locs, C), SpecialCallingConv(SpecialCC) {}
68
69   void
70   AnalyzeCallOperands(const SmallVectorImpl<ISD::OutputArg> &Outs,
71                       CCAssignFn Fn,
72                       std::vector<TargetLowering::ArgListEntry> &FuncArgs,
73                       const SDNode *CallNode) {
74     PreAnalyzeCallOperands(Outs, FuncArgs, CallNode);
75     CCState::AnalyzeCallOperands(Outs, Fn);
76     OriginalArgWasF128.clear();
77     CallOperandIsFixed.clear();
78   }
79
80   // The AnalyzeCallOperands in the base class is not usable since we must
81   // provide a means of accessing ArgListEntry::IsFixed. Delete them from this
82   // class. This doesn't stop them being used via the base class though.
83   void AnalyzeCallOperands(const SmallVectorImpl<ISD::OutputArg> &Outs,
84                            CCAssignFn Fn) LLVM_DELETED_FUNCTION;
85   void AnalyzeCallOperands(const SmallVectorImpl<MVT> &Outs,
86                            SmallVectorImpl<ISD::ArgFlagsTy> &Flags,
87                            CCAssignFn Fn) LLVM_DELETED_FUNCTION;
88
89   void AnalyzeFormalArguments(const SmallVectorImpl<ISD::InputArg> &Ins,
90                               CCAssignFn Fn) {
91     PreAnalyzeFormalArgumentsForF128(Ins);
92     CCState::AnalyzeFormalArguments(Ins, Fn);
93     OriginalArgWasF128.clear();
94   }
95
96   void AnalyzeCallResult(const SmallVectorImpl<ISD::InputArg> &Ins,
97                          CCAssignFn Fn,
98                          const TargetLowering::CallLoweringInfo &CLI) {
99     PreAnalyzeCallResultForF128(Ins, CLI);
100     CCState::AnalyzeCallResult(Ins, Fn);
101     OriginalArgWasF128.clear();
102   }
103
104   void AnalyzeReturn(const SmallVectorImpl<ISD::OutputArg> &Outs,
105                      CCAssignFn Fn) {
106     PreAnalyzeReturnForF128(Outs);
107     CCState::AnalyzeReturn(Outs, Fn);
108     OriginalArgWasF128.clear();
109   }
110
111   bool CheckReturn(const SmallVectorImpl<ISD::OutputArg> &ArgsFlags,
112                    CCAssignFn Fn) {
113     PreAnalyzeReturnForF128(ArgsFlags);
114     bool Return = CCState::CheckReturn(ArgsFlags, Fn);
115     OriginalArgWasF128.clear();
116     return Return;
117   }
118
119   bool WasOriginalArgF128(unsigned ValNo) { return OriginalArgWasF128[ValNo]; }
120   bool IsCallOperandFixed(unsigned ValNo) { return CallOperandIsFixed[ValNo]; }
121   SpecialCallingConvType getSpecialCallingConv() { return SpecialCallingConv; }
122 };
123 }
124
125 #endif