blob: 3dcd7458f83433c88945c1e9e5c51be82f3321a8 [file] [log] [blame]
Chris Lattner00836642007-02-27 05:57:32 +00001//===- 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
15class CCAction;
16class CallingConv;
17
18/// CCPredicateAction - Instances of this class check some predicate, then
19/// delegate to another action if the predicate is true.
20class CCPredicateAction<CCAction A> : CCAction {
21 CCAction SubAction = A;
22}
23
24/// CCMatchType - If the current argument is one of the specified types, apply
25/// Action A.
26class CCMatchType<list<ValueType> VTs, CCAction A> : CCPredicateAction<A> {
27}
28
29/// CCMatchIf - If the predicate matches, apply A.
30class CCMatchIf<string predicate, CCAction A> : CCPredicateAction<A> {
31 string Predicate = predicate;
32}
33
34/// CCMatchIfCC - Match of the current calling convention is 'CC'.
35class CCMatchIfCC<string CC, CCAction A> : CCPredicateAction<A> {
36 string CallingConv = CC;
37}
38
39/// CCAssignToReg - This action matches if there is a register in the specified
40/// list that is still available. If so, it assigns the value to the first
41/// available register and succeeds.
42class CCAssignToReg<list<Register> regList> : CCAction {
43 list<Register> RegList = regList;
44}
45
46/// CCAssignToStack - This action always matches: it assigns the value to a
47/// stack slot of the specified size and alignment on the stack.
48class CCAssignToStack<int size, int align> : CCAction {
49 int Size = size;
50 int Align = align;
51}
52
53
54/// CCPromoteToType - If applied, this promotes the specified current value to
55/// the specified type.
56class CCPromoteToType<ValueType destTy> : CCAction {
57 ValueType DestTy = destTy;
58}
59
60/// CCDelegateTo - This action invokes the specified sub-calling-convention. It
61/// is successful if the specified CC matches.
62class CCDelegateTo<CallingConv cc> : CCAction {
63 CallingConv CC = cc;
64}
65
66/// CallingConv - An instance of this is used to define each calling convention
67/// that the target supports.
68class CallingConv<list<CCAction> actions> {
69 list<CCAction> Actions = actions;
70}
71