blob: daf6f00045012e149cf6508fb2d208383b453b5c [file] [log] [blame]
Daniel Dunbar0dbe2272008-09-08 21:33:45 +00001//===----- CGCall.h - Encapsulate calling convention details ----*- C++ -*-===//
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// These classes wrap the information about a call or function
11// definition used to handle ABI compliancy.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef CLANG_CODEGEN_CGCALL_H
16#define CLANG_CODEGEN_CGCALL_H
17
Daniel Dunbar40a6be62009-02-03 00:07:12 +000018#include <llvm/ADT/FoldingSet.h>
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000019#include "clang/AST/Type.h"
20
Daniel Dunbar46f45b92008-09-09 01:06:48 +000021#include "CGValue.h"
22
Daniel Dunbar88c2fa92009-02-03 05:31:23 +000023// FIXME: Restructure so we don't have to expose so much stuff.
24#include "ABIInfo.h"
25
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000026namespace llvm {
Devang Patel761d7f72008-09-25 21:02:23 +000027 struct AttributeWithIndex;
Daniel Dunbar88c2fa92009-02-03 05:31:23 +000028 class Function;
29 class Type;
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000030 class Value;
31
32 template<typename T, unsigned> class SmallVector;
33}
34
35namespace clang {
36 class ASTContext;
37 class Decl;
38 class FunctionDecl;
39 class ObjCMethodDecl;
Daniel Dunbar7c086512008-09-09 23:14:03 +000040 class VarDecl;
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000041
42namespace CodeGen {
Devang Patel761d7f72008-09-25 21:02:23 +000043 typedef llvm::SmallVector<llvm::AttributeWithIndex, 8> AttributeListType;
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000044
45 /// CallArgList - Type for representing both the value and type of
46 /// arguments in a call.
Daniel Dunbar46f45b92008-09-09 01:06:48 +000047 typedef llvm::SmallVector<std::pair<RValue, QualType>, 16> CallArgList;
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000048
Daniel Dunbar7c086512008-09-09 23:14:03 +000049 /// FunctionArgList - Type for representing both the decl and type
50 /// of parameters to a function. The decl must be either a
51 /// ParmVarDecl or ImplicitParamDecl.
52 typedef llvm::SmallVector<std::pair<const VarDecl*, QualType>,
53 16> FunctionArgList;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +000054
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000055 /// CGFunctionInfo - Class to encapsulate the information about a
56 /// function definition.
Daniel Dunbar40a6be62009-02-03 00:07:12 +000057 class CGFunctionInfo : public llvm::FoldingSetNode {
Daniel Dunbar88c2fa92009-02-03 05:31:23 +000058 struct ArgInfo {
59 QualType type;
60 ABIArgInfo info;
61 };
62
63 unsigned NumArgs;
64 ArgInfo *Args;
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000065
66 public:
Daniel Dunbar88c2fa92009-02-03 05:31:23 +000067 typedef const ArgInfo *const_arg_iterator;
68 typedef ArgInfo *arg_iterator;
Daniel Dunbara0a99e02009-02-02 23:43:58 +000069
Daniel Dunbar541b63b2009-02-02 23:23:47 +000070 CGFunctionInfo(QualType ResTy,
71 const llvm::SmallVector<QualType, 16> &ArgTys);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +000072 ~CGFunctionInfo() { delete[] Args; }
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000073
Daniel Dunbar88c2fa92009-02-03 05:31:23 +000074 const_arg_iterator arg_begin() const { return Args + 1; }
75 const_arg_iterator arg_end() const { return Args + 1 + NumArgs; }
76 arg_iterator arg_begin() { return Args + 1; }
77 arg_iterator arg_end() { return Args + 1 + NumArgs; }
Daniel Dunbarbb36d332009-02-02 21:43:58 +000078
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +000079 unsigned arg_size() const { return NumArgs; }
80
Daniel Dunbar88c2fa92009-02-03 05:31:23 +000081 QualType getReturnType() const { return Args[0].type; }
82
83 ABIArgInfo &getReturnInfo() { return Args[0].info; }
84 const ABIArgInfo &getReturnInfo() const { return Args[0].info; }
Daniel Dunbar40a6be62009-02-03 00:07:12 +000085
86 void Profile(llvm::FoldingSetNodeID &ID) {
Daniel Dunbar35e67d42009-02-05 00:00:23 +000087 getReturnType().Profile(ID);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +000088 for (arg_iterator it = arg_begin(), ie = arg_end(); it != ie; ++it)
89 it->type.Profile(ID);
Daniel Dunbar40a6be62009-02-03 00:07:12 +000090 }
91 template<class Iterator>
92 static void Profile(llvm::FoldingSetNodeID &ID,
93 QualType ResTy,
94 Iterator begin,
95 Iterator end) {
96 ResTy.Profile(ID);
97 for (; begin != end; ++begin)
98 begin->Profile(ID);
99 }
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000100 };
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000101} // end namespace CodeGen
102} // end namespace clang
103
104#endif