Add the byval attribute
[oota-llvm.git] / lib / Target / TargetCallingConv.td
1 //===- TargetCallingConv.td - Target Calling Conventions ---*- tablegen -*-===//
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 target-independent interfaces with which targets
11 // describe their calling conventions.
12 //
13 //===----------------------------------------------------------------------===//
14
15 class CCAction;
16 class CallingConv;
17
18 /// CCPredicateAction - Instances of this class check some predicate, then
19 /// delegate to another action if the predicate is true.
20 class CCPredicateAction<CCAction A> : CCAction {
21   CCAction SubAction = A;
22 }
23
24 /// CCIfType - If the current argument is one of the specified types, apply
25 /// Action A.
26 class CCIfType<list<ValueType> vts, CCAction A> : CCPredicateAction<A> {
27   list<ValueType> VTs = vts;
28 }
29
30 /// CCIf - If the predicate matches, apply A.
31 class CCIf<string predicate, CCAction A> : CCPredicateAction<A> {
32   string Predicate = predicate;
33 }
34
35 /// CCIfStruct - If the current argument is a struct, apply
36 /// Action A.
37 class CCIfStruct<CCAction A> : CCIf<"ArgFlags & ISD::ParamFlags::ByVal", A> {
38 }
39
40 /// CCIfCC - Match of the current calling convention is 'CC'.
41 class CCIfCC<string CC, CCAction A>
42   : CCIf<!strconcat("State.getCallingConv() == ", CC), A> {}
43
44 /// CCIfInReg - If this argument is marked with the 'inreg' attribute, apply
45 /// the specified action.
46 class CCIfInReg<CCAction A> : CCIf<"ArgFlags & ISD::ParamFlags::InReg", A> {}
47
48 /// CCIfNotVarArg - If the current function is not vararg - apply the action
49 class CCIfNotVarArg<CCAction A> : CCIf<"!State.isVarArg()", A> {}
50
51 /// CCAssignToReg - This action matches if there is a register in the specified
52 /// list that is still available.  If so, it assigns the value to the first
53 /// available register and succeeds.
54 class CCAssignToReg<list<Register> regList> : CCAction {
55   list<Register> RegList = regList;
56 }
57
58 /// CCAssignToStack - This action always matches: it assigns the value to a
59 /// stack slot of the specified size and alignment on the stack.
60 class CCAssignToStack<int size, int align> : CCAction {
61   int Size = size;
62   int Align = align;
63 }
64
65 /// CCStructAssign - This action always matches: it will use the C ABI and
66 /// the register availability to decided whether to assign to a set of
67 /// registers or to a stack slot.
68 class CCStructAssign<list<Register> regList> : CCAction {
69   list<Register> RegList = regList;
70 }
71
72 /// CCPromoteToType - If applied, this promotes the specified current value to
73 /// the specified type.
74 class CCPromoteToType<ValueType destTy> : CCAction {
75   ValueType DestTy = destTy;
76 }
77
78 /// CCDelegateTo - This action invokes the specified sub-calling-convention.  It
79 /// is successful if the specified CC matches.
80 class CCDelegateTo<CallingConv cc> : CCAction {
81   CallingConv CC = cc;
82 }
83
84 /// CallingConv - An instance of this is used to define each calling convention
85 /// that the target supports.
86 class CallingConv<list<CCAction> actions> {
87   list<CCAction> Actions = actions;
88 }