1 //===- TargetCallingConv.td - Target Calling Conventions ---*- tablegen -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the target-independent interfaces with which targets
11 // describe their calling conventions.
13 //===----------------------------------------------------------------------===//
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;
24 /// CCIfType - If the current argument is one of the specified types, apply
26 class CCIfType<list<ValueType> vts, CCAction A> : CCPredicateAction<A> {
27 list<ValueType> VTs = vts;
30 /// CCIf - If the predicate matches, apply A.
31 class CCIf<string predicate, CCAction A> : CCPredicateAction<A> {
32 string Predicate = predicate;
35 /// CCIfByVal - If the current argument has ByVal parameter attribute, apply
37 class CCIfByVal<CCAction A> : CCIf<"ArgFlags & ISD::ParamFlags::ByVal", A> {
40 /// CCIfCC - Match of the current calling convention is 'CC'.
41 class CCIfCC<string CC, CCAction A>
42 : CCIf<!strconcat("State.getCallingConv() == ", CC), A> {}
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> {}
48 /// CCIfNest - If this argument is marked with the 'nest' attribute, apply
49 /// the specified action.
50 class CCIfNest<CCAction A> : CCIf<"ArgFlags & ISD::ParamFlags::Nest", A> {}
52 /// CCIfNotVarArg - If the current function is not vararg - apply the action
53 class CCIfNotVarArg<CCAction A> : CCIf<"!State.isVarArg()", A> {}
55 /// CCAssignToReg - This action matches if there is a register in the specified
56 /// list that is still available. If so, it assigns the value to the first
57 /// available register and succeeds.
58 class CCAssignToReg<list<Register> regList> : CCAction {
59 list<Register> RegList = regList;
62 /// CCAssignToStack - This action always matches: it assigns the value to a
63 /// stack slot of the specified size and alignment on the stack. If size is
64 /// zero then the ABI size is used; if align is zero then the ABI alignment
65 /// is used - these may depend on the target or subtarget.
66 class CCAssignToStack<int size, int align> : CCAction {
71 /// CCPassByVal - This action always matches: it assigns the value to a stack
72 /// slot to implement ByVal aggregate parameter passing. Size and alignment
73 /// specify the minimum size and alignment for the stack slot.
74 class CCPassByVal<int size, int align> : CCAction {
79 /// CCPromoteToType - If applied, this promotes the specified current value to
80 /// the specified type.
81 class CCPromoteToType<ValueType destTy> : CCAction {
82 ValueType DestTy = destTy;
85 /// CCDelegateTo - This action invokes the specified sub-calling-convention. It
86 /// is successful if the specified CC matches.
87 class CCDelegateTo<CallingConv cc> : CCAction {
91 /// CallingConv - An instance of this is used to define each calling convention
92 /// that the target supports.
93 class CallingConv<list<CCAction> actions> {
94 list<CCAction> Actions = actions;