blob: 894eb3bff5fd3783ce317b41c9b27be93ca1d640 [file] [log] [blame]
Charles Davis071cc7d2010-08-16 03:33:14 +00001//===------- ItaniumCXXABI.cpp - AST support for the Itanium C++ ABI ------===//
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//
Chris Lattnerfc8f0e12011-04-15 05:22:18 +000010// This provides C++ AST support targeting the Itanium C++ ABI, which is
Charles Davis071cc7d2010-08-16 03:33:14 +000011// documented at:
12// http://www.codesourcery.com/public/cxx-abi/abi.html
13// http://www.codesourcery.com/public/cxx-abi/abi-eh.html
John McCallee79a4c2010-08-21 22:46:04 +000014//
15// It also supports the closely-related ARM C++ ABI, documented at:
16// http://infocenter.arm.com/help/topic/com.arm.doc.ihi0041c/IHI0041C_cppabi.pdf
17//
Charles Davis071cc7d2010-08-16 03:33:14 +000018//===----------------------------------------------------------------------===//
19
20#include "CXXABI.h"
21#include "clang/AST/ASTContext.h"
Anders Carlssondae0cb52010-11-25 01:51:53 +000022#include "clang/AST/DeclCXX.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000023#include "clang/AST/RecordLayout.h"
Charles Davis071cc7d2010-08-16 03:33:14 +000024#include "clang/AST/Type.h"
Anders Carlssondae0cb52010-11-25 01:51:53 +000025#include "clang/Basic/TargetInfo.h"
Charles Davis071cc7d2010-08-16 03:33:14 +000026
27using namespace clang;
28
29namespace {
30class ItaniumCXXABI : public CXXABI {
John McCallee79a4c2010-08-21 22:46:04 +000031protected:
Charles Davis071cc7d2010-08-16 03:33:14 +000032 ASTContext &Context;
33public:
34 ItaniumCXXABI(ASTContext &Ctx) : Context(Ctx) { }
35
Reid Kleckner84e9ab42013-03-28 20:02:56 +000036 std::pair<uint64_t, unsigned>
37 getMemberPointerWidthAndAlign(const MemberPointerType *MPT) const {
38 const TargetInfo &Target = Context.getTargetInfo();
39 TargetInfo::IntType PtrDiff = Target.getPtrDiffType(0);
40 uint64_t Width = Target.getTypeWidth(PtrDiff);
41 unsigned Align = Target.getTypeAlign(PtrDiff);
42 if (MPT->getPointeeType()->isFunctionType())
43 Width = 2 * Width;
44 return std::make_pair(Width, Align);
Charles Davis071cc7d2010-08-16 03:33:14 +000045 }
Charles Davis424ae982010-10-29 03:25:11 +000046
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +000047 CallingConv getDefaultMethodCallConv(bool isVariadic) const {
Charles Davis424ae982010-10-29 03:25:11 +000048 return CC_C;
49 }
Anders Carlssondae0cb52010-11-25 01:51:53 +000050
51 // We cheat and just check that the class has a vtable pointer, and that it's
52 // only big enough to have a vtable pointer and nothing more (or less).
53 bool isNearlyEmpty(const CXXRecordDecl *RD) const {
54
55 // Check that the class has a vtable pointer.
56 if (!RD->isDynamicClass())
57 return false;
58
59 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
Ken Dyck5c3633f2011-02-01 01:52:10 +000060 CharUnits PointerSize =
Douglas Gregorbcfd1f52011-09-02 00:18:52 +000061 Context.toCharUnitsFromBits(Context.getTargetInfo().getPointerWidth(0));
Ken Dyck5c3633f2011-02-01 01:52:10 +000062 return Layout.getNonVirtualSize() == PointerSize;
Anders Carlssondae0cb52010-11-25 01:51:53 +000063 }
Charles Davis071cc7d2010-08-16 03:33:14 +000064};
John McCallee79a4c2010-08-21 22:46:04 +000065
66class ARMCXXABI : public ItaniumCXXABI {
67public:
68 ARMCXXABI(ASTContext &Ctx) : ItaniumCXXABI(Ctx) { }
69};
Charles Davis071cc7d2010-08-16 03:33:14 +000070}
71
72CXXABI *clang::CreateItaniumCXXABI(ASTContext &Ctx) {
73 return new ItaniumCXXABI(Ctx);
74}
75
John McCallee79a4c2010-08-21 22:46:04 +000076CXXABI *clang::CreateARMCXXABI(ASTContext &Ctx) {
77 return new ARMCXXABI(Ctx);
78}