blob: e41476e65033e64247746bb361883cb1c5a81ffb [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"
Chris Lattner31a09842008-11-12 08:04:58 +000018#include "clang/AST/APValue.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000019#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000020#include "clang/AST/Decl.h"
Anders Carlsson2b77ba82009-04-04 20:47:02 +000021#include "clang/AST/DeclCXX.h"
Devang Pateld9363c32007-09-28 21:49:18 +000022#include "llvm/Support/CFG.h"
Mike Stump4e7a1f72009-02-21 20:00:35 +000023#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25using namespace CodeGen;
26
27CodeGenFunction::CodeGenFunction(CodeGenModule &cgm)
Mike Stumpa4f668f2009-03-06 01:33:24 +000028 : BlockFunction(cgm, *this, Builder), CGM(cgm),
29 Target(CGM.getContext().Target),
Owen Andersonaac87052009-07-08 20:52:20 +000030 Builder(cgm.getModule().getContext()),
Anders Carlsson2b77ba82009-04-04 20:47:02 +000031 DebugInfo(0), SwitchInsn(0), CaseRangeBlock(0), InvokeDest(0),
32 CXXThisDecl(0) {
Mike Stump4e7a1f72009-02-21 20:00:35 +000033 LLVMIntTy = ConvertType(getContext().IntTy);
34 LLVMPointerWidth = Target.getPointerWidth(0);
Chris Lattner41110242008-06-17 18:05:57 +000035}
Reid Spencer5f016e22007-07-11 17:01:13 +000036
37ASTContext &CodeGenFunction::getContext() const {
38 return CGM.getContext();
39}
40
41
42llvm::BasicBlock *CodeGenFunction::getBasicBlockForLabel(const LabelStmt *S) {
43 llvm::BasicBlock *&BB = LabelMap[S];
44 if (BB) return BB;
45
46 // Create, but don't insert, the new block.
Daniel Dunbar55e87422008-11-11 02:29:29 +000047 return BB = createBasicBlock(S->getName());
Reid Spencer5f016e22007-07-11 17:01:13 +000048}
49
Daniel Dunbar0096acf2009-02-25 19:24:29 +000050llvm::Value *CodeGenFunction::GetAddrOfLocalVar(const VarDecl *VD) {
51 llvm::Value *Res = LocalDeclMap[VD];
52 assert(Res && "Invalid argument to GetAddrOfLocalVar(), no decl!");
53 return Res;
Lauro Ramos Venancio81373352008-02-26 21:41:45 +000054}
Reid Spencer5f016e22007-07-11 17:01:13 +000055
Daniel Dunbar0096acf2009-02-25 19:24:29 +000056llvm::Constant *
57CodeGenFunction::GetAddrOfStaticLocalVar(const VarDecl *BVD) {
58 return cast<llvm::Constant>(GetAddrOfLocalVar(BVD));
Anders Carlssondde0a942008-09-11 09:15:33 +000059}
60
Daniel Dunbar8b1a3432009-02-03 23:03:55 +000061const llvm::Type *CodeGenFunction::ConvertTypeForMem(QualType T) {
62 return CGM.getTypes().ConvertTypeForMem(T);
63}
64
Reid Spencer5f016e22007-07-11 17:01:13 +000065const llvm::Type *CodeGenFunction::ConvertType(QualType T) {
66 return CGM.getTypes().ConvertType(T);
67}
68
69bool CodeGenFunction::hasAggregateLLVMType(QualType T) {
Mike Stumpf5408fe2009-05-16 07:57:57 +000070 // FIXME: Use positive checks instead of negative ones to be more robust in
71 // the face of extension.
Daniel Dunbar89588912009-02-26 20:52:22 +000072 return !T->hasPointerRepresentation() &&!T->isRealType() &&
73 !T->isVoidType() && !T->isVectorType() && !T->isFunctionType() &&
Daniel Dunbara782ca72009-01-09 02:44:18 +000074 !T->isBlockPointerType();
Reid Spencer5f016e22007-07-11 17:01:13 +000075}
76
Daniel Dunbar1c1d6072009-01-26 23:27:52 +000077void CodeGenFunction::EmitReturnBlock() {
78 // For cleanliness, we try to avoid emitting the return block for
79 // simple cases.
80 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
81
82 if (CurBB) {
83 assert(!CurBB->getTerminator() && "Unexpected terminated block.");
84
85 // We have a valid insert point, reuse it if there are no explicit
86 // jumps to the return block.
87 if (ReturnBlock->use_empty())
88 delete ReturnBlock;
89 else
90 EmitBlock(ReturnBlock);
91 return;
92 }
93
94 // Otherwise, if the return block is the target of a single direct
95 // branch then we can just put the code in that block instead. This
96 // cleans up functions which started with a unified return block.
97 if (ReturnBlock->hasOneUse()) {
98 llvm::BranchInst *BI =
99 dyn_cast<llvm::BranchInst>(*ReturnBlock->use_begin());
100 if (BI && BI->isUnconditional() && BI->getSuccessor(0) == ReturnBlock) {
101 // Reset insertion point and delete the branch.
102 Builder.SetInsertPoint(BI->getParent());
103 BI->eraseFromParent();
104 delete ReturnBlock;
105 return;
106 }
107 }
108
Mike Stumpf5408fe2009-05-16 07:57:57 +0000109 // FIXME: We are at an unreachable point, there is no reason to emit the block
110 // unless it has uses. However, we still need a place to put the debug
111 // region.end for now.
Daniel Dunbar1c1d6072009-01-26 23:27:52 +0000112
113 EmitBlock(ReturnBlock);
114}
115
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000116void CodeGenFunction::FinishFunction(SourceLocation EndLoc) {
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000117 // Finish emission of indirect switches.
118 EmitIndirectSwitches();
119
Chris Lattnerda138702007-07-16 21:28:45 +0000120 assert(BreakContinueStack.empty() &&
121 "mismatched push/pop in break/continue stack!");
Anders Carlssonbd6fa3d2009-02-08 00:16:35 +0000122 assert(BlockScopes.empty() &&
123 "did not remove all blocks from block scope map!");
124 assert(CleanupEntries.empty() &&
125 "mismatched push/pop in cleanup stack!");
126
Daniel Dunbar1c1d6072009-01-26 23:27:52 +0000127 // Emit function epilog (to return).
128 EmitReturnBlock();
Daniel Dunbarf5bd45c2008-11-11 20:59:54 +0000129
130 // Emit debug descriptor for function end.
Anders Carlssone896d982009-02-13 08:11:52 +0000131 if (CGDebugInfo *DI = getDebugInfo()) {
Daniel Dunbarf5bd45c2008-11-11 20:59:54 +0000132 DI->setLocation(EndLoc);
133 DI->EmitRegionEnd(CurFn, Builder);
134 }
135
Daniel Dunbar88b53962009-02-02 22:03:45 +0000136 EmitFunctionEpilog(*CurFnInfo, ReturnValue);
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000137
Chris Lattner5a2fa142007-12-02 06:32:24 +0000138 // Remove the AllocaInsertPt instruction, which is just a convenience for us.
Chris Lattner481769b2009-03-31 22:17:44 +0000139 llvm::Instruction *Ptr = AllocaInsertPt;
Chris Lattner5a2fa142007-12-02 06:32:24 +0000140 AllocaInsertPt = 0;
Chris Lattner481769b2009-03-31 22:17:44 +0000141 Ptr->eraseFromParent();
Reid Spencer5f016e22007-07-11 17:01:13 +0000142}
143
Daniel Dunbar7c086512008-09-09 23:14:03 +0000144void CodeGenFunction::StartFunction(const Decl *D, QualType RetTy,
145 llvm::Function *Fn,
Daniel Dunbar2284ac92008-10-18 18:22:23 +0000146 const FunctionArgList &Args,
147 SourceLocation StartLoc) {
Anders Carlsson4cc1a472009-02-09 20:20:56 +0000148 DidCallStackSave = false;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000149 CurCodeDecl = CurFuncDecl = D;
Daniel Dunbar7c086512008-09-09 23:14:03 +0000150 FnRetTy = RetTy;
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000151 CurFn = Fn;
Chris Lattner41110242008-06-17 18:05:57 +0000152 assert(CurFn->isDeclaration() && "Function already has body?");
153
Daniel Dunbar55e87422008-11-11 02:29:29 +0000154 llvm::BasicBlock *EntryBB = createBasicBlock("entry", CurFn);
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000155
Chris Lattner41110242008-06-17 18:05:57 +0000156 // Create a marker to make it easy to insert allocas into the entryblock
157 // later. Don't create this with the builder, because we don't want it
158 // folded.
Owen Andersona1cf15f2009-07-14 23:10:40 +0000159 llvm::Value *Undef = VMContext.getUndef(llvm::Type::Int32Ty);
Chris Lattnerf1466842009-03-22 00:24:14 +0000160 AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::Int32Ty, "",
Chris Lattner41110242008-06-17 18:05:57 +0000161 EntryBB);
Chris Lattnerf1466842009-03-22 00:24:14 +0000162 if (Builder.isNamePreserving())
163 AllocaInsertPt->setName("allocapt");
164
Daniel Dunbar55e87422008-11-11 02:29:29 +0000165 ReturnBlock = createBasicBlock("return");
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000166 ReturnValue = 0;
Daniel Dunbar7c086512008-09-09 23:14:03 +0000167 if (!RetTy->isVoidType())
168 ReturnValue = CreateTempAlloca(ConvertType(RetTy), "retval");
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000169
Chris Lattner41110242008-06-17 18:05:57 +0000170 Builder.SetInsertPoint(EntryBB);
171
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000172 // Emit subprogram debug descriptor.
Daniel Dunbar7c086512008-09-09 23:14:03 +0000173 // FIXME: The cast here is a huge hack.
Anders Carlssone896d982009-02-13 08:11:52 +0000174 if (CGDebugInfo *DI = getDebugInfo()) {
Daniel Dunbar2284ac92008-10-18 18:22:23 +0000175 DI->setLocation(StartLoc);
176 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor6ec36682009-02-18 23:53:56 +0000177 DI->EmitFunctionStart(CGM.getMangledName(FD), RetTy, CurFn, Builder);
Daniel Dunbar2284ac92008-10-18 18:22:23 +0000178 } else {
179 // Just use LLVM function name.
180 DI->EmitFunctionStart(Fn->getName().c_str(),
181 RetTy, CurFn, Builder);
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000182 }
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000183 }
184
Daniel Dunbar88b53962009-02-02 22:03:45 +0000185 // FIXME: Leaked.
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000186 CurFnInfo = &CGM.getTypes().getFunctionInfo(FnRetTy, Args);
Daniel Dunbar88b53962009-02-02 22:03:45 +0000187 EmitFunctionProlog(*CurFnInfo, CurFn, Args);
Anders Carlsson751358f2008-12-20 21:28:43 +0000188
189 // If any of the arguments have a variably modified type, make sure to
190 // emit the type size.
191 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
192 i != e; ++i) {
193 QualType Ty = i->second;
194
195 if (Ty->isVariablyModifiedType())
196 EmitVLASize(Ty);
197 }
Daniel Dunbar7c086512008-09-09 23:14:03 +0000198}
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000199
Daniel Dunbar7c086512008-09-09 23:14:03 +0000200void CodeGenFunction::GenerateCode(const FunctionDecl *FD,
201 llvm::Function *Fn) {
Anders Carlssone896d982009-02-13 08:11:52 +0000202 // Check if we should generate debug info for this function.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000203 if (CGM.getDebugInfo() && !FD->hasAttr<NodebugAttr>())
Anders Carlssone896d982009-02-13 08:11:52 +0000204 DebugInfo = CGM.getDebugInfo();
205
Daniel Dunbar7c086512008-09-09 23:14:03 +0000206 FunctionArgList Args;
Anders Carlsson2b77ba82009-04-04 20:47:02 +0000207
208 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
209 if (MD->isInstance()) {
210 // Create the implicit 'this' decl.
211 // FIXME: I'm not entirely sure I like using a fake decl just for code
212 // generation. Maybe we can come up with a better way?
213 CXXThisDecl = ImplicitParamDecl::Create(getContext(), 0, SourceLocation(),
214 &getContext().Idents.get("this"),
215 MD->getThisType(getContext()));
216 Args.push_back(std::make_pair(CXXThisDecl, CXXThisDecl->getType()));
217 }
218 }
219
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000220 if (FD->getNumParams()) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000221 const FunctionProtoType* FProto = FD->getType()->getAsFunctionProtoType();
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000222 assert(FProto && "Function def must have prototype!");
Daniel Dunbar7c086512008-09-09 23:14:03 +0000223
224 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i)
225 Args.push_back(std::make_pair(FD->getParamDecl(i),
226 FProto->getArgType(i)));
Chris Lattner41110242008-06-17 18:05:57 +0000227 }
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000228
Sebastian Redld3a413d2009-04-26 20:35:05 +0000229 // FIXME: Support CXXTryStmt here, too.
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000230 if (const CompoundStmt *S = FD->getCompoundBody()) {
Sebastian Redld3a413d2009-04-26 20:35:05 +0000231 StartFunction(FD, FD->getResultType(), Fn, Args, S->getLBracLoc());
232 EmitStmt(S);
233 FinishFunction(S->getRBracLoc());
234 }
Daniel Dunbar7c086512008-09-09 23:14:03 +0000235
Anders Carlsson2b77ba82009-04-04 20:47:02 +0000236 // Destroy the 'this' declaration.
237 if (CXXThisDecl)
238 CXXThisDecl->Destroy(getContext());
Chris Lattner41110242008-06-17 18:05:57 +0000239}
240
Chris Lattner0946ccd2008-11-11 07:41:27 +0000241/// ContainsLabel - Return true if the statement contains a label in it. If
242/// this statement is not executed normally, it not containing a label means
243/// that we can just remove the code.
244bool CodeGenFunction::ContainsLabel(const Stmt *S, bool IgnoreCaseStmts) {
245 // Null statement, not a label!
246 if (S == 0) return false;
247
248 // If this is a label, we have to emit the code, consider something like:
249 // if (0) { ... foo: bar(); } goto foo;
250 if (isa<LabelStmt>(S))
251 return true;
252
253 // If this is a case/default statement, and we haven't seen a switch, we have
254 // to emit the code.
255 if (isa<SwitchCase>(S) && !IgnoreCaseStmts)
256 return true;
257
258 // If this is a switch statement, we want to ignore cases below it.
259 if (isa<SwitchStmt>(S))
260 IgnoreCaseStmts = true;
261
262 // Scan subexpressions for verboten labels.
263 for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end();
264 I != E; ++I)
265 if (ContainsLabel(*I, IgnoreCaseStmts))
266 return true;
267
268 return false;
269}
270
Chris Lattner31a09842008-11-12 08:04:58 +0000271
272/// ConstantFoldsToSimpleInteger - If the sepcified expression does not fold to
273/// a constant, or if it does but contains a label, return 0. If it constant
274/// folds to 'true' and does not contain a label, return 1, if it constant folds
275/// to 'false' and does not contain a label, return -1.
276int CodeGenFunction::ConstantFoldsToSimpleInteger(const Expr *Cond) {
Daniel Dunbar36bc14c2008-11-12 22:37:10 +0000277 // FIXME: Rename and handle conversion of other evaluatable things
278 // to bool.
Anders Carlsson64712f12008-12-01 02:46:24 +0000279 Expr::EvalResult Result;
280 if (!Cond->Evaluate(Result, getContext()) || !Result.Val.isInt() ||
281 Result.HasSideEffects)
Anders Carlssonef5a66d2008-11-22 22:32:07 +0000282 return 0; // Not foldable, not integer or not fully evaluatable.
Chris Lattner31a09842008-11-12 08:04:58 +0000283
284 if (CodeGenFunction::ContainsLabel(Cond))
285 return 0; // Contains a label.
286
Anders Carlsson64712f12008-12-01 02:46:24 +0000287 return Result.Val.getInt().getBoolValue() ? 1 : -1;
Chris Lattner31a09842008-11-12 08:04:58 +0000288}
289
290
291/// EmitBranchOnBoolExpr - Emit a branch on a boolean condition (e.g. for an if
292/// statement) to the specified blocks. Based on the condition, this might try
293/// to simplify the codegen of the conditional based on the branch.
294///
295void CodeGenFunction::EmitBranchOnBoolExpr(const Expr *Cond,
296 llvm::BasicBlock *TrueBlock,
297 llvm::BasicBlock *FalseBlock) {
298 if (const ParenExpr *PE = dyn_cast<ParenExpr>(Cond))
299 return EmitBranchOnBoolExpr(PE->getSubExpr(), TrueBlock, FalseBlock);
300
301 if (const BinaryOperator *CondBOp = dyn_cast<BinaryOperator>(Cond)) {
302 // Handle X && Y in a condition.
303 if (CondBOp->getOpcode() == BinaryOperator::LAnd) {
304 // If we have "1 && X", simplify the code. "0 && X" would have constant
305 // folded if the case was simple enough.
306 if (ConstantFoldsToSimpleInteger(CondBOp->getLHS()) == 1) {
307 // br(1 && X) -> br(X).
308 return EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
309 }
310
311 // If we have "X && 1", simplify the code to use an uncond branch.
312 // "X && 0" would have been constant folded to 0.
313 if (ConstantFoldsToSimpleInteger(CondBOp->getRHS()) == 1) {
314 // br(X && 1) -> br(X).
315 return EmitBranchOnBoolExpr(CondBOp->getLHS(), TrueBlock, FalseBlock);
316 }
317
318 // Emit the LHS as a conditional. If the LHS conditional is false, we
319 // want to jump to the FalseBlock.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000320 llvm::BasicBlock *LHSTrue = createBasicBlock("land.lhs.true");
Chris Lattner31a09842008-11-12 08:04:58 +0000321 EmitBranchOnBoolExpr(CondBOp->getLHS(), LHSTrue, FalseBlock);
322 EmitBlock(LHSTrue);
323
324 EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
325 return;
326 } else if (CondBOp->getOpcode() == BinaryOperator::LOr) {
327 // If we have "0 || X", simplify the code. "1 || X" would have constant
328 // folded if the case was simple enough.
329 if (ConstantFoldsToSimpleInteger(CondBOp->getLHS()) == -1) {
330 // br(0 || X) -> br(X).
331 return EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
332 }
333
334 // If we have "X || 0", simplify the code to use an uncond branch.
335 // "X || 1" would have been constant folded to 1.
336 if (ConstantFoldsToSimpleInteger(CondBOp->getRHS()) == -1) {
337 // br(X || 0) -> br(X).
338 return EmitBranchOnBoolExpr(CondBOp->getLHS(), TrueBlock, FalseBlock);
339 }
340
341 // Emit the LHS as a conditional. If the LHS conditional is true, we
342 // want to jump to the TrueBlock.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000343 llvm::BasicBlock *LHSFalse = createBasicBlock("lor.lhs.false");
Chris Lattner31a09842008-11-12 08:04:58 +0000344 EmitBranchOnBoolExpr(CondBOp->getLHS(), TrueBlock, LHSFalse);
345 EmitBlock(LHSFalse);
346
347 EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
348 return;
349 }
Chris Lattner552f4c42008-11-12 08:13:36 +0000350 }
351
352 if (const UnaryOperator *CondUOp = dyn_cast<UnaryOperator>(Cond)) {
353 // br(!x, t, f) -> br(x, f, t)
354 if (CondUOp->getOpcode() == UnaryOperator::LNot)
355 return EmitBranchOnBoolExpr(CondUOp->getSubExpr(), FalseBlock, TrueBlock);
Chris Lattner31a09842008-11-12 08:04:58 +0000356 }
357
Daniel Dunbar09b14892008-11-12 10:30:32 +0000358 if (const ConditionalOperator *CondOp = dyn_cast<ConditionalOperator>(Cond)) {
359 // Handle ?: operator.
360
361 // Just ignore GNU ?: extension.
362 if (CondOp->getLHS()) {
363 // br(c ? x : y, t, f) -> br(c, br(x, t, f), br(y, t, f))
364 llvm::BasicBlock *LHSBlock = createBasicBlock("cond.true");
365 llvm::BasicBlock *RHSBlock = createBasicBlock("cond.false");
366 EmitBranchOnBoolExpr(CondOp->getCond(), LHSBlock, RHSBlock);
367 EmitBlock(LHSBlock);
368 EmitBranchOnBoolExpr(CondOp->getLHS(), TrueBlock, FalseBlock);
369 EmitBlock(RHSBlock);
370 EmitBranchOnBoolExpr(CondOp->getRHS(), TrueBlock, FalseBlock);
371 return;
372 }
373 }
374
Chris Lattner31a09842008-11-12 08:04:58 +0000375 // Emit the code with the fully general case.
376 llvm::Value *CondV = EvaluateExprAsBool(Cond);
377 Builder.CreateCondBr(CondV, TrueBlock, FalseBlock);
378}
379
Devang Patel88a981b2007-11-01 19:11:01 +0000380/// getCGRecordLayout - Return record layout info.
381const CGRecordLayout *CodeGenFunction::getCGRecordLayout(CodeGenTypes &CGT,
Chris Lattneraf319132008-02-05 06:55:31 +0000382 QualType Ty) {
Ted Kremenek35366a62009-07-17 17:50:17 +0000383 const RecordType *RTy = Ty->getAsRecordType();
Chris Lattneraf319132008-02-05 06:55:31 +0000384 assert (RTy && "Unexpected type. RecordType expected here.");
Devang Patelb84a06e2007-10-23 02:10:49 +0000385
Chris Lattneraf319132008-02-05 06:55:31 +0000386 return CGT.getCGRecordLayout(RTy->getDecl());
Devang Patelb84a06e2007-10-23 02:10:49 +0000387}
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000388
Daniel Dunbar488e9932008-08-16 00:56:44 +0000389/// ErrorUnsupported - Print out an error that codegen doesn't support the
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000390/// specified stmt yet.
Daniel Dunbar90df4b62008-09-04 03:43:08 +0000391void CodeGenFunction::ErrorUnsupported(const Stmt *S, const char *Type,
392 bool OmitOnError) {
393 CGM.ErrorUnsupported(S, Type, OmitOnError);
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000394}
395
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000396unsigned CodeGenFunction::GetIDForAddrOfLabel(const LabelStmt *L) {
397 // Use LabelIDs.size() as the new ID if one hasn't been assigned.
398 return LabelIDs.insert(std::make_pair(L, LabelIDs.size())).first->second;
399}
400
Chris Lattner88207c92009-04-21 17:59:23 +0000401void CodeGenFunction::EmitMemSetToZero(llvm::Value *DestPtr, QualType Ty) {
Owen Andersona1cf15f2009-07-14 23:10:40 +0000402 const llvm::Type *BP = VMContext.getPointerTypeUnqual(llvm::Type::Int8Ty);
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000403 if (DestPtr->getType() != BP)
404 DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
405
406 // Get size and alignment info for this aggregate.
407 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
408
Chris Lattner88207c92009-04-21 17:59:23 +0000409 // Don't bother emitting a zero-byte memset.
410 if (TypeInfo.first == 0)
411 return;
412
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000413 // FIXME: Handle variable sized types.
Owen Andersona1cf15f2009-07-14 23:10:40 +0000414 const llvm::Type *IntPtr = VMContext.getIntegerType(LLVMPointerWidth);
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000415
416 Builder.CreateCall4(CGM.getMemSetFn(), DestPtr,
Owen Anderson69243822009-07-13 04:10:07 +0000417 getLLVMContext().getNullValue(llvm::Type::Int8Ty),
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000418 // TypeInfo.first describes size in bits.
Owen Andersona1cf15f2009-07-14 23:10:40 +0000419 VMContext.getConstantInt(IntPtr, TypeInfo.first/8),
420 VMContext.getConstantInt(llvm::Type::Int32Ty,
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000421 TypeInfo.second/8));
422}
423
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000424void CodeGenFunction::EmitIndirectSwitches() {
425 llvm::BasicBlock *Default;
426
Daniel Dunbar76526a52008-08-04 17:24:44 +0000427 if (IndirectSwitches.empty())
428 return;
429
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000430 if (!LabelIDs.empty()) {
431 Default = getBasicBlockForLabel(LabelIDs.begin()->first);
432 } else {
433 // No possible targets for indirect goto, just emit an infinite
434 // loop.
Daniel Dunbar55e87422008-11-11 02:29:29 +0000435 Default = createBasicBlock("indirectgoto.loop", CurFn);
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000436 llvm::BranchInst::Create(Default, Default);
437 }
438
439 for (std::vector<llvm::SwitchInst*>::iterator i = IndirectSwitches.begin(),
440 e = IndirectSwitches.end(); i != e; ++i) {
441 llvm::SwitchInst *I = *i;
442
443 I->setSuccessor(0, Default);
444 for (std::map<const LabelStmt*,unsigned>::iterator LI = LabelIDs.begin(),
445 LE = LabelIDs.end(); LI != LE; ++LI) {
Owen Andersona1cf15f2009-07-14 23:10:40 +0000446 I->addCase(VMContext.getConstantInt(llvm::Type::Int32Ty,
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000447 LI->second),
448 getBasicBlockForLabel(LI->first));
449 }
450 }
451}
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000452
Daniel Dunbard286f052009-07-19 06:58:07 +0000453llvm::Value *CodeGenFunction::GetVLASize(const VariableArrayType *VAT) {
Anders Carlssondcc90d82008-12-12 07:19:02 +0000454 llvm::Value *&SizeEntry = VLASizeMap[VAT];
Anders Carlssondcc90d82008-12-12 07:19:02 +0000455
Anders Carlssonf666b772008-12-20 20:27:15 +0000456 assert(SizeEntry && "Did not emit size for type");
457 return SizeEntry;
458}
Anders Carlssondcc90d82008-12-12 07:19:02 +0000459
Daniel Dunbard286f052009-07-19 06:58:07 +0000460llvm::Value *CodeGenFunction::EmitVLASize(QualType Ty) {
Anders Carlsson60d35412008-12-20 20:46:34 +0000461 assert(Ty->isVariablyModifiedType() &&
462 "Must pass variably modified type to EmitVLASizes!");
Anders Carlssonf666b772008-12-20 20:27:15 +0000463
Daniel Dunbard286f052009-07-19 06:58:07 +0000464 EnsureInsertPoint();
465
Anders Carlsson60d35412008-12-20 20:46:34 +0000466 if (const VariableArrayType *VAT = getContext().getAsVariableArrayType(Ty)) {
467 llvm::Value *&SizeEntry = VLASizeMap[VAT];
468
Anders Carlssonfcdbb932008-12-20 21:51:53 +0000469 if (!SizeEntry) {
470 // Get the element size;
471 llvm::Value *ElemSize;
Anders Carlsson60d35412008-12-20 20:46:34 +0000472
Anders Carlssonfcdbb932008-12-20 21:51:53 +0000473 QualType ElemTy = VAT->getElementType();
Anders Carlsson96f21472009-02-05 19:43:10 +0000474
475 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
476
Anders Carlssonfcdbb932008-12-20 21:51:53 +0000477 if (ElemTy->isVariableArrayType())
478 ElemSize = EmitVLASize(ElemTy);
479 else {
Owen Andersona1cf15f2009-07-14 23:10:40 +0000480 ElemSize = VMContext.getConstantInt(SizeTy,
Anders Carlssonfcdbb932008-12-20 21:51:53 +0000481 getContext().getTypeSize(ElemTy) / 8);
482 }
Anders Carlsson60d35412008-12-20 20:46:34 +0000483
Anders Carlssonfcdbb932008-12-20 21:51:53 +0000484 llvm::Value *NumElements = EmitScalarExpr(VAT->getSizeExpr());
Anders Carlsson96f21472009-02-05 19:43:10 +0000485 NumElements = Builder.CreateIntCast(NumElements, SizeTy, false, "tmp");
486
Anders Carlssonfcdbb932008-12-20 21:51:53 +0000487 SizeEntry = Builder.CreateMul(ElemSize, NumElements);
Anders Carlsson60d35412008-12-20 20:46:34 +0000488 }
489
Anders Carlsson60d35412008-12-20 20:46:34 +0000490 return SizeEntry;
Eli Friedmanbdad6b62009-05-29 19:23:46 +0000491 } else if (const ArrayType *AT = dyn_cast<ArrayType>(Ty)) {
492 EmitVLASize(AT->getElementType());
Ted Kremenek35366a62009-07-17 17:50:17 +0000493 } else if (const PointerType *PT = Ty->getAsPointerType())
Anders Carlsson60d35412008-12-20 20:46:34 +0000494 EmitVLASize(PT->getPointeeType());
Anders Carlssonf666b772008-12-20 20:27:15 +0000495 else {
Anders Carlsson60d35412008-12-20 20:46:34 +0000496 assert(0 && "unknown VM type!");
Anders Carlssondcc90d82008-12-12 07:19:02 +0000497 }
Anders Carlsson60d35412008-12-20 20:46:34 +0000498
499 return 0;
Anders Carlssondcc90d82008-12-12 07:19:02 +0000500}
Eli Friedman4fd0aa52009-01-20 17:46:04 +0000501
502llvm::Value* CodeGenFunction::EmitVAListRef(const Expr* E) {
503 if (CGM.getContext().getBuiltinVaListType()->isArrayType()) {
504 return EmitScalarExpr(E);
505 }
506 return EmitLValue(E).getAddress();
507}
Anders Carlsson6ccc4762009-02-07 22:53:43 +0000508
Anders Carlsson6fc55912009-02-08 03:22:36 +0000509void CodeGenFunction::PushCleanupBlock(llvm::BasicBlock *CleanupBlock)
Anders Carlsson6ccc4762009-02-07 22:53:43 +0000510{
Anders Carlsson6ccc4762009-02-07 22:53:43 +0000511 CleanupEntries.push_back(CleanupEntry(CleanupBlock));
Anders Carlsson6ccc4762009-02-07 22:53:43 +0000512}
Anders Carlssonc71c8452009-02-07 23:50:39 +0000513
514void CodeGenFunction::EmitCleanupBlocks(size_t OldCleanupStackSize)
515{
516 assert(CleanupEntries.size() >= OldCleanupStackSize &&
517 "Cleanup stack mismatch!");
518
519 while (CleanupEntries.size() > OldCleanupStackSize)
520 EmitCleanupBlock();
521}
522
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000523CodeGenFunction::CleanupBlockInfo CodeGenFunction::PopCleanupBlock()
Anders Carlssonc71c8452009-02-07 23:50:39 +0000524{
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000525 CleanupEntry &CE = CleanupEntries.back();
526
527 llvm::BasicBlock *CleanupBlock = CE.CleanupBlock;
528
529 std::vector<llvm::BasicBlock *> Blocks;
530 std::swap(Blocks, CE.Blocks);
531
532 std::vector<llvm::BranchInst *> BranchFixups;
533 std::swap(BranchFixups, CE.BranchFixups);
534
535 CleanupEntries.pop_back();
536
Anders Carlssonad9d00e2009-02-08 22:45:15 +0000537 // Check if any branch fixups pointed to the scope we just popped. If so,
538 // we can remove them.
539 for (size_t i = 0, e = BranchFixups.size(); i != e; ++i) {
540 llvm::BasicBlock *Dest = BranchFixups[i]->getSuccessor(0);
541 BlockScopeMap::iterator I = BlockScopes.find(Dest);
Anders Carlssond66a9f92009-02-08 03:55:35 +0000542
Anders Carlssonad9d00e2009-02-08 22:45:15 +0000543 if (I == BlockScopes.end())
544 continue;
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000545
Anders Carlssonad9d00e2009-02-08 22:45:15 +0000546 assert(I->second <= CleanupEntries.size() && "Invalid branch fixup!");
Anders Carlssond66a9f92009-02-08 03:55:35 +0000547
Anders Carlssonad9d00e2009-02-08 22:45:15 +0000548 if (I->second == CleanupEntries.size()) {
549 // We don't need to do this branch fixup.
550 BranchFixups[i] = BranchFixups.back();
551 BranchFixups.pop_back();
552 i--;
553 e--;
554 continue;
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000555 }
556 }
Anders Carlssond66a9f92009-02-08 03:55:35 +0000557
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000558 llvm::BasicBlock *SwitchBlock = 0;
559 llvm::BasicBlock *EndBlock = 0;
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000560 if (!BranchFixups.empty()) {
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000561 SwitchBlock = createBasicBlock("cleanup.switch");
562 EndBlock = createBasicBlock("cleanup.end");
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000563
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000564 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
Anders Carlsson0ae7b2b2009-03-17 05:53:35 +0000565
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000566 Builder.SetInsertPoint(SwitchBlock);
567
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000568 llvm::Value *DestCodePtr = CreateTempAlloca(llvm::Type::Int32Ty,
569 "cleanup.dst");
570 llvm::Value *DestCode = Builder.CreateLoad(DestCodePtr, "tmp");
571
572 // Create a switch instruction to determine where to jump next.
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000573 llvm::SwitchInst *SI = Builder.CreateSwitch(DestCode, EndBlock,
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000574 BranchFixups.size());
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000575
Anders Carlsson46831a92009-02-08 22:13:37 +0000576 // Restore the current basic block (if any)
Anders Carlsson0ae7b2b2009-03-17 05:53:35 +0000577 if (CurBB) {
Anders Carlsson46831a92009-02-08 22:13:37 +0000578 Builder.SetInsertPoint(CurBB);
Anders Carlsson0ae7b2b2009-03-17 05:53:35 +0000579
580 // If we had a current basic block, we also need to emit an instruction
581 // to initialize the cleanup destination.
Owen Anderson69243822009-07-13 04:10:07 +0000582 Builder.CreateStore(getLLVMContext().getNullValue(llvm::Type::Int32Ty),
Anders Carlsson0ae7b2b2009-03-17 05:53:35 +0000583 DestCodePtr);
584 } else
Anders Carlsson46831a92009-02-08 22:13:37 +0000585 Builder.ClearInsertionPoint();
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000586
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000587 for (size_t i = 0, e = BranchFixups.size(); i != e; ++i) {
588 llvm::BranchInst *BI = BranchFixups[i];
589 llvm::BasicBlock *Dest = BI->getSuccessor(0);
590
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000591 // Fixup the branch instruction to point to the cleanup block.
592 BI->setSuccessor(0, CleanupBlock);
Anders Carlssond66a9f92009-02-08 03:55:35 +0000593
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000594 if (CleanupEntries.empty()) {
Anders Carlssoncc899202009-02-08 22:46:50 +0000595 llvm::ConstantInt *ID;
596
597 // Check if we already have a destination for this block.
598 if (Dest == SI->getDefaultDest())
Owen Andersona1cf15f2009-07-14 23:10:40 +0000599 ID = VMContext.getConstantInt(llvm::Type::Int32Ty, 0);
Anders Carlssoncc899202009-02-08 22:46:50 +0000600 else {
601 ID = SI->findCaseDest(Dest);
602 if (!ID) {
603 // No code found, get a new unique one by using the number of
604 // switch successors.
Owen Andersona1cf15f2009-07-14 23:10:40 +0000605 ID = VMContext.getConstantInt(llvm::Type::Int32Ty,
Anders Carlssoncc899202009-02-08 22:46:50 +0000606 SI->getNumSuccessors());
607 SI->addCase(ID, Dest);
608 }
609 }
610
611 // Store the jump destination before the branch instruction.
612 new llvm::StoreInst(ID, DestCodePtr, BI);
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000613 } else {
614 // We need to jump through another cleanup block. Create a pad block
615 // with a branch instruction that jumps to the final destination and
616 // add it as a branch fixup to the current cleanup scope.
617
618 // Create the pad block.
619 llvm::BasicBlock *CleanupPad = createBasicBlock("cleanup.pad", CurFn);
Anders Carlssoncc899202009-02-08 22:46:50 +0000620
621 // Create a unique case ID.
Owen Andersona1cf15f2009-07-14 23:10:40 +0000622 llvm::ConstantInt *ID = VMContext.getConstantInt(llvm::Type::Int32Ty,
Anders Carlssoncc899202009-02-08 22:46:50 +0000623 SI->getNumSuccessors());
624
625 // Store the jump destination before the branch instruction.
626 new llvm::StoreInst(ID, DestCodePtr, BI);
627
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000628 // Add it as the destination.
Anders Carlssoncc899202009-02-08 22:46:50 +0000629 SI->addCase(ID, CleanupPad);
Anders Carlsson1093c2c2009-02-08 01:23:05 +0000630
631 // Create the branch to the final destination.
632 llvm::BranchInst *BI = llvm::BranchInst::Create(Dest);
633 CleanupPad->getInstList().push_back(BI);
634
635 // And add it as a branch fixup.
636 CleanupEntries.back().BranchFixups.push_back(BI);
637 }
638 }
639 }
Anders Carlssond66a9f92009-02-08 03:55:35 +0000640
Anders Carlssonbd6fa3d2009-02-08 00:16:35 +0000641 // Remove all blocks from the block scope map.
642 for (size_t i = 0, e = Blocks.size(); i != e; ++i) {
643 assert(BlockScopes.count(Blocks[i]) &&
644 "Did not find block in scope map!");
645
646 BlockScopes.erase(Blocks[i]);
647 }
Anders Carlssond66a9f92009-02-08 03:55:35 +0000648
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000649 return CleanupBlockInfo(CleanupBlock, SwitchBlock, EndBlock);
Anders Carlssond66a9f92009-02-08 03:55:35 +0000650}
651
652void CodeGenFunction::EmitCleanupBlock()
653{
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000654 CleanupBlockInfo Info = PopCleanupBlock();
Anders Carlssond66a9f92009-02-08 03:55:35 +0000655
Anders Carlssoneb6437a2009-05-31 00:33:20 +0000656 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
657 if (CurBB && !CurBB->getTerminator() &&
658 Info.CleanupBlock->getNumUses() == 0) {
659 CurBB->getInstList().splice(CurBB->end(), Info.CleanupBlock->getInstList());
660 delete Info.CleanupBlock;
661 } else
662 EmitBlock(Info.CleanupBlock);
Anders Carlssond66a9f92009-02-08 03:55:35 +0000663
Anders Carlssonbb66f9f2009-02-08 07:46:24 +0000664 if (Info.SwitchBlock)
665 EmitBlock(Info.SwitchBlock);
666 if (Info.EndBlock)
667 EmitBlock(Info.EndBlock);
Anders Carlssond66a9f92009-02-08 03:55:35 +0000668}
669
Anders Carlsson87eaf172009-02-08 00:50:42 +0000670void CodeGenFunction::AddBranchFixup(llvm::BranchInst *BI)
671{
672 assert(!CleanupEntries.empty() &&
673 "Trying to add branch fixup without cleanup block!");
674
Mike Stumpf5408fe2009-05-16 07:57:57 +0000675 // FIXME: We could be more clever here and check if there's already a branch
676 // fixup for this destination and recycle it.
Anders Carlsson87eaf172009-02-08 00:50:42 +0000677 CleanupEntries.back().BranchFixups.push_back(BI);
678}
679
680void CodeGenFunction::EmitBranchThroughCleanup(llvm::BasicBlock *Dest)
681{
Anders Carlsson46831a92009-02-08 22:13:37 +0000682 if (!HaveInsertPoint())
683 return;
684
Anders Carlsson87eaf172009-02-08 00:50:42 +0000685 llvm::BranchInst* BI = Builder.CreateBr(Dest);
686
Anders Carlsson46831a92009-02-08 22:13:37 +0000687 Builder.ClearInsertionPoint();
688
Anders Carlsson87eaf172009-02-08 00:50:42 +0000689 // The stack is empty, no need to do any cleanup.
690 if (CleanupEntries.empty())
691 return;
692
693 if (!Dest->getParent()) {
694 // We are trying to branch to a block that hasn't been inserted yet.
695 AddBranchFixup(BI);
696 return;
697 }
698
699 BlockScopeMap::iterator I = BlockScopes.find(Dest);
700 if (I == BlockScopes.end()) {
701 // We are trying to jump to a block that is outside of any cleanup scope.
702 AddBranchFixup(BI);
703 return;
704 }
705
706 assert(I->second < CleanupEntries.size() &&
707 "Trying to branch into cleanup region");
708
709 if (I->second == CleanupEntries.size() - 1) {
710 // We have a branch to a block in the same scope.
711 return;
712 }
713
714 AddBranchFixup(BI);
715}