blob: 6d67d9a12b550c068e455b84492883e3ca74c84a [file] [log] [blame]
Charles Davis53c59df2010-08-16 03:33:14 +00001//===----- CXXABI.h - Interface to C++ ABIs ---------------------*- 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// This provides an abstract class for C++ AST support. Concrete
11// subclasses of this implement AST support for specific C++ ABIs.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_AST_CXXABI_H
16#define LLVM_CLANG_AST_CXXABI_H
17
Charles Davis31575f72010-10-29 03:25:11 +000018#include "clang/AST/Type.h"
19
Charles Davis53c59df2010-08-16 03:33:14 +000020namespace clang {
21
22class ASTContext;
23class MemberPointerType;
24
25/// Implements C++ ABI-specific semantic analysis functions.
26class CXXABI {
27public:
28 virtual ~CXXABI();
29
Reid Kleckner3a52abf2013-03-28 20:02:56 +000030 /// Returns the width and alignment of a member pointer in bits.
31 virtual std::pair<uint64_t, unsigned>
32 getMemberPointerWidthAndAlign(const MemberPointerType *MPT) const = 0;
Charles Davis31575f72010-10-29 03:25:11 +000033
34 /// Returns the default calling convention for C++ methods.
Timur Iskhodzhanovc5098ad2012-07-12 09:50:54 +000035 virtual CallingConv getDefaultMethodCallConv(bool isVariadic) const = 0;
Anders Carlsson60a62632010-11-25 01:51:53 +000036
37 // Returns whether the given class is nearly empty, with just virtual pointers
38 // and no data except possibly virtual bases.
39 virtual bool isNearlyEmpty(const CXXRecordDecl *RD) const = 0;
Charles Davis53c59df2010-08-16 03:33:14 +000040};
41
42/// Creates an instance of a C++ ABI class.
John McCall86353412010-08-21 22:46:04 +000043CXXABI *CreateARMCXXABI(ASTContext &Ctx);
Charles Davis53c59df2010-08-16 03:33:14 +000044CXXABI *CreateItaniumCXXABI(ASTContext &Ctx);
45CXXABI *CreateMicrosoftCXXABI(ASTContext &Ctx);
46}
47
48#endif