blob: b182ecf055f8e185c9a17f85d11592e05a340df8 [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 Lattnerda138702007-07-16 21:28:45 +000082 assert(BreakContinueStack.empty() &&
83 "mismatched push/pop in break/continue stack!");
Daniel Dunbar5ca20842008-09-09 21:00:17 +000084
Daniel Dunbarb01d1912008-09-27 07:15:59 +000085 // Emit function epilog (to return). This has the nice side effect
86 // of also automatically handling code that falls off the end.
87 EmitBlock(ReturnBlock);
Daniel Dunbar17b708d2008-09-09 23:27:19 +000088 EmitFunctionEpilog(FnRetTy, ReturnValue);
Daniel Dunbar5ca20842008-09-09 21:00:17 +000089
Chris Lattner5a2fa142007-12-02 06:32:24 +000090 // Remove the AllocaInsertPt instruction, which is just a convenience for us.
91 AllocaInsertPt->eraseFromParent();
92 AllocaInsertPt = 0;
93
Reid Spencer5f016e22007-07-11 17:01:13 +000094 // Verify that the function is well formed.
Daniel Dunbarb43f3922008-09-17 21:13:22 +000095 if (verifyFunction(*CurFn, llvm::PrintMessageAction)) {
96 CurFn->dump();
97 assert(0 && "Function failed verification!");
98 }
Reid Spencer5f016e22007-07-11 17:01:13 +000099}
100
Daniel Dunbar7c086512008-09-09 23:14:03 +0000101void CodeGenFunction::StartFunction(const Decl *D, QualType RetTy,
102 llvm::Function *Fn,
103 const FunctionArgList &Args) {
104 CurFuncDecl = D;
105 FnRetTy = RetTy;
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000106 CurFn = Fn;
Chris Lattner41110242008-06-17 18:05:57 +0000107 assert(CurFn->isDeclaration() && "Function already has body?");
108
109 llvm::BasicBlock *EntryBB = llvm::BasicBlock::Create("entry", CurFn);
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000110
Chris Lattner41110242008-06-17 18:05:57 +0000111 // Create a marker to make it easy to insert allocas into the entryblock
112 // later. Don't create this with the builder, because we don't want it
113 // folded.
114 llvm::Value *Undef = llvm::UndefValue::get(llvm::Type::Int32Ty);
115 AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::Int32Ty, "allocapt",
116 EntryBB);
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000117
Daniel Dunbarb01d1912008-09-27 07:15:59 +0000118 ReturnBlock = llvm::BasicBlock::Create("return");
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000119 ReturnValue = 0;
Daniel Dunbar7c086512008-09-09 23:14:03 +0000120 if (!RetTy->isVoidType())
121 ReturnValue = CreateTempAlloca(ConvertType(RetTy), "retval");
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000122
Chris Lattner41110242008-06-17 18:05:57 +0000123 Builder.SetInsertPoint(EntryBB);
124
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000125 // Emit subprogram debug descriptor.
Daniel Dunbar7c086512008-09-09 23:14:03 +0000126 // FIXME: The cast here is a huge hack.
127 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
128 if (CGDebugInfo *DI = CGM.getDebugInfo()) {
129 CompoundStmt* body = dyn_cast<CompoundStmt>(FD->getBody());
130 if (body && body->getLBracLoc().isValid()) {
131 DI->setLocation(body->getLBracLoc());
132 }
133 DI->EmitFunctionStart(FD, 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 Dunbar7c086512008-09-09 23:14:03 +0000152 StartFunction(FD, FD->getResultType(), Fn, Args);
153
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000154 EmitStmt(FD->getBody());
155
156 const CompoundStmt *S = dyn_cast<CompoundStmt>(FD->getBody());
157 if (S) {
158 FinishFunction(S->getRBracLoc());
159 } else {
160 FinishFunction();
161 }
Chris Lattner41110242008-06-17 18:05:57 +0000162}
163
Devang Pateld9363c32007-09-28 21:49:18 +0000164/// isDummyBlock - Return true if BB is an empty basic block
165/// with no predecessors.
166bool CodeGenFunction::isDummyBlock(const llvm::BasicBlock *BB) {
Chris Lattner1e9660e2008-07-25 23:40:10 +0000167 if (BB->empty() && pred_begin(BB) == pred_end(BB) && !BB->hasName())
Devang Pateld9363c32007-09-28 21:49:18 +0000168 return true;
169 return false;
170}
171
Devang Patel51b09f22007-10-04 23:45:31 +0000172/// StartBlock - Start new block named N. If insert block is a dummy block
173/// then reuse it.
174void CodeGenFunction::StartBlock(const char *N) {
175 llvm::BasicBlock *BB = Builder.GetInsertBlock();
176 if (!isDummyBlock(BB))
Gabor Greif984d0b42008-04-06 20:42:52 +0000177 EmitBlock(llvm::BasicBlock::Create(N));
Devang Patel51b09f22007-10-04 23:45:31 +0000178 else
179 BB->setName(N);
180}
181
Devang Patel88a981b2007-11-01 19:11:01 +0000182/// getCGRecordLayout - Return record layout info.
183const CGRecordLayout *CodeGenFunction::getCGRecordLayout(CodeGenTypes &CGT,
Chris Lattneraf319132008-02-05 06:55:31 +0000184 QualType Ty) {
185 const RecordType *RTy = Ty->getAsRecordType();
186 assert (RTy && "Unexpected type. RecordType expected here.");
Devang Patelb84a06e2007-10-23 02:10:49 +0000187
Chris Lattneraf319132008-02-05 06:55:31 +0000188 return CGT.getCGRecordLayout(RTy->getDecl());
Devang Patelb84a06e2007-10-23 02:10:49 +0000189}
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000190
Daniel Dunbar488e9932008-08-16 00:56:44 +0000191/// ErrorUnsupported - Print out an error that codegen doesn't support the
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000192/// specified stmt yet.
Daniel Dunbar90df4b62008-09-04 03:43:08 +0000193void CodeGenFunction::ErrorUnsupported(const Stmt *S, const char *Type,
194 bool OmitOnError) {
195 CGM.ErrorUnsupported(S, Type, OmitOnError);
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000196}
197
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000198unsigned CodeGenFunction::GetIDForAddrOfLabel(const LabelStmt *L) {
199 // Use LabelIDs.size() as the new ID if one hasn't been assigned.
200 return LabelIDs.insert(std::make_pair(L, LabelIDs.size())).first->second;
201}
202
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000203void CodeGenFunction::EmitMemSetToZero(llvm::Value *DestPtr, QualType Ty)
204{
205 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
206 if (DestPtr->getType() != BP)
207 DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
208
209 // Get size and alignment info for this aggregate.
210 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
211
212 // FIXME: Handle variable sized types.
213 const llvm::Type *IntPtr = llvm::IntegerType::get(LLVMPointerWidth);
214
215 Builder.CreateCall4(CGM.getMemSetFn(), DestPtr,
216 llvm::ConstantInt::getNullValue(llvm::Type::Int8Ty),
217 // TypeInfo.first describes size in bits.
218 llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
219 llvm::ConstantInt::get(llvm::Type::Int32Ty,
220 TypeInfo.second/8));
221}
222
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000223void CodeGenFunction::EmitIndirectSwitches() {
224 llvm::BasicBlock *Default;
225
Daniel Dunbar76526a52008-08-04 17:24:44 +0000226 if (IndirectSwitches.empty())
227 return;
228
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000229 if (!LabelIDs.empty()) {
230 Default = getBasicBlockForLabel(LabelIDs.begin()->first);
231 } else {
232 // No possible targets for indirect goto, just emit an infinite
233 // loop.
234 Default = llvm::BasicBlock::Create("indirectgoto.loop", CurFn);
235 llvm::BranchInst::Create(Default, Default);
236 }
237
238 for (std::vector<llvm::SwitchInst*>::iterator i = IndirectSwitches.begin(),
239 e = IndirectSwitches.end(); i != e; ++i) {
240 llvm::SwitchInst *I = *i;
241
242 I->setSuccessor(0, Default);
243 for (std::map<const LabelStmt*,unsigned>::iterator LI = LabelIDs.begin(),
244 LE = LabelIDs.end(); LI != LE; ++LI) {
245 I->addCase(llvm::ConstantInt::get(llvm::Type::Int32Ty,
246 LI->second),
247 getBasicBlockForLabel(LI->first));
248 }
249 }
250}