blob: 2ee08eae17ceb91e41e71222ba38b27af7718711 [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 Dunbar66031a52008-10-17 16:15:48 +000076 DI->setLocation(EndLoc);
Sanjiv Guptaaf994172008-07-04 11:04:26 +000077 DI->EmitRegionEnd(CurFn, Builder);
78 }
79
Chris Lattnerda138702007-07-16 21:28:45 +000080 assert(BreakContinueStack.empty() &&
81 "mismatched push/pop in break/continue stack!");
Daniel Dunbar5ca20842008-09-09 21:00:17 +000082
Daniel Dunbarb01d1912008-09-27 07:15:59 +000083 // Emit function epilog (to return). This has the nice side effect
84 // of also automatically handling code that falls off the end.
85 EmitBlock(ReturnBlock);
Daniel Dunbar17b708d2008-09-09 23:27:19 +000086 EmitFunctionEpilog(FnRetTy, ReturnValue);
Daniel Dunbar5ca20842008-09-09 21:00:17 +000087
Chris Lattner5a2fa142007-12-02 06:32:24 +000088 // Remove the AllocaInsertPt instruction, which is just a convenience for us.
89 AllocaInsertPt->eraseFromParent();
90 AllocaInsertPt = 0;
91
Reid Spencer5f016e22007-07-11 17:01:13 +000092 // Verify that the function is well formed.
Daniel Dunbarb43f3922008-09-17 21:13:22 +000093 if (verifyFunction(*CurFn, llvm::PrintMessageAction)) {
94 CurFn->dump();
95 assert(0 && "Function failed verification!");
96 }
Reid Spencer5f016e22007-07-11 17:01:13 +000097}
98
Daniel Dunbar7c086512008-09-09 23:14:03 +000099void CodeGenFunction::StartFunction(const Decl *D, QualType RetTy,
100 llvm::Function *Fn,
Daniel Dunbar2284ac92008-10-18 18:22:23 +0000101 const FunctionArgList &Args,
102 SourceLocation StartLoc) {
Daniel Dunbar7c086512008-09-09 23:14:03 +0000103 CurFuncDecl = D;
104 FnRetTy = RetTy;
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000105 CurFn = Fn;
Chris Lattner41110242008-06-17 18:05:57 +0000106 assert(CurFn->isDeclaration() && "Function already has body?");
107
108 llvm::BasicBlock *EntryBB = llvm::BasicBlock::Create("entry", CurFn);
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000109
Chris Lattner41110242008-06-17 18:05:57 +0000110 // Create a marker to make it easy to insert allocas into the entryblock
111 // later. Don't create this with the builder, because we don't want it
112 // folded.
113 llvm::Value *Undef = llvm::UndefValue::get(llvm::Type::Int32Ty);
114 AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::Int32Ty, "allocapt",
115 EntryBB);
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000116
Daniel Dunbarb01d1912008-09-27 07:15:59 +0000117 ReturnBlock = llvm::BasicBlock::Create("return");
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000118 ReturnValue = 0;
Daniel Dunbar7c086512008-09-09 23:14:03 +0000119 if (!RetTy->isVoidType())
120 ReturnValue = CreateTempAlloca(ConvertType(RetTy), "retval");
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000121
Chris Lattner41110242008-06-17 18:05:57 +0000122 Builder.SetInsertPoint(EntryBB);
123
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000124 // Emit subprogram debug descriptor.
Daniel Dunbar7c086512008-09-09 23:14:03 +0000125 // FIXME: The cast here is a huge hack.
Daniel Dunbar2284ac92008-10-18 18:22:23 +0000126 if (CGDebugInfo *DI = CGM.getDebugInfo()) {
127 DI->setLocation(StartLoc);
128 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
129 DI->EmitFunctionStart(FD->getName(), RetTy, CurFn, Builder);
130 } else {
131 // Just use LLVM function name.
132 DI->EmitFunctionStart(Fn->getName().c_str(),
133 RetTy, CurFn, Builder);
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000134 }
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000135 }
136
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000137 EmitFunctionProlog(CurFn, FnRetTy, Args);
Daniel Dunbar7c086512008-09-09 23:14:03 +0000138}
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000139
Daniel Dunbar7c086512008-09-09 23:14:03 +0000140void CodeGenFunction::GenerateCode(const FunctionDecl *FD,
141 llvm::Function *Fn) {
142 FunctionArgList Args;
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000143 if (FD->getNumParams()) {
144 const FunctionTypeProto* FProto = FD->getType()->getAsFunctionTypeProto();
145 assert(FProto && "Function def must have prototype!");
Daniel Dunbar7c086512008-09-09 23:14:03 +0000146
147 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i)
148 Args.push_back(std::make_pair(FD->getParamDecl(i),
149 FProto->getArgType(i)));
Chris Lattner41110242008-06-17 18:05:57 +0000150 }
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000151
Daniel Dunbar2284ac92008-10-18 18:22:23 +0000152 StartFunction(FD, FD->getResultType(), Fn, Args,
153 cast<CompoundStmt>(FD->getBody())->getLBracLoc());
Daniel Dunbar7c086512008-09-09 23:14:03 +0000154
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000155 EmitStmt(FD->getBody());
156
157 const CompoundStmt *S = dyn_cast<CompoundStmt>(FD->getBody());
158 if (S) {
159 FinishFunction(S->getRBracLoc());
160 } else {
161 FinishFunction();
162 }
Chris Lattner41110242008-06-17 18:05:57 +0000163}
164
Devang Pateld9363c32007-09-28 21:49:18 +0000165/// isDummyBlock - Return true if BB is an empty basic block
166/// with no predecessors.
167bool CodeGenFunction::isDummyBlock(const llvm::BasicBlock *BB) {
Chris Lattner1e9660e2008-07-25 23:40:10 +0000168 if (BB->empty() && pred_begin(BB) == pred_end(BB) && !BB->hasName())
Devang Pateld9363c32007-09-28 21:49:18 +0000169 return true;
170 return false;
171}
172
Devang Patel51b09f22007-10-04 23:45:31 +0000173/// StartBlock - Start new block named N. If insert block is a dummy block
174/// then reuse it.
175void CodeGenFunction::StartBlock(const char *N) {
176 llvm::BasicBlock *BB = Builder.GetInsertBlock();
177 if (!isDummyBlock(BB))
Gabor Greif984d0b42008-04-06 20:42:52 +0000178 EmitBlock(llvm::BasicBlock::Create(N));
Devang Patel51b09f22007-10-04 23:45:31 +0000179 else
180 BB->setName(N);
181}
182
Devang Patel88a981b2007-11-01 19:11:01 +0000183/// getCGRecordLayout - Return record layout info.
184const CGRecordLayout *CodeGenFunction::getCGRecordLayout(CodeGenTypes &CGT,
Chris Lattneraf319132008-02-05 06:55:31 +0000185 QualType Ty) {
186 const RecordType *RTy = Ty->getAsRecordType();
187 assert (RTy && "Unexpected type. RecordType expected here.");
Devang Patelb84a06e2007-10-23 02:10:49 +0000188
Chris Lattneraf319132008-02-05 06:55:31 +0000189 return CGT.getCGRecordLayout(RTy->getDecl());
Devang Patelb84a06e2007-10-23 02:10:49 +0000190}
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000191
Daniel Dunbar488e9932008-08-16 00:56:44 +0000192/// ErrorUnsupported - Print out an error that codegen doesn't support the
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000193/// specified stmt yet.
Daniel Dunbar90df4b62008-09-04 03:43:08 +0000194void CodeGenFunction::ErrorUnsupported(const Stmt *S, const char *Type,
195 bool OmitOnError) {
196 CGM.ErrorUnsupported(S, Type, OmitOnError);
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000197}
198
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000199unsigned CodeGenFunction::GetIDForAddrOfLabel(const LabelStmt *L) {
200 // Use LabelIDs.size() as the new ID if one hasn't been assigned.
201 return LabelIDs.insert(std::make_pair(L, LabelIDs.size())).first->second;
202}
203
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000204void CodeGenFunction::EmitMemSetToZero(llvm::Value *DestPtr, QualType Ty)
205{
206 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
207 if (DestPtr->getType() != BP)
208 DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
209
210 // Get size and alignment info for this aggregate.
211 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
212
213 // FIXME: Handle variable sized types.
214 const llvm::Type *IntPtr = llvm::IntegerType::get(LLVMPointerWidth);
215
216 Builder.CreateCall4(CGM.getMemSetFn(), DestPtr,
217 llvm::ConstantInt::getNullValue(llvm::Type::Int8Ty),
218 // TypeInfo.first describes size in bits.
219 llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
220 llvm::ConstantInt::get(llvm::Type::Int32Ty,
221 TypeInfo.second/8));
222}
223
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000224void CodeGenFunction::EmitIndirectSwitches() {
225 llvm::BasicBlock *Default;
226
Daniel Dunbar76526a52008-08-04 17:24:44 +0000227 if (IndirectSwitches.empty())
228 return;
229
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000230 if (!LabelIDs.empty()) {
231 Default = getBasicBlockForLabel(LabelIDs.begin()->first);
232 } else {
233 // No possible targets for indirect goto, just emit an infinite
234 // loop.
235 Default = llvm::BasicBlock::Create("indirectgoto.loop", CurFn);
236 llvm::BranchInst::Create(Default, Default);
237 }
238
239 for (std::vector<llvm::SwitchInst*>::iterator i = IndirectSwitches.begin(),
240 e = IndirectSwitches.end(); i != e; ++i) {
241 llvm::SwitchInst *I = *i;
242
243 I->setSuccessor(0, Default);
244 for (std::map<const LabelStmt*,unsigned>::iterator LI = LabelIDs.begin(),
245 LE = LabelIDs.end(); LI != LE; ++LI) {
246 I->addCase(llvm::ConstantInt::get(llvm::Type::Int32Ty,
247 LI->second),
248 getBasicBlockForLabel(LI->first));
249 }
250 }
251}