blob: 026f2a5f80ffe97c1accf14ccc9c409f6086ed99 [file] [log] [blame]
Charles Davisc3926642010-06-09 23:25:41 +00001//===--- MicrosoftCXXABI.cpp - Emit LLVM Code from ASTs for a Module ------===//
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++ code generation targeting the Microsoft Visual C++ ABI.
Charles Davisc3926642010-06-09 23:25:41 +000011// The class in this file generates structures that follow the Microsoft
12// Visual C++ ABI, which is actually not very well documented at all outside
13// of Microsoft.
14//
15//===----------------------------------------------------------------------===//
16
17#include "CGCXXABI.h"
18#include "CodeGenModule.h"
Charles Davisc3926642010-06-09 23:25:41 +000019#include "clang/AST/Decl.h"
20#include "clang/AST/DeclCXX.h"
Charles Davisc3926642010-06-09 23:25:41 +000021
22using namespace clang;
23using namespace CodeGen;
24
25namespace {
26
Charles Davis071cc7d2010-08-16 03:33:14 +000027class MicrosoftCXXABI : public CGCXXABI {
Charles Davisc3926642010-06-09 23:25:41 +000028public:
Peter Collingbourne14110472011-01-13 18:57:25 +000029 MicrosoftCXXABI(CodeGenModule &CGM) : CGCXXABI(CGM) {}
John McCall4c40d982010-08-31 07:33:07 +000030
31 void BuildConstructorSignature(const CXXConstructorDecl *Ctor,
32 CXXCtorType Type,
33 CanQualType &ResTy,
Chris Lattner5f9e2722011-07-23 10:55:15 +000034 SmallVectorImpl<CanQualType> &ArgTys) {
John McCall4c40d982010-08-31 07:33:07 +000035 // 'this' is already in place
36 // TODO: 'for base' flag
37 }
38
39 void BuildDestructorSignature(const CXXDestructorDecl *Ctor,
40 CXXDtorType Type,
41 CanQualType &ResTy,
Chris Lattner5f9e2722011-07-23 10:55:15 +000042 SmallVectorImpl<CanQualType> &ArgTys) {
John McCall4c40d982010-08-31 07:33:07 +000043 // 'this' is already in place
44 // TODO: 'for base' flag
45 }
46
47 void BuildInstanceFunctionParams(CodeGenFunction &CGF,
48 QualType &ResTy,
49 FunctionArgList &Params) {
50 BuildThisParam(CGF, Params);
51 // TODO: 'for base' flag
52 }
53
54 void EmitInstanceFunctionProlog(CodeGenFunction &CGF) {
55 EmitThisParam(CGF);
56 // TODO: 'for base' flag
57 }
John McCallfd708262011-01-27 02:46:02 +000058
John McCall20bb1752012-05-01 06:13:13 +000059 void EmitGuardedInit(CodeGenFunction &CGF, const VarDecl &D,
60 llvm::GlobalVariable *DeclPtr,
61 bool PerformInit);
62
Charles Davis9ee494f2012-06-23 23:44:00 +000063 void EmitVTables(const CXXRecordDecl *Class);
64
John McCall20bb1752012-05-01 06:13:13 +000065
John McCallfd708262011-01-27 02:46:02 +000066 // ==== Notes on array cookies =========
67 //
68 // MSVC seems to only use cookies when the class has a destructor; a
69 // two-argument usual array deallocation function isn't sufficient.
70 //
71 // For example, this code prints "100" and "1":
72 // struct A {
73 // char x;
74 // void *operator new[](size_t sz) {
75 // printf("%u\n", sz);
76 // return malloc(sz);
77 // }
78 // void operator delete[](void *p, size_t sz) {
79 // printf("%u\n", sz);
80 // free(p);
81 // }
82 // };
83 // int main() {
84 // A *p = new A[100];
85 // delete[] p;
86 // }
87 // Whereas it prints "104" and "104" if you give A a destructor.
John McCalle2b45e22012-05-01 05:23:51 +000088
89 bool requiresArrayCookie(const CXXDeleteExpr *expr, QualType elementType);
90 bool requiresArrayCookie(const CXXNewExpr *expr);
91 CharUnits getArrayCookieSizeImpl(QualType type);
92 llvm::Value *InitializeArrayCookie(CodeGenFunction &CGF,
93 llvm::Value *NewPtr,
94 llvm::Value *NumElements,
95 const CXXNewExpr *expr,
96 QualType ElementType);
97 llvm::Value *readArrayCookieImpl(CodeGenFunction &CGF,
98 llvm::Value *allocPtr,
99 CharUnits cookieSize);
Charles Davisc3926642010-06-09 23:25:41 +0000100};
101
102}
103
John McCalle2b45e22012-05-01 05:23:51 +0000104bool MicrosoftCXXABI::requiresArrayCookie(const CXXDeleteExpr *expr,
105 QualType elementType) {
106 // Microsoft seems to completely ignore the possibility of a
107 // two-argument usual deallocation function.
108 return elementType.isDestructedType();
109}
110
111bool MicrosoftCXXABI::requiresArrayCookie(const CXXNewExpr *expr) {
112 // Microsoft seems to completely ignore the possibility of a
113 // two-argument usual deallocation function.
114 return expr->getAllocatedType().isDestructedType();
115}
116
117CharUnits MicrosoftCXXABI::getArrayCookieSizeImpl(QualType type) {
118 // The array cookie is always a size_t; we then pad that out to the
119 // alignment of the element type.
120 ASTContext &Ctx = getContext();
121 return std::max(Ctx.getTypeSizeInChars(Ctx.getSizeType()),
122 Ctx.getTypeAlignInChars(type));
123}
124
125llvm::Value *MicrosoftCXXABI::readArrayCookieImpl(CodeGenFunction &CGF,
126 llvm::Value *allocPtr,
127 CharUnits cookieSize) {
128 unsigned AS = cast<llvm::PointerType>(allocPtr->getType())->getAddressSpace();
129 llvm::Value *numElementsPtr =
130 CGF.Builder.CreateBitCast(allocPtr, CGF.SizeTy->getPointerTo(AS));
131 return CGF.Builder.CreateLoad(numElementsPtr);
132}
133
134llvm::Value* MicrosoftCXXABI::InitializeArrayCookie(CodeGenFunction &CGF,
135 llvm::Value *newPtr,
136 llvm::Value *numElements,
137 const CXXNewExpr *expr,
138 QualType elementType) {
139 assert(requiresArrayCookie(expr));
140
141 // The size of the cookie.
142 CharUnits cookieSize = getArrayCookieSizeImpl(elementType);
143
144 // Compute an offset to the cookie.
145 llvm::Value *cookiePtr = newPtr;
146
147 // Write the number of elements into the appropriate slot.
148 unsigned AS = cast<llvm::PointerType>(newPtr->getType())->getAddressSpace();
149 llvm::Value *numElementsPtr
150 = CGF.Builder.CreateBitCast(cookiePtr, CGF.SizeTy->getPointerTo(AS));
151 CGF.Builder.CreateStore(numElements, numElementsPtr);
152
153 // Finally, compute a pointer to the actual data buffer by skipping
154 // over the cookie completely.
155 return CGF.Builder.CreateConstInBoundsGEP1_64(newPtr,
156 cookieSize.getQuantity());
157}
158
John McCall20bb1752012-05-01 06:13:13 +0000159void MicrosoftCXXABI::EmitGuardedInit(CodeGenFunction &CGF, const VarDecl &D,
160 llvm::GlobalVariable *DeclPtr,
161 bool PerformInit) {
162 // FIXME: this code was only tested for global initialization.
163 // Not sure whether we want thread-safe static local variables as VS
164 // doesn't make them thread-safe.
165
166 // Emit the initializer and add a global destructor if appropriate.
167 CGF.EmitCXXGlobalVarDeclInit(D, DeclPtr, PerformInit);
168}
169
Charles Davis9ee494f2012-06-23 23:44:00 +0000170void MicrosoftCXXABI::EmitVTables(const CXXRecordDecl *Class) {
171 // FIXME: implement
172}
173
Charles Davis071cc7d2010-08-16 03:33:14 +0000174CGCXXABI *clang::CodeGen::CreateMicrosoftCXXABI(CodeGenModule &CGM) {
Charles Davisc3926642010-06-09 23:25:41 +0000175 return new MicrosoftCXXABI(CGM);
176}
177