blob: bcd1e09800ebe06120a6641aa387e8800bc29bff [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"
Devang Pateld9363c32007-09-28 21:49:18 +000020#include "llvm/Support/CFG.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021using namespace clang;
22using namespace CodeGen;
23
24CodeGenFunction::CodeGenFunction(CodeGenModule &cgm)
Devang Patelc049e4f2007-10-08 20:57:48 +000025 : CGM(cgm), Target(CGM.getContext().Target), SwitchInsn(NULL),
Chris Lattner41110242008-06-17 18:05:57 +000026 CaseRangeBlock(NULL) {
27 LLVMIntTy = ConvertType(getContext().IntTy);
28 LLVMPointerWidth = Target.getPointerWidth(0);
29}
Reid Spencer5f016e22007-07-11 17:01:13 +000030
31ASTContext &CodeGenFunction::getContext() const {
32 return CGM.getContext();
33}
34
35
36llvm::BasicBlock *CodeGenFunction::getBasicBlockForLabel(const LabelStmt *S) {
37 llvm::BasicBlock *&BB = LabelMap[S];
38 if (BB) return BB;
39
40 // Create, but don't insert, the new block.
Daniel Dunbar55e87422008-11-11 02:29:29 +000041 return BB = createBasicBlock(S->getName());
Reid Spencer5f016e22007-07-11 17:01:13 +000042}
43
Lauro Ramos Venancio81373352008-02-26 21:41:45 +000044llvm::Constant *
Steve Naroff248a7532008-04-15 22:42:06 +000045CodeGenFunction::GetAddrOfStaticLocalVar(const VarDecl *BVD) {
Lauro Ramos Venancio81373352008-02-26 21:41:45 +000046 return cast<llvm::Constant>(LocalDeclMap[BVD]);
47}
Reid Spencer5f016e22007-07-11 17:01:13 +000048
Anders Carlssondde0a942008-09-11 09:15:33 +000049llvm::Value *CodeGenFunction::GetAddrOfLocalVar(const VarDecl *VD)
50{
51 return LocalDeclMap[VD];
52}
53
Reid Spencer5f016e22007-07-11 17:01:13 +000054const llvm::Type *CodeGenFunction::ConvertType(QualType T) {
55 return CGM.getTypes().ConvertType(T);
56}
57
Chris Lattner41110242008-06-17 18:05:57 +000058bool CodeGenFunction::isObjCPointerType(QualType T) {
59 // All Objective-C types are pointers.
60 return T->isObjCInterfaceType() ||
61 T->isObjCQualifiedInterfaceType() || T->isObjCQualifiedIdType();
62}
63
Reid Spencer5f016e22007-07-11 17:01:13 +000064bool CodeGenFunction::hasAggregateLLVMType(QualType T) {
Chris Lattner41110242008-06-17 18:05:57 +000065 return !isObjCPointerType(T) &&!T->isRealType() && !T->isPointerLikeType() &&
66 !T->isVoidType() && !T->isVectorType() && !T->isFunctionType();
Reid Spencer5f016e22007-07-11 17:01:13 +000067}
68
Daniel Dunbaraf05bb92008-08-26 08:29:31 +000069void CodeGenFunction::FinishFunction(SourceLocation EndLoc) {
Daniel Dunbar0ffb1252008-08-04 16:51:22 +000070 // Finish emission of indirect switches.
71 EmitIndirectSwitches();
72
Chris Lattnerda138702007-07-16 21:28:45 +000073 assert(BreakContinueStack.empty() &&
74 "mismatched push/pop in break/continue stack!");
Daniel Dunbar5ca20842008-09-09 21:00:17 +000075
Daniel Dunbarb01d1912008-09-27 07:15:59 +000076 // Emit function epilog (to return). This has the nice side effect
77 // of also automatically handling code that falls off the end.
78 EmitBlock(ReturnBlock);
Daniel Dunbarf5bd45c2008-11-11 20:59:54 +000079
80 // Emit debug descriptor for function end.
81 if (CGDebugInfo *DI = CGM.getDebugInfo()) {
82 DI->setLocation(EndLoc);
83 DI->EmitRegionEnd(CurFn, Builder);
84 }
85
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;
Reid Spencer5f016e22007-07-11 17:01:13 +000091}
92
Daniel Dunbar7c086512008-09-09 23:14:03 +000093void CodeGenFunction::StartFunction(const Decl *D, QualType RetTy,
94 llvm::Function *Fn,
Daniel Dunbar2284ac92008-10-18 18:22:23 +000095 const FunctionArgList &Args,
96 SourceLocation StartLoc) {
Daniel Dunbar7c086512008-09-09 23:14:03 +000097 CurFuncDecl = D;
98 FnRetTy = RetTy;
Daniel Dunbarbd012ff2008-07-29 23:18:29 +000099 CurFn = Fn;
Chris Lattner41110242008-06-17 18:05:57 +0000100 assert(CurFn->isDeclaration() && "Function already has body?");
101
Daniel Dunbar55e87422008-11-11 02:29:29 +0000102 llvm::BasicBlock *EntryBB = createBasicBlock("entry", CurFn);
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000103
Chris Lattner41110242008-06-17 18:05:57 +0000104 // Create a marker to make it easy to insert allocas into the entryblock
105 // later. Don't create this with the builder, because we don't want it
106 // folded.
107 llvm::Value *Undef = llvm::UndefValue::get(llvm::Type::Int32Ty);
108 AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::Int32Ty, "allocapt",
109 EntryBB);
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000110
Daniel Dunbar55e87422008-11-11 02:29:29 +0000111 ReturnBlock = createBasicBlock("return");
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000112 ReturnValue = 0;
Daniel Dunbar7c086512008-09-09 23:14:03 +0000113 if (!RetTy->isVoidType())
114 ReturnValue = CreateTempAlloca(ConvertType(RetTy), "retval");
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000115
Chris Lattner41110242008-06-17 18:05:57 +0000116 Builder.SetInsertPoint(EntryBB);
117
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000118 // Emit subprogram debug descriptor.
Daniel Dunbar7c086512008-09-09 23:14:03 +0000119 // FIXME: The cast here is a huge hack.
Daniel Dunbar2284ac92008-10-18 18:22:23 +0000120 if (CGDebugInfo *DI = CGM.getDebugInfo()) {
121 DI->setLocation(StartLoc);
122 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
123 DI->EmitFunctionStart(FD->getName(), RetTy, CurFn, Builder);
124 } else {
125 // Just use LLVM function name.
126 DI->EmitFunctionStart(Fn->getName().c_str(),
127 RetTy, CurFn, Builder);
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000128 }
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000129 }
130
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000131 EmitFunctionProlog(CurFn, FnRetTy, Args);
Daniel Dunbar7c086512008-09-09 23:14:03 +0000132}
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000133
Daniel Dunbar7c086512008-09-09 23:14:03 +0000134void CodeGenFunction::GenerateCode(const FunctionDecl *FD,
135 llvm::Function *Fn) {
136 FunctionArgList Args;
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000137 if (FD->getNumParams()) {
138 const FunctionTypeProto* FProto = FD->getType()->getAsFunctionTypeProto();
139 assert(FProto && "Function def must have prototype!");
Daniel Dunbar7c086512008-09-09 23:14:03 +0000140
141 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i)
142 Args.push_back(std::make_pair(FD->getParamDecl(i),
143 FProto->getArgType(i)));
Chris Lattner41110242008-06-17 18:05:57 +0000144 }
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000145
Daniel Dunbar2284ac92008-10-18 18:22:23 +0000146 StartFunction(FD, FD->getResultType(), Fn, Args,
147 cast<CompoundStmt>(FD->getBody())->getLBracLoc());
Daniel Dunbar7c086512008-09-09 23:14:03 +0000148
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000149 EmitStmt(FD->getBody());
150
151 const CompoundStmt *S = dyn_cast<CompoundStmt>(FD->getBody());
152 if (S) {
153 FinishFunction(S->getRBracLoc());
154 } else {
155 FinishFunction();
156 }
Chris Lattner41110242008-06-17 18:05:57 +0000157}
158
Devang Pateld9363c32007-09-28 21:49:18 +0000159/// isDummyBlock - Return true if BB is an empty basic block
160/// with no predecessors.
161bool CodeGenFunction::isDummyBlock(const llvm::BasicBlock *BB) {
Chris Lattner1e9660e2008-07-25 23:40:10 +0000162 if (BB->empty() && pred_begin(BB) == pred_end(BB) && !BB->hasName())
Devang Pateld9363c32007-09-28 21:49:18 +0000163 return true;
164 return false;
165}
166
Chris Lattner0946ccd2008-11-11 07:41:27 +0000167/// ContainsLabel - Return true if the statement contains a label in it. If
168/// this statement is not executed normally, it not containing a label means
169/// that we can just remove the code.
170bool CodeGenFunction::ContainsLabel(const Stmt *S, bool IgnoreCaseStmts) {
171 // Null statement, not a label!
172 if (S == 0) return false;
173
174 // If this is a label, we have to emit the code, consider something like:
175 // if (0) { ... foo: bar(); } goto foo;
176 if (isa<LabelStmt>(S))
177 return true;
178
179 // If this is a case/default statement, and we haven't seen a switch, we have
180 // to emit the code.
181 if (isa<SwitchCase>(S) && !IgnoreCaseStmts)
182 return true;
183
184 // If this is a switch statement, we want to ignore cases below it.
185 if (isa<SwitchStmt>(S))
186 IgnoreCaseStmts = true;
187
188 // Scan subexpressions for verboten labels.
189 for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end();
190 I != E; ++I)
191 if (ContainsLabel(*I, IgnoreCaseStmts))
192 return true;
193
194 return false;
195}
196
Devang Patel88a981b2007-11-01 19:11:01 +0000197/// getCGRecordLayout - Return record layout info.
198const CGRecordLayout *CodeGenFunction::getCGRecordLayout(CodeGenTypes &CGT,
Chris Lattneraf319132008-02-05 06:55:31 +0000199 QualType Ty) {
200 const RecordType *RTy = Ty->getAsRecordType();
201 assert (RTy && "Unexpected type. RecordType expected here.");
Devang Patelb84a06e2007-10-23 02:10:49 +0000202
Chris Lattneraf319132008-02-05 06:55:31 +0000203 return CGT.getCGRecordLayout(RTy->getDecl());
Devang Patelb84a06e2007-10-23 02:10:49 +0000204}
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000205
Daniel Dunbar488e9932008-08-16 00:56:44 +0000206/// ErrorUnsupported - Print out an error that codegen doesn't support the
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000207/// specified stmt yet.
Daniel Dunbar90df4b62008-09-04 03:43:08 +0000208void CodeGenFunction::ErrorUnsupported(const Stmt *S, const char *Type,
209 bool OmitOnError) {
210 CGM.ErrorUnsupported(S, Type, OmitOnError);
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000211}
212
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000213unsigned CodeGenFunction::GetIDForAddrOfLabel(const LabelStmt *L) {
214 // Use LabelIDs.size() as the new ID if one hasn't been assigned.
215 return LabelIDs.insert(std::make_pair(L, LabelIDs.size())).first->second;
216}
217
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000218void CodeGenFunction::EmitMemSetToZero(llvm::Value *DestPtr, QualType Ty)
219{
220 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
221 if (DestPtr->getType() != BP)
222 DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
223
224 // Get size and alignment info for this aggregate.
225 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
226
227 // FIXME: Handle variable sized types.
228 const llvm::Type *IntPtr = llvm::IntegerType::get(LLVMPointerWidth);
229
230 Builder.CreateCall4(CGM.getMemSetFn(), DestPtr,
231 llvm::ConstantInt::getNullValue(llvm::Type::Int8Ty),
232 // TypeInfo.first describes size in bits.
233 llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
234 llvm::ConstantInt::get(llvm::Type::Int32Ty,
235 TypeInfo.second/8));
236}
237
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000238void CodeGenFunction::EmitIndirectSwitches() {
239 llvm::BasicBlock *Default;
240
Daniel Dunbar76526a52008-08-04 17:24:44 +0000241 if (IndirectSwitches.empty())
242 return;
243
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000244 if (!LabelIDs.empty()) {
245 Default = getBasicBlockForLabel(LabelIDs.begin()->first);
246 } else {
247 // No possible targets for indirect goto, just emit an infinite
248 // loop.
Daniel Dunbar55e87422008-11-11 02:29:29 +0000249 Default = createBasicBlock("indirectgoto.loop", CurFn);
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000250 llvm::BranchInst::Create(Default, Default);
251 }
252
253 for (std::vector<llvm::SwitchInst*>::iterator i = IndirectSwitches.begin(),
254 e = IndirectSwitches.end(); i != e; ++i) {
255 llvm::SwitchInst *I = *i;
256
257 I->setSuccessor(0, Default);
258 for (std::map<const LabelStmt*,unsigned>::iterator LI = LabelIDs.begin(),
259 LE = LabelIDs.end(); LI != LE; ++LI) {
260 I->addCase(llvm::ConstantInt::get(llvm::Type::Int32Ty,
261 LI->second),
262 getBasicBlockForLabel(LI->first));
263 }
264 }
265}
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000266
267llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty)
268{
269 // FIXME: This entire method is hardcoded for 32-bit X86.
270
271 const char *TargetPrefix = getContext().Target.getTargetPrefix();
272
273 if (strcmp(TargetPrefix, "x86") != 0 ||
274 getContext().Target.getPointerWidth(0) != 32)
275 return 0;
276
277 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
278 const llvm::Type *BPP = llvm::PointerType::getUnqual(BP);
279
280 llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP,
281 "ap");
282 llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
283 llvm::Value *AddrTyped =
284 Builder.CreateBitCast(Addr,
285 llvm::PointerType::getUnqual(ConvertType(Ty)));
286
287 uint64_t SizeInBytes = getContext().getTypeSize(Ty) / 8;
288 const unsigned ArgumentSizeInBytes = 4;
289 if (SizeInBytes < ArgumentSizeInBytes)
290 SizeInBytes = ArgumentSizeInBytes;
291
292 llvm::Value *NextAddr =
293 Builder.CreateGEP(Addr,
294 llvm::ConstantInt::get(llvm::Type::Int32Ty, SizeInBytes),
295 "ap.next");
296 Builder.CreateStore(NextAddr, VAListAddrAsBPP);
297
298 return AddrTyped;
299}
300