blob: 6b731917ed6a8e2e1f8b799bdf38e510ae515323 [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"
Nate Begeman440b4562008-03-07 20:04:22 +000019#include "llvm/CallingConv.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/Constants.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
23#include "llvm/Analysis/Verifier.h"
Devang Pateld9363c32007-09-28 21:49:18 +000024#include "llvm/Support/CFG.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025using namespace clang;
26using namespace CodeGen;
27
28CodeGenFunction::CodeGenFunction(CodeGenModule &cgm)
Devang Patelc049e4f2007-10-08 20:57:48 +000029 : CGM(cgm), Target(CGM.getContext().Target), SwitchInsn(NULL),
Chris Lattner41110242008-06-17 18:05:57 +000030 CaseRangeBlock(NULL) {
31 LLVMIntTy = ConvertType(getContext().IntTy);
32 LLVMPointerWidth = Target.getPointerWidth(0);
33}
Reid Spencer5f016e22007-07-11 17:01:13 +000034
35ASTContext &CodeGenFunction::getContext() const {
36 return CGM.getContext();
37}
38
39
40llvm::BasicBlock *CodeGenFunction::getBasicBlockForLabel(const LabelStmt *S) {
41 llvm::BasicBlock *&BB = LabelMap[S];
42 if (BB) return BB;
43
44 // Create, but don't insert, the new block.
Gabor Greif984d0b42008-04-06 20:42:52 +000045 return BB = llvm::BasicBlock::Create(S->getName());
Reid Spencer5f016e22007-07-11 17:01:13 +000046}
47
Lauro Ramos Venancio81373352008-02-26 21:41:45 +000048llvm::Constant *
Steve Naroff248a7532008-04-15 22:42:06 +000049CodeGenFunction::GetAddrOfStaticLocalVar(const VarDecl *BVD) {
Lauro Ramos Venancio81373352008-02-26 21:41:45 +000050 return cast<llvm::Constant>(LocalDeclMap[BVD]);
51}
Reid Spencer5f016e22007-07-11 17:01:13 +000052
53const llvm::Type *CodeGenFunction::ConvertType(QualType T) {
54 return CGM.getTypes().ConvertType(T);
55}
56
Chris Lattner41110242008-06-17 18:05:57 +000057bool CodeGenFunction::isObjCPointerType(QualType T) {
58 // All Objective-C types are pointers.
59 return T->isObjCInterfaceType() ||
60 T->isObjCQualifiedInterfaceType() || T->isObjCQualifiedIdType();
61}
62
Reid Spencer5f016e22007-07-11 17:01:13 +000063bool CodeGenFunction::hasAggregateLLVMType(QualType T) {
Chris Lattner41110242008-06-17 18:05:57 +000064 return !isObjCPointerType(T) &&!T->isRealType() && !T->isPointerLikeType() &&
65 !T->isVoidType() && !T->isVectorType() && !T->isFunctionType();
Reid Spencer5f016e22007-07-11 17:01:13 +000066}
67
Chris Lattner41110242008-06-17 18:05:57 +000068void CodeGenFunction::GenerateFunction(const Stmt *Body) {
Chris Lattner391d77a2008-03-30 23:03:07 +000069 // Emit the function body.
Chris Lattner41110242008-06-17 18:05:57 +000070 EmitStmt(Body);
Daniel Dunbar0ffb1252008-08-04 16:51:22 +000071
72 // Finish emission of indirect switches.
73 EmitIndirectSwitches();
74
Sanjiv Guptaaf994172008-07-04 11:04:26 +000075 // Emit debug descriptor for function end.
76 CGDebugInfo *DI = CGM.getDebugInfo();
77 if (DI) {
78 const CompoundStmt* s = dyn_cast<CompoundStmt>(Body);
79 if (s && s->getRBracLoc().isValid()) {
80 DI->setLocation(s->getRBracLoc());
81 }
82 DI->EmitRegionEnd(CurFn, Builder);
83 }
84
Chris Lattner391d77a2008-03-30 23:03:07 +000085 // Emit a return for code that falls off the end. If insert point
86 // is a dummy block with no predecessors then remove the block itself.
87 llvm::BasicBlock *BB = Builder.GetInsertBlock();
88 if (isDummyBlock(BB))
89 BB->eraseFromParent();
90 else {
Devang Pateld9363c32007-09-28 21:49:18 +000091 // FIXME: if this is C++ main, this should return 0.
92 if (CurFn->getReturnType() == llvm::Type::VoidTy)
93 Builder.CreateRetVoid();
94 else
95 Builder.CreateRet(llvm::UndefValue::get(CurFn->getReturnType()));
96 }
Chris Lattnerda138702007-07-16 21:28:45 +000097 assert(BreakContinueStack.empty() &&
98 "mismatched push/pop in break/continue stack!");
99
Chris Lattner5a2fa142007-12-02 06:32:24 +0000100 // Remove the AllocaInsertPt instruction, which is just a convenience for us.
101 AllocaInsertPt->eraseFromParent();
102 AllocaInsertPt = 0;
103
Reid Spencer5f016e22007-07-11 17:01:13 +0000104 // Verify that the function is well formed.
Chris Lattner391d77a2008-03-30 23:03:07 +0000105 assert(!verifyFunction(*CurFn) && "Generated function is not well formed.");
Reid Spencer5f016e22007-07-11 17:01:13 +0000106}
107
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000108void CodeGenFunction::GenerateCode(const FunctionDecl *FD,
109 llvm::Function *Fn) {
Chris Lattner41110242008-06-17 18:05:57 +0000110 CurFuncDecl = FD;
111 FnRetTy = FD->getResultType();
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000112 CurFn = Fn;
Chris Lattner41110242008-06-17 18:05:57 +0000113 assert(CurFn->isDeclaration() && "Function already has body?");
114
115 llvm::BasicBlock *EntryBB = llvm::BasicBlock::Create("entry", CurFn);
116
117 // Create a marker to make it easy to insert allocas into the entryblock
118 // later. Don't create this with the builder, because we don't want it
119 // folded.
120 llvm::Value *Undef = llvm::UndefValue::get(llvm::Type::Int32Ty);
121 AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::Int32Ty, "allocapt",
122 EntryBB);
123
124 Builder.SetInsertPoint(EntryBB);
125
Sanjiv Guptaaf994172008-07-04 11:04:26 +0000126 // Emit subprogram debug descriptor.
127 CGDebugInfo *DI = CGM.getDebugInfo();
128 if (DI) {
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);
134 }
135
Chris Lattner41110242008-06-17 18:05:57 +0000136 // Emit allocs for param decls. Give the LLVM Argument nodes names.
137 llvm::Function::arg_iterator AI = CurFn->arg_begin();
138
139 // Name the struct return argument.
140 if (hasAggregateLLVMType(FD->getResultType())) {
141 AI->setName("agg.result");
142 ++AI;
143 }
144
145 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i, ++AI) {
146 assert(AI != CurFn->arg_end() && "Argument mismatch!");
147 EmitParmDecl(*FD->getParamDecl(i), AI);
148 }
149 GenerateFunction(FD->getBody());
150}
151
Devang Pateld9363c32007-09-28 21:49:18 +0000152/// isDummyBlock - Return true if BB is an empty basic block
153/// with no predecessors.
154bool CodeGenFunction::isDummyBlock(const llvm::BasicBlock *BB) {
Chris Lattner1e9660e2008-07-25 23:40:10 +0000155 if (BB->empty() && pred_begin(BB) == pred_end(BB) && !BB->hasName())
Devang Pateld9363c32007-09-28 21:49:18 +0000156 return true;
157 return false;
158}
159
Devang Patel51b09f22007-10-04 23:45:31 +0000160/// StartBlock - Start new block named N. If insert block is a dummy block
161/// then reuse it.
162void CodeGenFunction::StartBlock(const char *N) {
163 llvm::BasicBlock *BB = Builder.GetInsertBlock();
164 if (!isDummyBlock(BB))
Gabor Greif984d0b42008-04-06 20:42:52 +0000165 EmitBlock(llvm::BasicBlock::Create(N));
Devang Patel51b09f22007-10-04 23:45:31 +0000166 else
167 BB->setName(N);
168}
169
Devang Patel88a981b2007-11-01 19:11:01 +0000170/// getCGRecordLayout - Return record layout info.
171const CGRecordLayout *CodeGenFunction::getCGRecordLayout(CodeGenTypes &CGT,
Chris Lattneraf319132008-02-05 06:55:31 +0000172 QualType Ty) {
173 const RecordType *RTy = Ty->getAsRecordType();
174 assert (RTy && "Unexpected type. RecordType expected here.");
Devang Patelb84a06e2007-10-23 02:10:49 +0000175
Chris Lattneraf319132008-02-05 06:55:31 +0000176 return CGT.getCGRecordLayout(RTy->getDecl());
Devang Patelb84a06e2007-10-23 02:10:49 +0000177}
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000178
179/// WarnUnsupported - Print out a warning that codegen doesn't support the
180/// specified stmt yet.
Chris Lattnerdc4d2802007-12-02 01:49:16 +0000181void CodeGenFunction::WarnUnsupported(const Stmt *S, const char *Type) {
Chris Lattner2c8569d2007-12-02 07:19:18 +0000182 CGM.WarnUnsupported(S, Type);
Chris Lattnerdc5e8262007-12-02 01:43:38 +0000183}
184
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000185unsigned CodeGenFunction::GetIDForAddrOfLabel(const LabelStmt *L) {
186 // Use LabelIDs.size() as the new ID if one hasn't been assigned.
187 return LabelIDs.insert(std::make_pair(L, LabelIDs.size())).first->second;
188}
189
190void CodeGenFunction::EmitIndirectSwitches() {
191 llvm::BasicBlock *Default;
192
Daniel Dunbar76526a52008-08-04 17:24:44 +0000193 if (IndirectSwitches.empty())
194 return;
195
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000196 if (!LabelIDs.empty()) {
197 Default = getBasicBlockForLabel(LabelIDs.begin()->first);
198 } else {
199 // No possible targets for indirect goto, just emit an infinite
200 // loop.
201 Default = llvm::BasicBlock::Create("indirectgoto.loop", CurFn);
202 llvm::BranchInst::Create(Default, Default);
203 }
204
205 for (std::vector<llvm::SwitchInst*>::iterator i = IndirectSwitches.begin(),
206 e = IndirectSwitches.end(); i != e; ++i) {
207 llvm::SwitchInst *I = *i;
208
209 I->setSuccessor(0, Default);
210 for (std::map<const LabelStmt*,unsigned>::iterator LI = LabelIDs.begin(),
211 LE = LabelIDs.end(); LI != LE; ++LI) {
212 I->addCase(llvm::ConstantInt::get(llvm::Type::Int32Ty,
213 LI->second),
214 getBasicBlockForLabel(LI->first));
215 }
216 }
217}