Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1 | //===--- CodeGenFunction.cpp - Emit LLVM Code from ASTs for a Function ----===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 959e5be | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 7 | // |
| 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 Friedman | 9bc7c8d | 2008-05-22 01:40:10 +0000 | [diff] [blame] | 16 | #include "CGDebugInfo.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 17 | #include "clang/Basic/TargetInfo.h" |
Daniel Dunbar | eee5cd1 | 2008-08-11 05:00:27 +0000 | [diff] [blame] | 18 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | 64789f8 | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 19 | #include "clang/AST/Decl.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/Verifier.h" |
Devang Patel | 9729936 | 2007-09-28 21:49:18 +0000 | [diff] [blame] | 21 | #include "llvm/Support/CFG.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 22 | using namespace clang; |
| 23 | using namespace CodeGen; |
| 24 | |
| 25 | CodeGenFunction::CodeGenFunction(CodeGenModule &cgm) |
Devang Patel | 347ca32 | 2007-10-08 20:57:48 +0000 | [diff] [blame] | 26 | : CGM(cgm), Target(CGM.getContext().Target), SwitchInsn(NULL), |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 27 | CaseRangeBlock(NULL) { |
| 28 | LLVMIntTy = ConvertType(getContext().IntTy); |
| 29 | LLVMPointerWidth = Target.getPointerWidth(0); |
| 30 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 31 | |
| 32 | ASTContext &CodeGenFunction::getContext() const { |
| 33 | return CGM.getContext(); |
| 34 | } |
| 35 | |
| 36 | |
| 37 | llvm::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 Greif | 815e2c1 | 2008-04-06 20:42:52 +0000 | [diff] [blame] | 42 | return BB = llvm::BasicBlock::Create(S->getName()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 43 | } |
| 44 | |
Lauro Ramos Venancio | 934fb02 | 2008-02-26 21:41:45 +0000 | [diff] [blame] | 45 | llvm::Constant * |
Steve Naroff | 72a6ebc | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 46 | CodeGenFunction::GetAddrOfStaticLocalVar(const VarDecl *BVD) { |
Lauro Ramos Venancio | 934fb02 | 2008-02-26 21:41:45 +0000 | [diff] [blame] | 47 | return cast<llvm::Constant>(LocalDeclMap[BVD]); |
| 48 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 49 | |
Anders Carlsson | 75d8673 | 2008-09-11 09:15:33 +0000 | [diff] [blame] | 50 | llvm::Value *CodeGenFunction::GetAddrOfLocalVar(const VarDecl *VD) |
| 51 | { |
| 52 | return LocalDeclMap[VD]; |
| 53 | } |
| 54 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 55 | const llvm::Type *CodeGenFunction::ConvertType(QualType T) { |
| 56 | return CGM.getTypes().ConvertType(T); |
| 57 | } |
| 58 | |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 59 | bool CodeGenFunction::isObjCPointerType(QualType T) { |
| 60 | // All Objective-C types are pointers. |
| 61 | return T->isObjCInterfaceType() || |
| 62 | T->isObjCQualifiedInterfaceType() || T->isObjCQualifiedIdType(); |
| 63 | } |
| 64 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 65 | bool CodeGenFunction::hasAggregateLLVMType(QualType T) { |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 66 | return !isObjCPointerType(T) &&!T->isRealType() && !T->isPointerLikeType() && |
| 67 | !T->isVoidType() && !T->isVectorType() && !T->isFunctionType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Daniel Dunbar | 6b57d43 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 70 | void CodeGenFunction::FinishFunction(SourceLocation EndLoc) { |
Daniel Dunbar | 879788d | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 71 | // Finish emission of indirect switches. |
| 72 | EmitIndirectSwitches(); |
| 73 | |
Sanjiv Gupta | 1d340eb | 2008-07-04 11:04:26 +0000 | [diff] [blame] | 74 | // Emit debug descriptor for function end. |
Daniel Dunbar | 9fb751f | 2008-09-09 21:00:17 +0000 | [diff] [blame] | 75 | if (CGDebugInfo *DI = CGM.getDebugInfo()) { |
Daniel Dunbar | 6fc1f97 | 2008-10-17 16:15:48 +0000 | [diff] [blame^] | 76 | DI->setLocation(EndLoc); |
Sanjiv Gupta | 1d340eb | 2008-07-04 11:04:26 +0000 | [diff] [blame] | 77 | DI->EmitRegionEnd(CurFn, Builder); |
| 78 | } |
| 79 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 80 | assert(BreakContinueStack.empty() && |
| 81 | "mismatched push/pop in break/continue stack!"); |
Daniel Dunbar | 9fb751f | 2008-09-09 21:00:17 +0000 | [diff] [blame] | 82 | |
Daniel Dunbar | 7a57b8d | 2008-09-27 07:15:59 +0000 | [diff] [blame] | 83 | // 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 Dunbar | fc1a9c4 | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 86 | EmitFunctionEpilog(FnRetTy, ReturnValue); |
Daniel Dunbar | 9fb751f | 2008-09-09 21:00:17 +0000 | [diff] [blame] | 87 | |
Chris Lattner | ca92981 | 2007-12-02 06:32:24 +0000 | [diff] [blame] | 88 | // Remove the AllocaInsertPt instruction, which is just a convenience for us. |
| 89 | AllocaInsertPt->eraseFromParent(); |
| 90 | AllocaInsertPt = 0; |
| 91 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 92 | // Verify that the function is well formed. |
Daniel Dunbar | 55dd2bb | 2008-09-17 21:13:22 +0000 | [diff] [blame] | 93 | if (verifyFunction(*CurFn, llvm::PrintMessageAction)) { |
| 94 | CurFn->dump(); |
| 95 | assert(0 && "Function failed verification!"); |
| 96 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 97 | } |
| 98 | |
Daniel Dunbar | 9681683 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 99 | void CodeGenFunction::StartFunction(const Decl *D, QualType RetTy, |
| 100 | llvm::Function *Fn, |
| 101 | const FunctionArgList &Args) { |
| 102 | CurFuncDecl = D; |
| 103 | FnRetTy = RetTy; |
Daniel Dunbar | 7bf5b3d | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 104 | CurFn = Fn; |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 105 | assert(CurFn->isDeclaration() && "Function already has body?"); |
| 106 | |
| 107 | llvm::BasicBlock *EntryBB = llvm::BasicBlock::Create("entry", CurFn); |
Daniel Dunbar | 9fb751f | 2008-09-09 21:00:17 +0000 | [diff] [blame] | 108 | |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 109 | // Create a marker to make it easy to insert allocas into the entryblock |
| 110 | // later. Don't create this with the builder, because we don't want it |
| 111 | // folded. |
| 112 | llvm::Value *Undef = llvm::UndefValue::get(llvm::Type::Int32Ty); |
| 113 | AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::Int32Ty, "allocapt", |
| 114 | EntryBB); |
Daniel Dunbar | 9fb751f | 2008-09-09 21:00:17 +0000 | [diff] [blame] | 115 | |
Daniel Dunbar | 7a57b8d | 2008-09-27 07:15:59 +0000 | [diff] [blame] | 116 | ReturnBlock = llvm::BasicBlock::Create("return"); |
Daniel Dunbar | 9fb751f | 2008-09-09 21:00:17 +0000 | [diff] [blame] | 117 | ReturnValue = 0; |
Daniel Dunbar | 9681683 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 118 | if (!RetTy->isVoidType()) |
| 119 | ReturnValue = CreateTempAlloca(ConvertType(RetTy), "retval"); |
Daniel Dunbar | 9fb751f | 2008-09-09 21:00:17 +0000 | [diff] [blame] | 120 | |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 121 | Builder.SetInsertPoint(EntryBB); |
| 122 | |
Sanjiv Gupta | 1d340eb | 2008-07-04 11:04:26 +0000 | [diff] [blame] | 123 | // Emit subprogram debug descriptor. |
Daniel Dunbar | 9681683 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 124 | // FIXME: The cast here is a huge hack. |
| 125 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 126 | if (CGDebugInfo *DI = CGM.getDebugInfo()) { |
Daniel Dunbar | 6fc1f97 | 2008-10-17 16:15:48 +0000 | [diff] [blame^] | 127 | if (CompoundStmt* body = dyn_cast<CompoundStmt>(FD->getBody())) |
Daniel Dunbar | 9681683 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 128 | DI->setLocation(body->getLBracLoc()); |
Daniel Dunbar | 9681683 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 129 | DI->EmitFunctionStart(FD, CurFn, Builder); |
Sanjiv Gupta | 1d340eb | 2008-07-04 11:04:26 +0000 | [diff] [blame] | 130 | } |
Sanjiv Gupta | 1d340eb | 2008-07-04 11:04:26 +0000 | [diff] [blame] | 131 | } |
| 132 | |
Daniel Dunbar | fc1a9c4 | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 133 | EmitFunctionProlog(CurFn, FnRetTy, Args); |
Daniel Dunbar | 9681683 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 134 | } |
Eli Friedman | 769e730 | 2008-08-25 21:31:01 +0000 | [diff] [blame] | 135 | |
Daniel Dunbar | 9681683 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 136 | void CodeGenFunction::GenerateCode(const FunctionDecl *FD, |
| 137 | llvm::Function *Fn) { |
| 138 | FunctionArgList Args; |
Eli Friedman | 769e730 | 2008-08-25 21:31:01 +0000 | [diff] [blame] | 139 | if (FD->getNumParams()) { |
| 140 | const FunctionTypeProto* FProto = FD->getType()->getAsFunctionTypeProto(); |
| 141 | assert(FProto && "Function def must have prototype!"); |
Daniel Dunbar | 9681683 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 142 | |
| 143 | for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) |
| 144 | Args.push_back(std::make_pair(FD->getParamDecl(i), |
| 145 | FProto->getArgType(i))); |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 146 | } |
Daniel Dunbar | 6b57d43 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 147 | |
Daniel Dunbar | 9681683 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 148 | StartFunction(FD, FD->getResultType(), Fn, Args); |
| 149 | |
Daniel Dunbar | 6b57d43 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 150 | EmitStmt(FD->getBody()); |
| 151 | |
| 152 | const CompoundStmt *S = dyn_cast<CompoundStmt>(FD->getBody()); |
| 153 | if (S) { |
| 154 | FinishFunction(S->getRBracLoc()); |
| 155 | } else { |
| 156 | FinishFunction(); |
| 157 | } |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 158 | } |
| 159 | |
Devang Patel | 9729936 | 2007-09-28 21:49:18 +0000 | [diff] [blame] | 160 | /// isDummyBlock - Return true if BB is an empty basic block |
| 161 | /// with no predecessors. |
| 162 | bool CodeGenFunction::isDummyBlock(const llvm::BasicBlock *BB) { |
Chris Lattner | dad8551 | 2008-07-25 23:40:10 +0000 | [diff] [blame] | 163 | if (BB->empty() && pred_begin(BB) == pred_end(BB) && !BB->hasName()) |
Devang Patel | 9729936 | 2007-09-28 21:49:18 +0000 | [diff] [blame] | 164 | return true; |
| 165 | return false; |
| 166 | } |
| 167 | |
Devang Patel | e58e080 | 2007-10-04 23:45:31 +0000 | [diff] [blame] | 168 | /// StartBlock - Start new block named N. If insert block is a dummy block |
| 169 | /// then reuse it. |
| 170 | void CodeGenFunction::StartBlock(const char *N) { |
| 171 | llvm::BasicBlock *BB = Builder.GetInsertBlock(); |
| 172 | if (!isDummyBlock(BB)) |
Gabor Greif | 815e2c1 | 2008-04-06 20:42:52 +0000 | [diff] [blame] | 173 | EmitBlock(llvm::BasicBlock::Create(N)); |
Devang Patel | e58e080 | 2007-10-04 23:45:31 +0000 | [diff] [blame] | 174 | else |
| 175 | BB->setName(N); |
| 176 | } |
| 177 | |
Devang Patel | 7a78e43 | 2007-11-01 19:11:01 +0000 | [diff] [blame] | 178 | /// getCGRecordLayout - Return record layout info. |
| 179 | const CGRecordLayout *CodeGenFunction::getCGRecordLayout(CodeGenTypes &CGT, |
Chris Lattner | 7b2543e | 2008-02-05 06:55:31 +0000 | [diff] [blame] | 180 | QualType Ty) { |
| 181 | const RecordType *RTy = Ty->getAsRecordType(); |
| 182 | assert (RTy && "Unexpected type. RecordType expected here."); |
Devang Patel | aebd83f | 2007-10-23 02:10:49 +0000 | [diff] [blame] | 183 | |
Chris Lattner | 7b2543e | 2008-02-05 06:55:31 +0000 | [diff] [blame] | 184 | return CGT.getCGRecordLayout(RTy->getDecl()); |
Devang Patel | aebd83f | 2007-10-23 02:10:49 +0000 | [diff] [blame] | 185 | } |
Chris Lattner | 9d4e620 | 2007-12-02 01:43:38 +0000 | [diff] [blame] | 186 | |
Daniel Dunbar | 9503b78 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 187 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Chris Lattner | 9d4e620 | 2007-12-02 01:43:38 +0000 | [diff] [blame] | 188 | /// specified stmt yet. |
Daniel Dunbar | 49bddf7 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 189 | void CodeGenFunction::ErrorUnsupported(const Stmt *S, const char *Type, |
| 190 | bool OmitOnError) { |
| 191 | CGM.ErrorUnsupported(S, Type, OmitOnError); |
Chris Lattner | 9d4e620 | 2007-12-02 01:43:38 +0000 | [diff] [blame] | 192 | } |
| 193 | |
Daniel Dunbar | 879788d | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 194 | unsigned CodeGenFunction::GetIDForAddrOfLabel(const LabelStmt *L) { |
| 195 | // Use LabelIDs.size() as the new ID if one hasn't been assigned. |
| 196 | return LabelIDs.insert(std::make_pair(L, LabelIDs.size())).first->second; |
| 197 | } |
| 198 | |
Anders Carlsson | 82b0d0c | 2008-08-30 19:51:14 +0000 | [diff] [blame] | 199 | void CodeGenFunction::EmitMemSetToZero(llvm::Value *DestPtr, QualType Ty) |
| 200 | { |
| 201 | const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty); |
| 202 | if (DestPtr->getType() != BP) |
| 203 | DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp"); |
| 204 | |
| 205 | // Get size and alignment info for this aggregate. |
| 206 | std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty); |
| 207 | |
| 208 | // FIXME: Handle variable sized types. |
| 209 | const llvm::Type *IntPtr = llvm::IntegerType::get(LLVMPointerWidth); |
| 210 | |
| 211 | Builder.CreateCall4(CGM.getMemSetFn(), DestPtr, |
| 212 | llvm::ConstantInt::getNullValue(llvm::Type::Int8Ty), |
| 213 | // TypeInfo.first describes size in bits. |
| 214 | llvm::ConstantInt::get(IntPtr, TypeInfo.first/8), |
| 215 | llvm::ConstantInt::get(llvm::Type::Int32Ty, |
| 216 | TypeInfo.second/8)); |
| 217 | } |
| 218 | |
Daniel Dunbar | 879788d | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 219 | void CodeGenFunction::EmitIndirectSwitches() { |
| 220 | llvm::BasicBlock *Default; |
| 221 | |
Daniel Dunbar | 8ccfa80 | 2008-08-04 17:24:44 +0000 | [diff] [blame] | 222 | if (IndirectSwitches.empty()) |
| 223 | return; |
| 224 | |
Daniel Dunbar | 879788d | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 225 | if (!LabelIDs.empty()) { |
| 226 | Default = getBasicBlockForLabel(LabelIDs.begin()->first); |
| 227 | } else { |
| 228 | // No possible targets for indirect goto, just emit an infinite |
| 229 | // loop. |
| 230 | Default = llvm::BasicBlock::Create("indirectgoto.loop", CurFn); |
| 231 | llvm::BranchInst::Create(Default, Default); |
| 232 | } |
| 233 | |
| 234 | for (std::vector<llvm::SwitchInst*>::iterator i = IndirectSwitches.begin(), |
| 235 | e = IndirectSwitches.end(); i != e; ++i) { |
| 236 | llvm::SwitchInst *I = *i; |
| 237 | |
| 238 | I->setSuccessor(0, Default); |
| 239 | for (std::map<const LabelStmt*,unsigned>::iterator LI = LabelIDs.begin(), |
| 240 | LE = LabelIDs.end(); LI != LE; ++LI) { |
| 241 | I->addCase(llvm::ConstantInt::get(llvm::Type::Int32Ty, |
| 242 | LI->second), |
| 243 | getBasicBlockForLabel(LI->first)); |
| 244 | } |
| 245 | } |
| 246 | } |