blob: c9ee212d01f533f7289ecaab3c2894e8cbbe4820 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CodeGenFunction.cpp - Emit LLVM Code from ASTs for a Function ----===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This coordinates the per-function state used while generating code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Eli Friedman3f2af102008-05-22 01:40:10 +000016#include "CGDebugInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/Basic/TargetInfo.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000019#include "clang/AST/Decl.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/Analysis/Verifier.h"
Devang Pateld9363c32007-09-28 21:49:18 +000021#include "llvm/Support/CFG.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23using namespace CodeGen;
24
25CodeGenFunction::CodeGenFunction(CodeGenModule &cgm)
Devang Patelc049e4f2007-10-08 20:57:48 +000026 : CGM(cgm), Target(CGM.getContext().Target), SwitchInsn(NULL),
Chris Lattner41110242008-06-17 18:05:57 +000027 CaseRangeBlock(NULL) {
28 LLVMIntTy = ConvertType(getContext().IntTy);
29 LLVMPointerWidth = Target.getPointerWidth(0);
30}
Reid Spencer5f016e22007-07-11 17:01:13 +000031
32ASTContext &CodeGenFunction::getContext() const {
33 return CGM.getContext();
34}
35
36
37llvm::BasicBlock *CodeGenFunction::getBasicBlockForLabel(const LabelStmt *S) {
38 llvm::BasicBlock *&BB = LabelMap[S];
39 if (BB) return BB;
40
41 // Create, but don't insert, the new block.
Gabor Greif984d0b42008-04-06 20:42:52 +000042 return BB = llvm::BasicBlock::Create(S->getName());
Reid Spencer5f016e22007-07-11 17:01:13 +000043}
44
Lauro Ramos Venancio81373352008-02-26 21:41:45 +000045llvm::Constant *
Steve Naroff248a7532008-04-15 22:42:06 +000046CodeGenFunction::GetAddrOfStaticLocalVar(const VarDecl *BVD) {
Lauro Ramos Venancio81373352008-02-26 21:41:45 +000047 return cast<llvm::Constant>(LocalDeclMap[BVD]);
48}
Reid Spencer5f016e22007-07-11 17:01:13 +000049
Anders Carlssondde0a942008-09-11 09:15:33 +000050llvm::Value *CodeGenFunction::GetAddrOfLocalVar(const VarDecl *VD)
51{
52 return LocalDeclMap[VD];
53}
54
Reid Spencer5f016e22007-07-11 17:01:13 +000055const llvm::Type *CodeGenFunction::ConvertType(QualType T) {
56 return CGM.getTypes().ConvertType(T);
57}
58
Chris Lattner41110242008-06-17 18:05:57 +000059bool CodeGenFunction::isObjCPointerType(QualType T) {
60 // All Objective-C types are pointers.
61 return T->isObjCInterfaceType() ||
62 T->isObjCQualifiedInterfaceType() || T->isObjCQualifiedIdType();
63}
64
Reid Spencer5f016e22007-07-11 17:01:13 +000065bool CodeGenFunction::hasAggregateLLVMType(QualType T) {
Chris Lattner41110242008-06-17 18:05:57 +000066 return !isObjCPointerType(T) &&!T->isRealType() && !T->isPointerLikeType() &&
67 !T->isVoidType() && !T->isVectorType() && !T->isFunctionType();
Reid Spencer5f016e22007-07-11 17:01:13 +000068}
69
Daniel Dunbaraf05bb92008-08-26 08:29:31 +000070void CodeGenFunction::FinishFunction(SourceLocation EndLoc) {
Daniel Dunbar0ffb1252008-08-04 16:51:22 +000071 // Finish emission of indirect switches.
72 EmitIndirectSwitches();
73
Sanjiv Guptaaf994172008-07-04 11:04:26 +000074 // Emit debug descriptor for function end.
Daniel Dunbar5ca20842008-09-09 21:00:17 +000075 if (CGDebugInfo *DI = CGM.getDebugInfo()) {
Daniel Dunbaraf05bb92008-08-26 08:29:31 +000076 if (EndLoc.isValid()) {
77 DI->setLocation(EndLoc);
Sanjiv Guptaaf994172008-07-04 11:04:26 +000078 }
79 DI->EmitRegionEnd(CurFn, Builder);
80 }
81
Chris Lattner391d77a2008-03-30 23:03:07 +000082 // Emit a return for code that falls off the end. If insert point
83 // is a dummy block with no predecessors then remove the block itself.
84 llvm::BasicBlock *BB = Builder.GetInsertBlock();
Daniel Dunbar5ca20842008-09-09 21:00:17 +000085 if (isDummyBlock(BB)) {
Chris Lattner391d77a2008-03-30 23:03:07 +000086 BB->eraseFromParent();
Daniel Dunbar5ca20842008-09-09 21:00:17 +000087 } else {
88 // Just transfer to return
89 Builder.CreateBr(ReturnBlock);
Devang Pateld9363c32007-09-28 21:49:18 +000090 }
Chris Lattnerda138702007-07-16 21:28:45 +000091 assert(BreakContinueStack.empty() &&
92 "mismatched push/pop in break/continue stack!");
Daniel Dunbar5ca20842008-09-09 21:00:17 +000093
Daniel Dunbar17b708d2008-09-09 23:27:19 +000094 // Emit function epilog (to return).
Daniel Dunbar5ca20842008-09-09 21:00:17 +000095 Builder.SetInsertPoint(ReturnBlock);
Daniel Dunbar17b708d2008-09-09 23:27:19 +000096 EmitFunctionEpilog(FnRetTy, ReturnValue);
Daniel Dunbar5ca20842008-09-09 21:00:17 +000097
Chris Lattner5a2fa142007-12-02 06:32:24 +000098 // Remove the AllocaInsertPt instruction, which is just a convenience for us.
99 AllocaInsertPt->eraseFromParent();
100 AllocaInsertPt = 0;
101
Reid Spencer5f016e22007-07-11 17:01:13 +0000102 // Verify that the function is well formed.
Chris Lattner391d77a2008-03-30 23:03:07 +0000103 assert(!verifyFunction(*CurFn) && "Generated function is not well formed.");
Reid Spencer5f016e22007-07-11 17:01:13 +0000104}
105
Daniel Dunbar7c086512008-09-09 23:14:03 +0000106void CodeGenFunction::StartFunction(const Decl *D, QualType RetTy,
107 llvm::Function *Fn,
108 const FunctionArgList &Args) {
109 CurFuncDecl = D;
110 FnRetTy = RetTy;
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000111 CurFn = Fn;
Chris Lattner41110242008-06-17 18:05:57 +0000112 assert(CurFn->isDeclaration() && "Function already has body?");
113
114 llvm::BasicBlock *EntryBB = llvm::BasicBlock::Create("entry", CurFn);
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000115
Chris Lattner41110242008-06-17 18:05:57 +0000116 // Create a marker to make it easy to insert allocas into the entryblock
117 // later. Don't create this with the builder, because we don't want it
118 // folded.
119 llvm::Value *Undef = llvm::UndefValue::get(llvm::Type::Int32Ty);
120 AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::Int32Ty, "allocapt",
121 EntryBB);
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000122
123 ReturnBlock = llvm::BasicBlock::Create("return", CurFn);
124 ReturnValue = 0;
Daniel Dunbar7c086512008-09-09 23:14:03 +0000125 if (!RetTy->isVoidType())
126 ReturnValue = CreateTempAlloca(ConvertType(RetTy), "retval");
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000127
Chris Lattner41110242008-06-17 18:05:57 +0000128 Builder.SetInsertPoint(EntryBB);
129
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000130 // Emit subprogram debug descriptor.
Daniel Dunbar7c086512008-09-09 23:14:03 +0000131 // FIXME: The cast here is a huge hack.
132 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
133 if (CGDebugInfo *DI = CGM.getDebugInfo()) {
134 CompoundStmt* body = dyn_cast<CompoundStmt>(FD->getBody());
135 if (body && body->getLBracLoc().isValid()) {
136 DI->setLocation(body->getLBracLoc());
137 }
138 DI->EmitFunctionStart(FD, CurFn, Builder);
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000139 }
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000140 }
141
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000142 EmitFunctionProlog(CurFn, FnRetTy, Args);
Daniel Dunbar7c086512008-09-09 23:14:03 +0000143}
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000144
Daniel Dunbar7c086512008-09-09 23:14:03 +0000145void CodeGenFunction::GenerateCode(const FunctionDecl *FD,
146 llvm::Function *Fn) {
147 FunctionArgList Args;
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000148 if (FD->getNumParams()) {
149 const FunctionTypeProto* FProto = FD->getType()->getAsFunctionTypeProto();
150 assert(FProto && "Function def must have prototype!");
Daniel Dunbar7c086512008-09-09 23:14:03 +0000151
152 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i)
153 Args.push_back(std::make_pair(FD->getParamDecl(i),
154 FProto->getArgType(i)));
Chris Lattner41110242008-06-17 18:05:57 +0000155 }
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000156
Daniel Dunbar7c086512008-09-09 23:14:03 +0000157 StartFunction(FD, FD->getResultType(), Fn, Args);
158
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000159 EmitStmt(FD->getBody());
160
161 const CompoundStmt *S = dyn_cast<CompoundStmt>(FD->getBody());
162 if (S) {
163 FinishFunction(S->getRBracLoc());
164 } else {
165 FinishFunction();
166 }
Chris Lattner41110242008-06-17 18:05:57 +0000167}
168
Devang Pateld9363c32007-09-28 21:49:18 +0000169/// isDummyBlock - Return true if BB is an empty basic block
170/// with no predecessors.
171bool CodeGenFunction::isDummyBlock(const llvm::BasicBlock *BB) {
Chris Lattner1e9660e2008-07-25 23:40:10 +0000172 if (BB->empty() && pred_begin(BB) == pred_end(BB) && !BB->hasName())
Devang Pateld9363c32007-09-28 21:49:18 +0000173 return true;
174 return false;
175}
176
Devang Patel51b09f22007-10-04 23:45:31 +0000177/// StartBlock - Start new block named N. If insert block is a dummy block
178/// then reuse it.
179void CodeGenFunction::StartBlock(const char *N) {
180 llvm::BasicBlock *BB = Builder.GetInsertBlock();
181 if (!isDummyBlock(BB))
Gabor Greif984d0b42008-04-06 20:42:52 +0000182 EmitBlock(llvm::BasicBlock::Create(N));
Devang Patel51b09f22007-10-04 23:45:31 +0000183 else
184 BB->setName(N);
185}
186
Devang Patel88a981b2007-11-01 19:11:01 +0000187/// getCGRecordLayout - Return record layout info.
188const CGRecordLayout *CodeGenFunction::getCGRecordLayout(CodeGenTypes &CGT,
Chris Lattneraf319132008-02-05 06:55:31 +0000189 QualType Ty) {
190 const RecordType *RTy = Ty->getAsRecordType();
191 assert (RTy && "Unexpected type. RecordType expected here.");
Devang Patelb84a06e2007-10-23 02:10:49 +0000192
Chris Lattneraf319132008-02-05 06:55:31 +0000193 return CGT.getCGRecordLayout(RTy->getDecl());
Devang Patelb84a06e2007-10-23 02:10:49 +0000194}
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000195
Daniel Dunbar488e9932008-08-16 00:56:44 +0000196/// ErrorUnsupported - Print out an error that codegen doesn't support the
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000197/// specified stmt yet.
Daniel Dunbar90df4b62008-09-04 03:43:08 +0000198void CodeGenFunction::ErrorUnsupported(const Stmt *S, const char *Type,
199 bool OmitOnError) {
200 CGM.ErrorUnsupported(S, Type, OmitOnError);
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000201}
202
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000203unsigned CodeGenFunction::GetIDForAddrOfLabel(const LabelStmt *L) {
204 // Use LabelIDs.size() as the new ID if one hasn't been assigned.
205 return LabelIDs.insert(std::make_pair(L, LabelIDs.size())).first->second;
206}
207
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000208void CodeGenFunction::EmitMemSetToZero(llvm::Value *DestPtr, QualType Ty)
209{
210 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
211 if (DestPtr->getType() != BP)
212 DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
213
214 // Get size and alignment info for this aggregate.
215 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
216
217 // FIXME: Handle variable sized types.
218 const llvm::Type *IntPtr = llvm::IntegerType::get(LLVMPointerWidth);
219
220 Builder.CreateCall4(CGM.getMemSetFn(), DestPtr,
221 llvm::ConstantInt::getNullValue(llvm::Type::Int8Ty),
222 // TypeInfo.first describes size in bits.
223 llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
224 llvm::ConstantInt::get(llvm::Type::Int32Ty,
225 TypeInfo.second/8));
226}
227
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000228void CodeGenFunction::EmitIndirectSwitches() {
229 llvm::BasicBlock *Default;
230
Daniel Dunbar76526a52008-08-04 17:24:44 +0000231 if (IndirectSwitches.empty())
232 return;
233
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000234 if (!LabelIDs.empty()) {
235 Default = getBasicBlockForLabel(LabelIDs.begin()->first);
236 } else {
237 // No possible targets for indirect goto, just emit an infinite
238 // loop.
239 Default = llvm::BasicBlock::Create("indirectgoto.loop", CurFn);
240 llvm::BranchInst::Create(Default, Default);
241 }
242
243 for (std::vector<llvm::SwitchInst*>::iterator i = IndirectSwitches.begin(),
244 e = IndirectSwitches.end(); i != e; ++i) {
245 llvm::SwitchInst *I = *i;
246
247 I->setSuccessor(0, Default);
248 for (std::map<const LabelStmt*,unsigned>::iterator LI = LabelIDs.begin(),
249 LE = LabelIDs.end(); LI != LE; ++LI) {
250 I->addCase(llvm::ConstantInt::get(llvm::Type::Int32Ty,
251 LI->second),
252 getBasicBlockForLabel(LI->first));
253 }
254 }
255}