1 //===- TargetCallingConv.td - Target Calling Conventions ---*- tablegen -*-===//
3 // The LLVM Compiler Infrastructure
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.
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 /// CCIfStruct - If the current argument is a struct, apply
37 class CCIfStruct<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.
64 class CCAssignToStack<int size, int align> : CCAction {
69 /// CCStructAssign - This action always matches: it will use the C ABI and
70 /// the register availability to decided whether to assign to a set of
71 /// registers or to a stack slot.
72 class CCStructAssign<list<Register> regList> : CCAction {
73 list<Register> RegList = regList;
76 /// CCPromoteToType - If applied, this promotes the specified current value to
77 /// the specified type.
78 class CCPromoteToType<ValueType destTy> : CCAction {
79 ValueType DestTy = destTy;
82 /// CCDelegateTo - This action invokes the specified sub-calling-convention. It
83 /// is successful if the specified CC matches.
84 class CCDelegateTo<CallingConv cc> : CCAction {
88 /// CallingConv - An instance of this is used to define each calling convention
89 /// that the target supports.
90 class CallingConv<list<CCAction> actions> {
91 list<CCAction> Actions = actions;