Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- CodeGenFunction.cpp - Emit LLVM Code from ASTs for a Function ----===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 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. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +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" |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 16 | #include "CGCXXABI.h" |
Eli Friedman | 3f2af10 | 2008-05-22 01:40:10 +0000 | [diff] [blame] | 17 | #include "CGDebugInfo.h" |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 18 | #include "CGException.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 19 | #include "clang/Basic/TargetInfo.h" |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 20 | #include "clang/AST/APValue.h" |
Daniel Dunbar | de7fb84 | 2008-08-11 05:00:27 +0000 | [diff] [blame] | 21 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 22 | #include "clang/AST/Decl.h" |
Anders Carlsson | 2b77ba8 | 2009-04-04 20:47:02 +0000 | [diff] [blame] | 23 | #include "clang/AST/DeclCXX.h" |
Mike Stump | 6a1e0eb | 2009-12-04 23:26:17 +0000 | [diff] [blame] | 24 | #include "clang/AST/StmtCXX.h" |
Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 25 | #include "clang/Frontend/CodeGenOptions.h" |
Mike Stump | 4e7a1f7 | 2009-02-21 20:00:35 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 27 | #include "llvm/Intrinsics.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 28 | using namespace clang; |
| 29 | using namespace CodeGen; |
| 30 | |
John McCall | 8abdbd8 | 2010-09-18 02:24:39 +0000 | [diff] [blame] | 31 | static void ResolveAllBranchFixups(CodeGenFunction &CGF, |
| 32 | llvm::SwitchInst *Switch, |
| 33 | llvm::BasicBlock *CleanupEntry); |
| 34 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 35 | CodeGenFunction::CodeGenFunction(CodeGenModule &cgm) |
Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 36 | : BlockFunction(cgm, *this, Builder), CGM(cgm), |
| 37 | Target(CGM.getContext().Target), |
Owen Anderson | aac8705 | 2009-07-08 20:52:20 +0000 | [diff] [blame] | 38 | Builder(cgm.getModule().getContext()), |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 39 | NormalCleanupDest(0), EHCleanupDest(0), NextCleanupDestIndex(1), |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 40 | ExceptionSlot(0), DebugInfo(0), IndirectBranch(0), |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 41 | SwitchInsn(0), CaseRangeBlock(0), |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 42 | DidCallStackSave(false), UnreachableBlock(0), |
John McCall | 2504941 | 2010-02-16 22:04:33 +0000 | [diff] [blame] | 43 | CXXThisDecl(0), CXXThisValue(0), CXXVTTDecl(0), CXXVTTValue(0), |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 44 | OutermostConditional(0), TerminateLandingPad(0), TerminateHandler(0), |
Chris Lattner | 83252dc | 2010-07-20 21:07:09 +0000 | [diff] [blame] | 45 | TrapBB(0) { |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 46 | |
| 47 | // Get some frequently used types. |
Mike Stump | 4e7a1f7 | 2009-02-21 20:00:35 +0000 | [diff] [blame] | 48 | LLVMPointerWidth = Target.getPointerWidth(0); |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 49 | llvm::LLVMContext &LLVMContext = CGM.getLLVMContext(); |
| 50 | IntPtrTy = llvm::IntegerType::get(LLVMContext, LLVMPointerWidth); |
| 51 | Int32Ty = llvm::Type::getInt32Ty(LLVMContext); |
| 52 | Int64Ty = llvm::Type::getInt64Ty(LLVMContext); |
| 53 | |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 54 | Exceptions = getContext().getLangOptions().Exceptions; |
Mike Stump | 9c276ae | 2009-12-12 01:27:46 +0000 | [diff] [blame] | 55 | CatchUndefined = getContext().getLangOptions().CatchUndefined; |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 56 | CGM.getCXXABI().getMangleContext().startNewFunction(); |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 57 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 58 | |
| 59 | ASTContext &CodeGenFunction::getContext() const { |
| 60 | return CGM.getContext(); |
| 61 | } |
| 62 | |
| 63 | |
Daniel Dunbar | 8b1a343 | 2009-02-03 23:03:55 +0000 | [diff] [blame] | 64 | const llvm::Type *CodeGenFunction::ConvertTypeForMem(QualType T) { |
| 65 | return CGM.getTypes().ConvertTypeForMem(T); |
| 66 | } |
| 67 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 68 | const llvm::Type *CodeGenFunction::ConvertType(QualType T) { |
| 69 | return CGM.getTypes().ConvertType(T); |
| 70 | } |
| 71 | |
| 72 | bool CodeGenFunction::hasAggregateLLVMType(QualType T) { |
Anders Carlsson | e9d34dc | 2009-09-29 02:09:01 +0000 | [diff] [blame] | 73 | return T->isRecordType() || T->isArrayType() || T->isAnyComplexType() || |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 74 | T->isObjCObjectType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Daniel Dunbar | 1c1d607 | 2009-01-26 23:27:52 +0000 | [diff] [blame] | 77 | void 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 | |
Daniel Dunbar | 96e18b0 | 2009-07-19 08:24:34 +0000 | [diff] [blame] | 85 | // We have a valid insert point, reuse it if it is empty or there are no |
| 86 | // explicit jumps to the return block. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 87 | if (CurBB->empty() || ReturnBlock.getBlock()->use_empty()) { |
| 88 | ReturnBlock.getBlock()->replaceAllUsesWith(CurBB); |
| 89 | delete ReturnBlock.getBlock(); |
Daniel Dunbar | 96e18b0 | 2009-07-19 08:24:34 +0000 | [diff] [blame] | 90 | } else |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 91 | EmitBlock(ReturnBlock.getBlock()); |
Daniel Dunbar | 1c1d607 | 2009-01-26 23:27:52 +0000 | [diff] [blame] | 92 | return; |
| 93 | } |
| 94 | |
| 95 | // Otherwise, if the return block is the target of a single direct |
| 96 | // branch then we can just put the code in that block instead. This |
| 97 | // cleans up functions which started with a unified return block. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 98 | if (ReturnBlock.getBlock()->hasOneUse()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 99 | llvm::BranchInst *BI = |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 100 | dyn_cast<llvm::BranchInst>(*ReturnBlock.getBlock()->use_begin()); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 101 | if (BI && BI->isUnconditional() && |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 102 | BI->getSuccessor(0) == ReturnBlock.getBlock()) { |
Daniel Dunbar | 1c1d607 | 2009-01-26 23:27:52 +0000 | [diff] [blame] | 103 | // Reset insertion point and delete the branch. |
| 104 | Builder.SetInsertPoint(BI->getParent()); |
| 105 | BI->eraseFromParent(); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 106 | delete ReturnBlock.getBlock(); |
Daniel Dunbar | 1c1d607 | 2009-01-26 23:27:52 +0000 | [diff] [blame] | 107 | return; |
| 108 | } |
| 109 | } |
| 110 | |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 111 | // FIXME: We are at an unreachable point, there is no reason to emit the block |
| 112 | // unless it has uses. However, we still need a place to put the debug |
| 113 | // region.end for now. |
Daniel Dunbar | 1c1d607 | 2009-01-26 23:27:52 +0000 | [diff] [blame] | 114 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 115 | EmitBlock(ReturnBlock.getBlock()); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | static void EmitIfUsed(CodeGenFunction &CGF, llvm::BasicBlock *BB) { |
| 119 | if (!BB) return; |
| 120 | if (!BB->use_empty()) |
| 121 | return CGF.CurFn->getBasicBlockList().push_back(BB); |
| 122 | delete BB; |
Daniel Dunbar | 1c1d607 | 2009-01-26 23:27:52 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 125 | void CodeGenFunction::FinishFunction(SourceLocation EndLoc) { |
Chris Lattner | da13870 | 2007-07-16 21:28:45 +0000 | [diff] [blame] | 126 | assert(BreakContinueStack.empty() && |
| 127 | "mismatched push/pop in break/continue stack!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 128 | |
| 129 | // Emit function epilog (to return). |
Daniel Dunbar | 1c1d607 | 2009-01-26 23:27:52 +0000 | [diff] [blame] | 130 | EmitReturnBlock(); |
Daniel Dunbar | f5bd45c | 2008-11-11 20:59:54 +0000 | [diff] [blame] | 131 | |
Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 132 | EmitFunctionInstrumentation("__cyg_profile_func_exit"); |
| 133 | |
Daniel Dunbar | f5bd45c | 2008-11-11 20:59:54 +0000 | [diff] [blame] | 134 | // Emit debug descriptor for function end. |
Anders Carlsson | e896d98 | 2009-02-13 08:11:52 +0000 | [diff] [blame] | 135 | if (CGDebugInfo *DI = getDebugInfo()) { |
Daniel Dunbar | f5bd45c | 2008-11-11 20:59:54 +0000 | [diff] [blame] | 136 | DI->setLocation(EndLoc); |
Devang Patel | 5a6fbcf | 2010-07-22 22:29:16 +0000 | [diff] [blame] | 137 | DI->EmitFunctionEnd(Builder); |
Daniel Dunbar | f5bd45c | 2008-11-11 20:59:54 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Chris Lattner | 35b21b8 | 2010-06-27 01:06:27 +0000 | [diff] [blame] | 140 | EmitFunctionEpilog(*CurFnInfo); |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 141 | EmitEndEHSpec(CurCodeDecl); |
Daniel Dunbar | 5ca2084 | 2008-09-09 21:00:17 +0000 | [diff] [blame] | 142 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 143 | assert(EHStack.empty() && |
| 144 | "did not remove all scopes from cleanup stack!"); |
| 145 | |
Chris Lattner | d9becd1 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 146 | // If someone did an indirect goto, emit the indirect goto block at the end of |
| 147 | // the function. |
| 148 | if (IndirectBranch) { |
| 149 | EmitBlock(IndirectBranch->getParent()); |
| 150 | Builder.ClearInsertionPoint(); |
| 151 | } |
| 152 | |
Chris Lattner | 5a2fa14 | 2007-12-02 06:32:24 +0000 | [diff] [blame] | 153 | // Remove the AllocaInsertPt instruction, which is just a convenience for us. |
Chris Lattner | 481769b | 2009-03-31 22:17:44 +0000 | [diff] [blame] | 154 | llvm::Instruction *Ptr = AllocaInsertPt; |
Chris Lattner | 5a2fa14 | 2007-12-02 06:32:24 +0000 | [diff] [blame] | 155 | AllocaInsertPt = 0; |
Chris Lattner | 481769b | 2009-03-31 22:17:44 +0000 | [diff] [blame] | 156 | Ptr->eraseFromParent(); |
Chris Lattner | d9becd1 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 157 | |
| 158 | // If someone took the address of a label but never did an indirect goto, we |
| 159 | // made a zero entry PHI node, which is illegal, zap it now. |
| 160 | if (IndirectBranch) { |
| 161 | llvm::PHINode *PN = cast<llvm::PHINode>(IndirectBranch->getAddress()); |
| 162 | if (PN->getNumIncomingValues() == 0) { |
| 163 | PN->replaceAllUsesWith(llvm::UndefValue::get(PN->getType())); |
| 164 | PN->eraseFromParent(); |
| 165 | } |
| 166 | } |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 167 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 168 | EmitIfUsed(*this, RethrowBlock.getBlock()); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 169 | EmitIfUsed(*this, TerminateLandingPad); |
| 170 | EmitIfUsed(*this, TerminateHandler); |
| 171 | EmitIfUsed(*this, UnreachableBlock); |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 172 | |
| 173 | if (CGM.getCodeGenOpts().EmitDeclMetadata) |
| 174 | EmitDeclMetadata(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 177 | /// ShouldInstrumentFunction - Return true if the current function should be |
| 178 | /// instrumented with __cyg_profile_func_* calls |
| 179 | bool CodeGenFunction::ShouldInstrumentFunction() { |
| 180 | if (!CGM.getCodeGenOpts().InstrumentFunctions) |
| 181 | return false; |
| 182 | if (CurFuncDecl->hasAttr<NoInstrumentFunctionAttr>()) |
| 183 | return false; |
| 184 | return true; |
| 185 | } |
| 186 | |
| 187 | /// EmitFunctionInstrumentation - Emit LLVM code to call the specified |
| 188 | /// instrumentation function with the current function and the call site, if |
| 189 | /// function instrumentation is enabled. |
| 190 | void CodeGenFunction::EmitFunctionInstrumentation(const char *Fn) { |
| 191 | if (!ShouldInstrumentFunction()) |
| 192 | return; |
| 193 | |
Chris Lattner | 8dab657 | 2010-06-23 05:21:28 +0000 | [diff] [blame] | 194 | const llvm::PointerType *PointerTy; |
Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 195 | const llvm::FunctionType *FunctionTy; |
| 196 | std::vector<const llvm::Type*> ProfileFuncArgs; |
| 197 | |
Chris Lattner | 8dab657 | 2010-06-23 05:21:28 +0000 | [diff] [blame] | 198 | // void __cyg_profile_func_{enter,exit} (void *this_fn, void *call_site); |
| 199 | PointerTy = llvm::Type::getInt8PtrTy(VMContext); |
| 200 | ProfileFuncArgs.push_back(PointerTy); |
| 201 | ProfileFuncArgs.push_back(PointerTy); |
Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 202 | FunctionTy = llvm::FunctionType::get( |
| 203 | llvm::Type::getVoidTy(VMContext), |
| 204 | ProfileFuncArgs, false); |
| 205 | |
| 206 | llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn); |
| 207 | llvm::CallInst *CallSite = Builder.CreateCall( |
| 208 | CGM.getIntrinsic(llvm::Intrinsic::returnaddress, 0, 0), |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 209 | llvm::ConstantInt::get(Int32Ty, 0), |
Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 210 | "callsite"); |
| 211 | |
Chris Lattner | 8dab657 | 2010-06-23 05:21:28 +0000 | [diff] [blame] | 212 | Builder.CreateCall2(F, |
| 213 | llvm::ConstantExpr::getBitCast(CurFn, PointerTy), |
| 214 | CallSite); |
Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 215 | } |
| 216 | |
Anders Carlsson | 0ff8baf | 2009-09-11 00:07:24 +0000 | [diff] [blame] | 217 | void CodeGenFunction::StartFunction(GlobalDecl GD, QualType RetTy, |
Daniel Dunbar | 7c08651 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 218 | llvm::Function *Fn, |
Daniel Dunbar | 2284ac9 | 2008-10-18 18:22:23 +0000 | [diff] [blame] | 219 | const FunctionArgList &Args, |
| 220 | SourceLocation StartLoc) { |
Anders Carlsson | 0ff8baf | 2009-09-11 00:07:24 +0000 | [diff] [blame] | 221 | const Decl *D = GD.getDecl(); |
| 222 | |
Anders Carlsson | 4cc1a47 | 2009-02-09 20:20:56 +0000 | [diff] [blame] | 223 | DidCallStackSave = false; |
Chris Lattner | b5437d2 | 2009-04-23 05:30:27 +0000 | [diff] [blame] | 224 | CurCodeDecl = CurFuncDecl = D; |
Daniel Dunbar | 7c08651 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 225 | FnRetTy = RetTy; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 226 | CurFn = Fn; |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 227 | assert(CurFn->isDeclaration() && "Function already has body?"); |
| 228 | |
Jakob Stoklund Olesen | a3fe284 | 2010-02-09 00:10:00 +0000 | [diff] [blame] | 229 | // Pass inline keyword to optimizer if it appears explicitly on any |
| 230 | // declaration. |
| 231 | if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D)) |
| 232 | for (FunctionDecl::redecl_iterator RI = FD->redecls_begin(), |
| 233 | RE = FD->redecls_end(); RI != RE; ++RI) |
| 234 | if (RI->isInlineSpecified()) { |
| 235 | Fn->addFnAttr(llvm::Attribute::InlineHint); |
| 236 | break; |
| 237 | } |
| 238 | |
Daniel Dunbar | 55e8742 | 2008-11-11 02:29:29 +0000 | [diff] [blame] | 239 | llvm::BasicBlock *EntryBB = createBasicBlock("entry", CurFn); |
Daniel Dunbar | 5ca2084 | 2008-09-09 21:00:17 +0000 | [diff] [blame] | 240 | |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 241 | // Create a marker to make it easy to insert allocas into the entryblock |
| 242 | // later. Don't create this with the builder, because we don't want it |
| 243 | // folded. |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 244 | llvm::Value *Undef = llvm::UndefValue::get(Int32Ty); |
| 245 | AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB); |
Chris Lattner | f146684 | 2009-03-22 00:24:14 +0000 | [diff] [blame] | 246 | if (Builder.isNamePreserving()) |
| 247 | AllocaInsertPt->setName("allocapt"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 248 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 249 | ReturnBlock = getJumpDestInCurrentScope("return"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 250 | |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 251 | Builder.SetInsertPoint(EntryBB); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 252 | |
Sanjiv Gupta | af99417 | 2008-07-04 11:04:26 +0000 | [diff] [blame] | 253 | // Emit subprogram debug descriptor. |
Anders Carlsson | e896d98 | 2009-02-13 08:11:52 +0000 | [diff] [blame] | 254 | if (CGDebugInfo *DI = getDebugInfo()) { |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 255 | // FIXME: what is going on here and why does it ignore all these |
| 256 | // interesting type properties? |
| 257 | QualType FnType = |
| 258 | getContext().getFunctionType(RetTy, 0, 0, |
| 259 | FunctionProtoType::ExtProtoInfo()); |
| 260 | |
Daniel Dunbar | 2284ac9 | 2008-10-18 18:22:23 +0000 | [diff] [blame] | 261 | DI->setLocation(StartLoc); |
Devang Patel | 9c6c3a0 | 2010-01-14 00:36:21 +0000 | [diff] [blame] | 262 | DI->EmitFunctionStart(GD, FnType, CurFn, Builder); |
Sanjiv Gupta | af99417 | 2008-07-04 11:04:26 +0000 | [diff] [blame] | 263 | } |
| 264 | |
Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 265 | EmitFunctionInstrumentation("__cyg_profile_func_enter"); |
| 266 | |
Daniel Dunbar | 88b5396 | 2009-02-02 22:03:45 +0000 | [diff] [blame] | 267 | // FIXME: Leaked. |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 268 | // CC info is ignored, hopefully? |
| 269 | CurFnInfo = &CGM.getTypes().getFunctionInfo(FnRetTy, Args, |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 270 | FunctionType::ExtInfo()); |
Eli Friedman | b17daf9 | 2009-12-04 02:43:40 +0000 | [diff] [blame] | 271 | |
| 272 | if (RetTy->isVoidType()) { |
| 273 | // Void type; nothing to return. |
| 274 | ReturnValue = 0; |
| 275 | } else if (CurFnInfo->getReturnInfo().getKind() == ABIArgInfo::Indirect && |
| 276 | hasAggregateLLVMType(CurFnInfo->getReturnType())) { |
| 277 | // Indirect aggregate return; emit returned value directly into sret slot. |
Daniel Dunbar | 647a1ec | 2010-02-16 19:45:20 +0000 | [diff] [blame] | 278 | // This reduces code size, and affects correctness in C++. |
Eli Friedman | b17daf9 | 2009-12-04 02:43:40 +0000 | [diff] [blame] | 279 | ReturnValue = CurFn->arg_begin(); |
| 280 | } else { |
Daniel Dunbar | 647a1ec | 2010-02-16 19:45:20 +0000 | [diff] [blame] | 281 | ReturnValue = CreateIRTemp(RetTy, "retval"); |
Eli Friedman | b17daf9 | 2009-12-04 02:43:40 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 284 | EmitStartEHSpec(CurCodeDecl); |
Daniel Dunbar | 88b5396 | 2009-02-02 22:03:45 +0000 | [diff] [blame] | 285 | EmitFunctionProlog(*CurFnInfo, CurFn, Args); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 286 | |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 287 | if (D && isa<CXXMethodDecl>(D) && cast<CXXMethodDecl>(D)->isInstance()) |
| 288 | CGM.getCXXABI().EmitInstanceFunctionProlog(*this); |
John McCall | 2504941 | 2010-02-16 22:04:33 +0000 | [diff] [blame] | 289 | |
Anders Carlsson | 751358f | 2008-12-20 21:28:43 +0000 | [diff] [blame] | 290 | // If any of the arguments have a variably modified type, make sure to |
| 291 | // emit the type size. |
| 292 | for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end(); |
| 293 | i != e; ++i) { |
| 294 | QualType Ty = i->second; |
| 295 | |
| 296 | if (Ty->isVariablyModifiedType()) |
| 297 | EmitVLASize(Ty); |
| 298 | } |
Daniel Dunbar | 7c08651 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 299 | } |
Eli Friedman | eb4b705 | 2008-08-25 21:31:01 +0000 | [diff] [blame] | 300 | |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 301 | void CodeGenFunction::EmitFunctionBody(FunctionArgList &Args) { |
| 302 | const FunctionDecl *FD = cast<FunctionDecl>(CurGD.getDecl()); |
Douglas Gregor | 06a9f36 | 2010-05-01 20:49:11 +0000 | [diff] [blame] | 303 | assert(FD->getBody()); |
| 304 | EmitStmt(FD->getBody()); |
John McCall | a355e07 | 2010-02-18 03:17:58 +0000 | [diff] [blame] | 305 | } |
| 306 | |
John McCall | 39dad53 | 2010-08-03 22:46:07 +0000 | [diff] [blame] | 307 | /// Tries to mark the given function nounwind based on the |
| 308 | /// non-existence of any throwing calls within it. We believe this is |
| 309 | /// lightweight enough to do at -O0. |
| 310 | static void TryMarkNoThrow(llvm::Function *F) { |
John McCall | b3a29f1 | 2010-08-11 22:38:33 +0000 | [diff] [blame] | 311 | // LLVM treats 'nounwind' on a function as part of the type, so we |
| 312 | // can't do this on functions that can be overwritten. |
| 313 | if (F->mayBeOverridden()) return; |
| 314 | |
John McCall | 39dad53 | 2010-08-03 22:46:07 +0000 | [diff] [blame] | 315 | for (llvm::Function::iterator FI = F->begin(), FE = F->end(); FI != FE; ++FI) |
| 316 | for (llvm::BasicBlock::iterator |
| 317 | BI = FI->begin(), BE = FI->end(); BI != BE; ++BI) |
| 318 | if (llvm::CallInst *Call = dyn_cast<llvm::CallInst>(&*BI)) |
| 319 | if (!Call->doesNotThrow()) |
| 320 | return; |
| 321 | F->setDoesNotThrow(true); |
| 322 | } |
| 323 | |
Anders Carlsson | c997d42 | 2010-01-02 01:01:18 +0000 | [diff] [blame] | 324 | void CodeGenFunction::GenerateCode(GlobalDecl GD, llvm::Function *Fn) { |
Anders Carlsson | 0ff8baf | 2009-09-11 00:07:24 +0000 | [diff] [blame] | 325 | const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl()); |
| 326 | |
Anders Carlsson | e896d98 | 2009-02-13 08:11:52 +0000 | [diff] [blame] | 327 | // Check if we should generate debug info for this function. |
Mike Stump | 1feade8 | 2009-08-26 22:31:08 +0000 | [diff] [blame] | 328 | if (CGM.getDebugInfo() && !FD->hasAttr<NoDebugAttr>()) |
Anders Carlsson | e896d98 | 2009-02-13 08:11:52 +0000 | [diff] [blame] | 329 | DebugInfo = CGM.getDebugInfo(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 330 | |
Daniel Dunbar | 7c08651 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 331 | FunctionArgList Args; |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 332 | QualType ResTy = FD->getResultType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 333 | |
Mike Stump | 6a1e0eb | 2009-12-04 23:26:17 +0000 | [diff] [blame] | 334 | CurGD = GD; |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 335 | if (isa<CXXMethodDecl>(FD) && cast<CXXMethodDecl>(FD)->isInstance()) |
| 336 | CGM.getCXXABI().BuildInstanceFunctionParams(*this, ResTy, Args); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 337 | |
Eli Friedman | eb4b705 | 2008-08-25 21:31:01 +0000 | [diff] [blame] | 338 | if (FD->getNumParams()) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 339 | const FunctionProtoType* FProto = FD->getType()->getAs<FunctionProtoType>(); |
Eli Friedman | eb4b705 | 2008-08-25 21:31:01 +0000 | [diff] [blame] | 340 | assert(FProto && "Function def must have prototype!"); |
Daniel Dunbar | 7c08651 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 341 | |
| 342 | for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 343 | Args.push_back(std::make_pair(FD->getParamDecl(i), |
Daniel Dunbar | 7c08651 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 344 | FProto->getArgType(i))); |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 345 | } |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 346 | |
John McCall | a355e07 | 2010-02-18 03:17:58 +0000 | [diff] [blame] | 347 | SourceRange BodyRange; |
| 348 | if (Stmt *Body = FD->getBody()) BodyRange = Body->getSourceRange(); |
Anders Carlsson | 4365bba | 2009-11-06 02:55:43 +0000 | [diff] [blame] | 349 | |
John McCall | a355e07 | 2010-02-18 03:17:58 +0000 | [diff] [blame] | 350 | // Emit the standard function prologue. |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 351 | StartFunction(GD, ResTy, Fn, Args, BodyRange.getBegin()); |
Anders Carlsson | 4365bba | 2009-11-06 02:55:43 +0000 | [diff] [blame] | 352 | |
John McCall | a355e07 | 2010-02-18 03:17:58 +0000 | [diff] [blame] | 353 | // Generate the body of the function. |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 354 | if (isa<CXXDestructorDecl>(FD)) |
| 355 | EmitDestructorBody(Args); |
| 356 | else if (isa<CXXConstructorDecl>(FD)) |
| 357 | EmitConstructorBody(Args); |
| 358 | else |
| 359 | EmitFunctionBody(Args); |
Anders Carlsson | 1851a12 | 2010-02-07 19:45:40 +0000 | [diff] [blame] | 360 | |
John McCall | a355e07 | 2010-02-18 03:17:58 +0000 | [diff] [blame] | 361 | // Emit the standard function epilogue. |
| 362 | FinishFunction(BodyRange.getEnd()); |
John McCall | 39dad53 | 2010-08-03 22:46:07 +0000 | [diff] [blame] | 363 | |
| 364 | // If we haven't marked the function nothrow through other means, do |
| 365 | // a quick pass now to see if we can. |
| 366 | if (!CurFn->doesNotThrow()) |
| 367 | TryMarkNoThrow(CurFn); |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 368 | } |
| 369 | |
Chris Lattner | 0946ccd | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 370 | /// ContainsLabel - Return true if the statement contains a label in it. If |
| 371 | /// this statement is not executed normally, it not containing a label means |
| 372 | /// that we can just remove the code. |
| 373 | bool CodeGenFunction::ContainsLabel(const Stmt *S, bool IgnoreCaseStmts) { |
| 374 | // Null statement, not a label! |
| 375 | if (S == 0) return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 376 | |
Chris Lattner | 0946ccd | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 377 | // If this is a label, we have to emit the code, consider something like: |
| 378 | // if (0) { ... foo: bar(); } goto foo; |
| 379 | if (isa<LabelStmt>(S)) |
| 380 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 381 | |
Chris Lattner | 0946ccd | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 382 | // If this is a case/default statement, and we haven't seen a switch, we have |
| 383 | // to emit the code. |
| 384 | if (isa<SwitchCase>(S) && !IgnoreCaseStmts) |
| 385 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 386 | |
Chris Lattner | 0946ccd | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 387 | // If this is a switch statement, we want to ignore cases below it. |
| 388 | if (isa<SwitchStmt>(S)) |
| 389 | IgnoreCaseStmts = true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 390 | |
Chris Lattner | 0946ccd | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 391 | // Scan subexpressions for verboten labels. |
| 392 | for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end(); |
| 393 | I != E; ++I) |
| 394 | if (ContainsLabel(*I, IgnoreCaseStmts)) |
| 395 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 396 | |
Chris Lattner | 0946ccd | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 397 | return false; |
| 398 | } |
| 399 | |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 400 | |
| 401 | /// ConstantFoldsToSimpleInteger - If the sepcified expression does not fold to |
| 402 | /// a constant, or if it does but contains a label, return 0. If it constant |
| 403 | /// folds to 'true' and does not contain a label, return 1, if it constant folds |
| 404 | /// to 'false' and does not contain a label, return -1. |
| 405 | int CodeGenFunction::ConstantFoldsToSimpleInteger(const Expr *Cond) { |
Daniel Dunbar | 36bc14c | 2008-11-12 22:37:10 +0000 | [diff] [blame] | 406 | // FIXME: Rename and handle conversion of other evaluatable things |
| 407 | // to bool. |
Anders Carlsson | 64712f1 | 2008-12-01 02:46:24 +0000 | [diff] [blame] | 408 | Expr::EvalResult Result; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 409 | if (!Cond->Evaluate(Result, getContext()) || !Result.Val.isInt() || |
Anders Carlsson | 64712f1 | 2008-12-01 02:46:24 +0000 | [diff] [blame] | 410 | Result.HasSideEffects) |
Anders Carlsson | ef5a66d | 2008-11-22 22:32:07 +0000 | [diff] [blame] | 411 | return 0; // Not foldable, not integer or not fully evaluatable. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 412 | |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 413 | if (CodeGenFunction::ContainsLabel(Cond)) |
| 414 | return 0; // Contains a label. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 415 | |
Anders Carlsson | 64712f1 | 2008-12-01 02:46:24 +0000 | [diff] [blame] | 416 | return Result.Val.getInt().getBoolValue() ? 1 : -1; |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | |
| 420 | /// EmitBranchOnBoolExpr - Emit a branch on a boolean condition (e.g. for an if |
| 421 | /// statement) to the specified blocks. Based on the condition, this might try |
| 422 | /// to simplify the codegen of the conditional based on the branch. |
| 423 | /// |
| 424 | void CodeGenFunction::EmitBranchOnBoolExpr(const Expr *Cond, |
| 425 | llvm::BasicBlock *TrueBlock, |
| 426 | llvm::BasicBlock *FalseBlock) { |
| 427 | if (const ParenExpr *PE = dyn_cast<ParenExpr>(Cond)) |
| 428 | return EmitBranchOnBoolExpr(PE->getSubExpr(), TrueBlock, FalseBlock); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 429 | |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 430 | if (const BinaryOperator *CondBOp = dyn_cast<BinaryOperator>(Cond)) { |
| 431 | // Handle X && Y in a condition. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 432 | if (CondBOp->getOpcode() == BO_LAnd) { |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 433 | // If we have "1 && X", simplify the code. "0 && X" would have constant |
| 434 | // folded if the case was simple enough. |
| 435 | if (ConstantFoldsToSimpleInteger(CondBOp->getLHS()) == 1) { |
| 436 | // br(1 && X) -> br(X). |
| 437 | return EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock); |
| 438 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 439 | |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 440 | // If we have "X && 1", simplify the code to use an uncond branch. |
| 441 | // "X && 0" would have been constant folded to 0. |
| 442 | if (ConstantFoldsToSimpleInteger(CondBOp->getRHS()) == 1) { |
| 443 | // br(X && 1) -> br(X). |
| 444 | return EmitBranchOnBoolExpr(CondBOp->getLHS(), TrueBlock, FalseBlock); |
| 445 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 446 | |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 447 | // Emit the LHS as a conditional. If the LHS conditional is false, we |
| 448 | // want to jump to the FalseBlock. |
Daniel Dunbar | 9615ecb | 2008-11-13 01:38:36 +0000 | [diff] [blame] | 449 | llvm::BasicBlock *LHSTrue = createBasicBlock("land.lhs.true"); |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 450 | |
| 451 | ConditionalEvaluation eval(*this); |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 452 | EmitBranchOnBoolExpr(CondBOp->getLHS(), LHSTrue, FalseBlock); |
| 453 | EmitBlock(LHSTrue); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 454 | |
Anders Carlsson | 08e9e45 | 2010-01-24 00:20:05 +0000 | [diff] [blame] | 455 | // Any temporaries created here are conditional. |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 456 | eval.begin(*this); |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 457 | EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock); |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 458 | eval.end(*this); |
Anders Carlsson | 08e9e45 | 2010-01-24 00:20:05 +0000 | [diff] [blame] | 459 | |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 460 | return; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 461 | } else if (CondBOp->getOpcode() == BO_LOr) { |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 462 | // If we have "0 || X", simplify the code. "1 || X" would have constant |
| 463 | // folded if the case was simple enough. |
| 464 | if (ConstantFoldsToSimpleInteger(CondBOp->getLHS()) == -1) { |
| 465 | // br(0 || X) -> br(X). |
| 466 | return EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock); |
| 467 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 468 | |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 469 | // If we have "X || 0", simplify the code to use an uncond branch. |
| 470 | // "X || 1" would have been constant folded to 1. |
| 471 | if (ConstantFoldsToSimpleInteger(CondBOp->getRHS()) == -1) { |
| 472 | // br(X || 0) -> br(X). |
| 473 | return EmitBranchOnBoolExpr(CondBOp->getLHS(), TrueBlock, FalseBlock); |
| 474 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 475 | |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 476 | // Emit the LHS as a conditional. If the LHS conditional is true, we |
| 477 | // want to jump to the TrueBlock. |
Daniel Dunbar | 9615ecb | 2008-11-13 01:38:36 +0000 | [diff] [blame] | 478 | llvm::BasicBlock *LHSFalse = createBasicBlock("lor.lhs.false"); |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 479 | |
| 480 | ConditionalEvaluation eval(*this); |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 481 | EmitBranchOnBoolExpr(CondBOp->getLHS(), TrueBlock, LHSFalse); |
| 482 | EmitBlock(LHSFalse); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 483 | |
Anders Carlsson | 08e9e45 | 2010-01-24 00:20:05 +0000 | [diff] [blame] | 484 | // Any temporaries created here are conditional. |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 485 | eval.begin(*this); |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 486 | EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock); |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 487 | eval.end(*this); |
Anders Carlsson | 08e9e45 | 2010-01-24 00:20:05 +0000 | [diff] [blame] | 488 | |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 489 | return; |
| 490 | } |
Chris Lattner | 552f4c4 | 2008-11-12 08:13:36 +0000 | [diff] [blame] | 491 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 492 | |
Chris Lattner | 552f4c4 | 2008-11-12 08:13:36 +0000 | [diff] [blame] | 493 | if (const UnaryOperator *CondUOp = dyn_cast<UnaryOperator>(Cond)) { |
| 494 | // br(!x, t, f) -> br(x, f, t) |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 495 | if (CondUOp->getOpcode() == UO_LNot) |
Chris Lattner | 552f4c4 | 2008-11-12 08:13:36 +0000 | [diff] [blame] | 496 | return EmitBranchOnBoolExpr(CondUOp->getSubExpr(), FalseBlock, TrueBlock); |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 497 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 498 | |
Daniel Dunbar | 09b1489 | 2008-11-12 10:30:32 +0000 | [diff] [blame] | 499 | if (const ConditionalOperator *CondOp = dyn_cast<ConditionalOperator>(Cond)) { |
| 500 | // Handle ?: operator. |
| 501 | |
| 502 | // Just ignore GNU ?: extension. |
| 503 | if (CondOp->getLHS()) { |
| 504 | // br(c ? x : y, t, f) -> br(c, br(x, t, f), br(y, t, f)) |
| 505 | llvm::BasicBlock *LHSBlock = createBasicBlock("cond.true"); |
| 506 | llvm::BasicBlock *RHSBlock = createBasicBlock("cond.false"); |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 507 | |
| 508 | ConditionalEvaluation cond(*this); |
Daniel Dunbar | 09b1489 | 2008-11-12 10:30:32 +0000 | [diff] [blame] | 509 | EmitBranchOnBoolExpr(CondOp->getCond(), LHSBlock, RHSBlock); |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 510 | |
| 511 | cond.begin(*this); |
Daniel Dunbar | 09b1489 | 2008-11-12 10:30:32 +0000 | [diff] [blame] | 512 | EmitBlock(LHSBlock); |
| 513 | EmitBranchOnBoolExpr(CondOp->getLHS(), TrueBlock, FalseBlock); |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 514 | cond.end(*this); |
| 515 | |
| 516 | cond.begin(*this); |
Daniel Dunbar | 09b1489 | 2008-11-12 10:30:32 +0000 | [diff] [blame] | 517 | EmitBlock(RHSBlock); |
| 518 | EmitBranchOnBoolExpr(CondOp->getRHS(), TrueBlock, FalseBlock); |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 519 | cond.end(*this); |
| 520 | |
Daniel Dunbar | 09b1489 | 2008-11-12 10:30:32 +0000 | [diff] [blame] | 521 | return; |
| 522 | } |
| 523 | } |
| 524 | |
Chris Lattner | 31a0984 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 525 | // Emit the code with the fully general case. |
| 526 | llvm::Value *CondV = EvaluateExprAsBool(Cond); |
| 527 | Builder.CreateCondBr(CondV, TrueBlock, FalseBlock); |
| 528 | } |
| 529 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 530 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Chris Lattner | dc5e826 | 2007-12-02 01:43:38 +0000 | [diff] [blame] | 531 | /// specified stmt yet. |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 532 | void CodeGenFunction::ErrorUnsupported(const Stmt *S, const char *Type, |
| 533 | bool OmitOnError) { |
| 534 | CGM.ErrorUnsupported(S, Type, OmitOnError); |
Chris Lattner | dc5e826 | 2007-12-02 01:43:38 +0000 | [diff] [blame] | 535 | } |
| 536 | |
Anders Carlsson | 1884eb0 | 2010-05-22 17:35:42 +0000 | [diff] [blame] | 537 | void |
| 538 | CodeGenFunction::EmitNullInitialization(llvm::Value *DestPtr, QualType Ty) { |
Anders Carlsson | 0d7c583 | 2010-05-03 01:20:20 +0000 | [diff] [blame] | 539 | // Ignore empty classes in C++. |
| 540 | if (getContext().getLangOptions().CPlusPlus) { |
| 541 | if (const RecordType *RT = Ty->getAs<RecordType>()) { |
| 542 | if (cast<CXXRecordDecl>(RT->getDecl())->isEmpty()) |
| 543 | return; |
| 544 | } |
| 545 | } |
John McCall | 9021718 | 2010-08-07 08:21:30 +0000 | [diff] [blame] | 546 | |
| 547 | // Cast the dest ptr to the appropriate i8 pointer type. |
| 548 | unsigned DestAS = |
| 549 | cast<llvm::PointerType>(DestPtr->getType())->getAddressSpace(); |
Benjamin Kramer | 9f0c7cc | 2010-12-30 00:13:21 +0000 | [diff] [blame] | 550 | const llvm::Type *BP = Builder.getInt8PtrTy(DestAS); |
Anders Carlsson | 3d8400d | 2008-08-30 19:51:14 +0000 | [diff] [blame] | 551 | if (DestPtr->getType() != BP) |
| 552 | DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp"); |
| 553 | |
| 554 | // Get size and alignment info for this aggregate. |
| 555 | std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty); |
Benjamin Kramer | 9f0c7cc | 2010-12-30 00:13:21 +0000 | [diff] [blame] | 556 | uint64_t Size = TypeInfo.first / 8; |
| 557 | unsigned Align = TypeInfo.second / 8; |
Anders Carlsson | 3d8400d | 2008-08-30 19:51:14 +0000 | [diff] [blame] | 558 | |
John McCall | 5576d9b | 2011-01-14 10:37:58 +0000 | [diff] [blame] | 559 | llvm::Value *SizeVal; |
| 560 | bool vla; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 561 | |
John McCall | 5576d9b | 2011-01-14 10:37:58 +0000 | [diff] [blame] | 562 | // Don't bother emitting a zero-byte memset. |
| 563 | if (Size == 0) { |
| 564 | // But note that getTypeInfo returns 0 for a VLA. |
| 565 | if (const VariableArrayType *vlaType = |
| 566 | dyn_cast_or_null<VariableArrayType>( |
| 567 | getContext().getAsArrayType(Ty))) { |
| 568 | SizeVal = GetVLASize(vlaType); |
| 569 | vla = true; |
| 570 | } else { |
| 571 | return; |
| 572 | } |
| 573 | } else { |
| 574 | SizeVal = llvm::ConstantInt::get(IntPtrTy, Size); |
| 575 | vla = false; |
| 576 | } |
John McCall | 9021718 | 2010-08-07 08:21:30 +0000 | [diff] [blame] | 577 | |
| 578 | // If the type contains a pointer to data member we can't memset it to zero. |
| 579 | // Instead, create a null constant and copy it to the destination. |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 580 | if (!CGM.getTypes().isZeroInitializable(Ty)) { |
John McCall | 5576d9b | 2011-01-14 10:37:58 +0000 | [diff] [blame] | 581 | // FIXME: variable-size types! |
| 582 | if (vla) return; |
| 583 | |
John McCall | 9021718 | 2010-08-07 08:21:30 +0000 | [diff] [blame] | 584 | llvm::Constant *NullConstant = CGM.EmitNullConstant(Ty); |
| 585 | |
| 586 | llvm::GlobalVariable *NullVariable = |
| 587 | new llvm::GlobalVariable(CGM.getModule(), NullConstant->getType(), |
| 588 | /*isConstant=*/true, |
| 589 | llvm::GlobalVariable::PrivateLinkage, |
| 590 | NullConstant, llvm::Twine()); |
| 591 | llvm::Value *SrcPtr = |
| 592 | Builder.CreateBitCast(NullVariable, Builder.getInt8PtrTy()); |
| 593 | |
John McCall | 9021718 | 2010-08-07 08:21:30 +0000 | [diff] [blame] | 594 | // Get and call the appropriate llvm.memcpy overload. |
Benjamin Kramer | 9f0c7cc | 2010-12-30 00:13:21 +0000 | [diff] [blame] | 595 | Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, Align, false); |
John McCall | 9021718 | 2010-08-07 08:21:30 +0000 | [diff] [blame] | 596 | return; |
| 597 | } |
| 598 | |
| 599 | // Otherwise, just memset the whole thing to zero. This is legal |
| 600 | // because in LLVM, all default initializers (other than the ones we just |
| 601 | // handled above) are guaranteed to have a bit pattern of all zeros. |
Benjamin Kramer | 9f0c7cc | 2010-12-30 00:13:21 +0000 | [diff] [blame] | 602 | Builder.CreateMemSet(DestPtr, Builder.getInt8(0), SizeVal, Align, false); |
Anders Carlsson | 3d8400d | 2008-08-30 19:51:14 +0000 | [diff] [blame] | 603 | } |
| 604 | |
Chris Lattner | d9becd1 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 605 | llvm::BlockAddress *CodeGenFunction::GetAddrOfLabel(const LabelStmt *L) { |
| 606 | // Make sure that there is a block for the indirect goto. |
| 607 | if (IndirectBranch == 0) |
| 608 | GetIndirectGotoBlock(); |
Chris Lattner | 3d00fdc | 2009-10-13 06:55:33 +0000 | [diff] [blame] | 609 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 610 | llvm::BasicBlock *BB = getJumpDestForLabel(L).getBlock(); |
Chris Lattner | 3d00fdc | 2009-10-13 06:55:33 +0000 | [diff] [blame] | 611 | |
Chris Lattner | d9becd1 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 612 | // Make sure the indirect branch includes all of the address-taken blocks. |
| 613 | IndirectBranch->addDestination(BB); |
| 614 | return llvm::BlockAddress::get(CurFn, BB); |
Chris Lattner | 3d00fdc | 2009-10-13 06:55:33 +0000 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | llvm::BasicBlock *CodeGenFunction::GetIndirectGotoBlock() { |
Chris Lattner | d9becd1 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 618 | // If we already made the indirect branch for indirect goto, return its block. |
| 619 | if (IndirectBranch) return IndirectBranch->getParent(); |
Chris Lattner | 3d00fdc | 2009-10-13 06:55:33 +0000 | [diff] [blame] | 620 | |
Chris Lattner | d9becd1 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 621 | CGBuilderTy TmpBuilder(createBasicBlock("indirectgoto")); |
Chris Lattner | 3d00fdc | 2009-10-13 06:55:33 +0000 | [diff] [blame] | 622 | |
Chris Lattner | d9becd1 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 623 | const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext); |
Chris Lattner | 85e74ac | 2009-10-28 20:36:47 +0000 | [diff] [blame] | 624 | |
Chris Lattner | 3d00fdc | 2009-10-13 06:55:33 +0000 | [diff] [blame] | 625 | // Create the PHI node that indirect gotos will add entries to. |
Chris Lattner | d9becd1 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 626 | llvm::Value *DestVal = TmpBuilder.CreatePHI(Int8PtrTy, "indirect.goto.dest"); |
Chris Lattner | 3d00fdc | 2009-10-13 06:55:33 +0000 | [diff] [blame] | 627 | |
Chris Lattner | d9becd1 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 628 | // Create the indirect branch instruction. |
| 629 | IndirectBranch = TmpBuilder.CreateIndirectBr(DestVal); |
| 630 | return IndirectBranch->getParent(); |
Daniel Dunbar | 0ffb125 | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 631 | } |
Anders Carlsson | ddf7cac | 2008-11-04 05:30:00 +0000 | [diff] [blame] | 632 | |
Daniel Dunbar | d286f05 | 2009-07-19 06:58:07 +0000 | [diff] [blame] | 633 | llvm::Value *CodeGenFunction::GetVLASize(const VariableArrayType *VAT) { |
Eli Friedman | bbed6b9 | 2009-08-15 02:50:32 +0000 | [diff] [blame] | 634 | llvm::Value *&SizeEntry = VLASizeMap[VAT->getSizeExpr()]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 635 | |
Anders Carlsson | f666b77 | 2008-12-20 20:27:15 +0000 | [diff] [blame] | 636 | assert(SizeEntry && "Did not emit size for type"); |
| 637 | return SizeEntry; |
| 638 | } |
Anders Carlsson | dcc90d8 | 2008-12-12 07:19:02 +0000 | [diff] [blame] | 639 | |
Daniel Dunbar | d286f05 | 2009-07-19 06:58:07 +0000 | [diff] [blame] | 640 | llvm::Value *CodeGenFunction::EmitVLASize(QualType Ty) { |
Anders Carlsson | 60d3541 | 2008-12-20 20:46:34 +0000 | [diff] [blame] | 641 | assert(Ty->isVariablyModifiedType() && |
| 642 | "Must pass variably modified type to EmitVLASizes!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 643 | |
Daniel Dunbar | d286f05 | 2009-07-19 06:58:07 +0000 | [diff] [blame] | 644 | EnsureInsertPoint(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 645 | |
Anders Carlsson | 60d3541 | 2008-12-20 20:46:34 +0000 | [diff] [blame] | 646 | if (const VariableArrayType *VAT = getContext().getAsVariableArrayType(Ty)) { |
Fariborz Jahanian | 745da3a | 2010-09-24 17:30:16 +0000 | [diff] [blame] | 647 | // unknown size indication requires no size computation. |
| 648 | if (!VAT->getSizeExpr()) |
| 649 | return 0; |
Eli Friedman | bbed6b9 | 2009-08-15 02:50:32 +0000 | [diff] [blame] | 650 | llvm::Value *&SizeEntry = VLASizeMap[VAT->getSizeExpr()]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 651 | |
Anders Carlsson | fcdbb93 | 2008-12-20 21:51:53 +0000 | [diff] [blame] | 652 | if (!SizeEntry) { |
Anders Carlsson | 96f2147 | 2009-02-05 19:43:10 +0000 | [diff] [blame] | 653 | const llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 654 | |
Chris Lattner | ec18ddd | 2009-08-15 00:03:43 +0000 | [diff] [blame] | 655 | // Get the element size; |
| 656 | QualType ElemTy = VAT->getElementType(); |
| 657 | llvm::Value *ElemSize; |
Anders Carlsson | fcdbb93 | 2008-12-20 21:51:53 +0000 | [diff] [blame] | 658 | if (ElemTy->isVariableArrayType()) |
| 659 | ElemSize = EmitVLASize(ElemTy); |
Chris Lattner | ec18ddd | 2009-08-15 00:03:43 +0000 | [diff] [blame] | 660 | else |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 661 | ElemSize = llvm::ConstantInt::get(SizeTy, |
Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 662 | getContext().getTypeSizeInChars(ElemTy).getQuantity()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 663 | |
Anders Carlsson | fcdbb93 | 2008-12-20 21:51:53 +0000 | [diff] [blame] | 664 | llvm::Value *NumElements = EmitScalarExpr(VAT->getSizeExpr()); |
Anders Carlsson | 96f2147 | 2009-02-05 19:43:10 +0000 | [diff] [blame] | 665 | NumElements = Builder.CreateIntCast(NumElements, SizeTy, false, "tmp"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 666 | |
Anders Carlsson | fcdbb93 | 2008-12-20 21:51:53 +0000 | [diff] [blame] | 667 | SizeEntry = Builder.CreateMul(ElemSize, NumElements); |
Anders Carlsson | 60d3541 | 2008-12-20 20:46:34 +0000 | [diff] [blame] | 668 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 669 | |
Anders Carlsson | 60d3541 | 2008-12-20 20:46:34 +0000 | [diff] [blame] | 670 | return SizeEntry; |
Anders Carlsson | dcc90d8 | 2008-12-12 07:19:02 +0000 | [diff] [blame] | 671 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 672 | |
Chris Lattner | ec18ddd | 2009-08-15 00:03:43 +0000 | [diff] [blame] | 673 | if (const ArrayType *AT = dyn_cast<ArrayType>(Ty)) { |
| 674 | EmitVLASize(AT->getElementType()); |
| 675 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 676 | } |
| 677 | |
Abramo Bagnara | 075f8f1 | 2010-12-10 16:29:40 +0000 | [diff] [blame] | 678 | if (const ParenType *PT = dyn_cast<ParenType>(Ty)) { |
| 679 | EmitVLASize(PT->getInnerType()); |
| 680 | return 0; |
| 681 | } |
| 682 | |
Chris Lattner | ec18ddd | 2009-08-15 00:03:43 +0000 | [diff] [blame] | 683 | const PointerType *PT = Ty->getAs<PointerType>(); |
| 684 | assert(PT && "unknown VM type!"); |
| 685 | EmitVLASize(PT->getPointeeType()); |
Anders Carlsson | 60d3541 | 2008-12-20 20:46:34 +0000 | [diff] [blame] | 686 | return 0; |
Anders Carlsson | dcc90d8 | 2008-12-12 07:19:02 +0000 | [diff] [blame] | 687 | } |
Eli Friedman | 4fd0aa5 | 2009-01-20 17:46:04 +0000 | [diff] [blame] | 688 | |
| 689 | llvm::Value* CodeGenFunction::EmitVAListRef(const Expr* E) { |
Dan Gohman | bc07a55 | 2010-10-29 22:47:07 +0000 | [diff] [blame] | 690 | if (getContext().getBuiltinVaListType()->isArrayType()) |
Eli Friedman | 4fd0aa5 | 2009-01-20 17:46:04 +0000 | [diff] [blame] | 691 | return EmitScalarExpr(E); |
Eli Friedman | 4fd0aa5 | 2009-01-20 17:46:04 +0000 | [diff] [blame] | 692 | return EmitLValue(E).getAddress(); |
| 693 | } |
Anders Carlsson | 6ccc476 | 2009-02-07 22:53:43 +0000 | [diff] [blame] | 694 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 695 | /// Pops cleanup blocks until the given savepoint is reached. |
| 696 | void CodeGenFunction::PopCleanupBlocks(EHScopeStack::stable_iterator Old) { |
| 697 | assert(Old.isValid()); |
| 698 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 699 | while (EHStack.stable_begin() != Old) { |
| 700 | EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.begin()); |
| 701 | |
| 702 | // As long as Old strictly encloses the scope's enclosing normal |
| 703 | // cleanup, we're going to emit another normal cleanup which |
| 704 | // fallthrough can propagate through. |
| 705 | bool FallThroughIsBranchThrough = |
| 706 | Old.strictlyEncloses(Scope.getEnclosingNormalCleanup()); |
| 707 | |
| 708 | PopCleanupBlock(FallThroughIsBranchThrough); |
| 709 | } |
Anders Carlsson | 6ccc476 | 2009-02-07 22:53:43 +0000 | [diff] [blame] | 710 | } |
Anders Carlsson | c71c845 | 2009-02-07 23:50:39 +0000 | [diff] [blame] | 711 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 712 | static llvm::BasicBlock *CreateNormalEntry(CodeGenFunction &CGF, |
| 713 | EHCleanupScope &Scope) { |
| 714 | assert(Scope.isNormalCleanup()); |
| 715 | llvm::BasicBlock *Entry = Scope.getNormalBlock(); |
| 716 | if (!Entry) { |
| 717 | Entry = CGF.createBasicBlock("cleanup"); |
| 718 | Scope.setNormalBlock(Entry); |
Mike Stump | 9953383 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 719 | } |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 720 | return Entry; |
| 721 | } |
Mike Stump | 9953383 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 722 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 723 | static llvm::BasicBlock *CreateEHEntry(CodeGenFunction &CGF, |
| 724 | EHCleanupScope &Scope) { |
| 725 | assert(Scope.isEHCleanup()); |
| 726 | llvm::BasicBlock *Entry = Scope.getEHBlock(); |
| 727 | if (!Entry) { |
| 728 | Entry = CGF.createBasicBlock("eh.cleanup"); |
| 729 | Scope.setEHBlock(Entry); |
| 730 | } |
| 731 | return Entry; |
| 732 | } |
Devang Patel | cd9199e | 2010-04-13 00:08:43 +0000 | [diff] [blame] | 733 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 734 | /// Transitions the terminator of the given exit-block of a cleanup to |
| 735 | /// be a cleanup switch. |
| 736 | static llvm::SwitchInst *TransitionToCleanupSwitch(CodeGenFunction &CGF, |
| 737 | llvm::BasicBlock *Block) { |
| 738 | // If it's a branch, turn it into a switch whose default |
| 739 | // destination is its original target. |
| 740 | llvm::TerminatorInst *Term = Block->getTerminator(); |
| 741 | assert(Term && "can't transition block without terminator"); |
| 742 | |
| 743 | if (llvm::BranchInst *Br = dyn_cast<llvm::BranchInst>(Term)) { |
| 744 | assert(Br->isUnconditional()); |
| 745 | llvm::LoadInst *Load = |
| 746 | new llvm::LoadInst(CGF.getNormalCleanupDestSlot(), "cleanup.dest", Term); |
| 747 | llvm::SwitchInst *Switch = |
| 748 | llvm::SwitchInst::Create(Load, Br->getSuccessor(0), 4, Block); |
| 749 | Br->eraseFromParent(); |
| 750 | return Switch; |
| 751 | } else { |
| 752 | return cast<llvm::SwitchInst>(Term); |
| 753 | } |
Anders Carlsson | d66a9f9 | 2009-02-08 03:55:35 +0000 | [diff] [blame] | 754 | } |
| 755 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 756 | /// Attempts to reduce a cleanup's entry block to a fallthrough. This |
| 757 | /// is basically llvm::MergeBlockIntoPredecessor, except |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 758 | /// simplified/optimized for the tighter constraints on cleanup blocks. |
| 759 | /// |
| 760 | /// Returns the new block, whatever it is. |
| 761 | static llvm::BasicBlock *SimplifyCleanupEntry(CodeGenFunction &CGF, |
| 762 | llvm::BasicBlock *Entry) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 763 | llvm::BasicBlock *Pred = Entry->getSinglePredecessor(); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 764 | if (!Pred) return Entry; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 765 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 766 | llvm::BranchInst *Br = dyn_cast<llvm::BranchInst>(Pred->getTerminator()); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 767 | if (!Br || Br->isConditional()) return Entry; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 768 | assert(Br->getSuccessor(0) == Entry); |
| 769 | |
| 770 | // If we were previously inserting at the end of the cleanup entry |
| 771 | // block, we'll need to continue inserting at the end of the |
| 772 | // predecessor. |
| 773 | bool WasInsertBlock = CGF.Builder.GetInsertBlock() == Entry; |
| 774 | assert(!WasInsertBlock || CGF.Builder.GetInsertPoint() == Entry->end()); |
| 775 | |
| 776 | // Kill the branch. |
| 777 | Br->eraseFromParent(); |
| 778 | |
| 779 | // Merge the blocks. |
| 780 | Pred->getInstList().splice(Pred->end(), Entry->getInstList()); |
| 781 | |
John McCall | b842437 | 2011-01-14 10:35:38 +0000 | [diff] [blame] | 782 | // Replace all uses of the entry with the predecessor, in case there |
| 783 | // are phis in the cleanup. |
| 784 | Entry->replaceAllUsesWith(Pred); |
| 785 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 786 | // Kill the entry block. |
| 787 | Entry->eraseFromParent(); |
| 788 | |
| 789 | if (WasInsertBlock) |
| 790 | CGF.Builder.SetInsertPoint(Pred); |
Anders Carlsson | 87eaf17 | 2009-02-08 00:50:42 +0000 | [diff] [blame] | 791 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 792 | return Pred; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 793 | } |
| 794 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 795 | static void EmitCleanup(CodeGenFunction &CGF, |
| 796 | EHScopeStack::Cleanup *Fn, |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 797 | bool ForEH, |
| 798 | llvm::Value *ActiveFlag) { |
| 799 | // EH cleanups always occur within a terminate scope. |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 800 | if (ForEH) CGF.EHStack.pushTerminate(); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 801 | |
| 802 | // If there's an active flag, load it and skip the cleanup if it's |
| 803 | // false. |
| 804 | llvm::BasicBlock *ContBB = 0; |
| 805 | if (ActiveFlag) { |
| 806 | ContBB = CGF.createBasicBlock("cleanup.done"); |
| 807 | llvm::BasicBlock *CleanupBB = CGF.createBasicBlock("cleanup.action"); |
| 808 | llvm::Value *IsActive |
| 809 | = CGF.Builder.CreateLoad(ActiveFlag, "cleanup.is_active"); |
| 810 | CGF.Builder.CreateCondBr(IsActive, CleanupBB, ContBB); |
| 811 | CGF.EmitBlock(CleanupBB); |
| 812 | } |
| 813 | |
| 814 | // Ask the cleanup to emit itself. |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 815 | Fn->Emit(CGF, ForEH); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 816 | assert(CGF.HaveInsertPoint() && "cleanup ended with no insertion point?"); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 817 | |
| 818 | // Emit the continuation block if there was an active flag. |
| 819 | if (ActiveFlag) |
| 820 | CGF.EmitBlock(ContBB); |
| 821 | |
| 822 | // Leave the terminate scope. |
| 823 | if (ForEH) CGF.EHStack.popTerminate(); |
| 824 | } |
| 825 | |
| 826 | static void ForwardPrebranchedFallthrough(llvm::BasicBlock *Exit, |
| 827 | llvm::BasicBlock *From, |
| 828 | llvm::BasicBlock *To) { |
| 829 | // Exit is the exit block of a cleanup, so it always terminates in |
| 830 | // an unconditional branch or a switch. |
| 831 | llvm::TerminatorInst *Term = Exit->getTerminator(); |
| 832 | |
| 833 | if (llvm::BranchInst *Br = dyn_cast<llvm::BranchInst>(Term)) { |
| 834 | assert(Br->isUnconditional() && Br->getSuccessor(0) == From); |
| 835 | Br->setSuccessor(0, To); |
| 836 | } else { |
| 837 | llvm::SwitchInst *Switch = cast<llvm::SwitchInst>(Term); |
| 838 | for (unsigned I = 0, E = Switch->getNumSuccessors(); I != E; ++I) |
| 839 | if (Switch->getSuccessor(I) == From) |
| 840 | Switch->setSuccessor(I, To); |
| 841 | } |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 842 | } |
| 843 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 844 | /// Pops a cleanup block. If the block includes a normal cleanup, the |
| 845 | /// current insertion point is threaded through the cleanup, as are |
| 846 | /// any branch fixups on the cleanup. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 847 | void CodeGenFunction::PopCleanupBlock(bool FallthroughIsBranchThrough) { |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 848 | assert(!EHStack.empty() && "cleanup stack is empty!"); |
| 849 | assert(isa<EHCleanupScope>(*EHStack.begin()) && "top not a cleanup!"); |
| 850 | EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.begin()); |
| 851 | assert(Scope.getFixupDepth() <= EHStack.getNumBranchFixups()); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 852 | |
| 853 | // Remember activation information. |
| 854 | bool IsActive = Scope.isActive(); |
| 855 | llvm::Value *NormalActiveFlag = |
| 856 | Scope.shouldTestFlagInNormalCleanup() ? Scope.getActiveFlag() : 0; |
| 857 | llvm::Value *EHActiveFlag = |
| 858 | Scope.shouldTestFlagInEHCleanup() ? Scope.getActiveFlag() : 0; |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 859 | |
| 860 | // Check whether we need an EH cleanup. This is only true if we've |
| 861 | // generated a lazy EH cleanup block. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 862 | bool RequiresEHCleanup = Scope.hasEHBranches(); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 863 | |
| 864 | // Check the three conditions which might require a normal cleanup: |
| 865 | |
| 866 | // - whether there are branch fix-ups through this cleanup |
| 867 | unsigned FixupDepth = Scope.getFixupDepth(); |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 868 | bool HasFixups = EHStack.getNumBranchFixups() != FixupDepth; |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 869 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 870 | // - whether there are branch-throughs or branch-afters |
| 871 | bool HasExistingBranches = Scope.hasBranches(); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 872 | |
| 873 | // - whether there's a fallthrough |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 874 | llvm::BasicBlock *FallthroughSource = Builder.GetInsertBlock(); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 875 | bool HasFallthrough = (FallthroughSource != 0 && IsActive); |
| 876 | |
John McCall | e71d60d | 2010-10-05 20:48:15 +0000 | [diff] [blame] | 877 | // Branch-through fall-throughs leave the insertion point set to the |
| 878 | // end of the last cleanup, which points to the current scope. The |
| 879 | // rest of IR gen doesn't need to worry about this; it only happens |
| 880 | // during the execution of PopCleanupBlocks(). |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 881 | bool HasPrebranchedFallthrough = |
| 882 | (FallthroughSource && FallthroughSource->getTerminator()); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 883 | |
John McCall | e71d60d | 2010-10-05 20:48:15 +0000 | [diff] [blame] | 884 | // If this is a normal cleanup, then having a prebranched |
| 885 | // fallthrough implies that the fallthrough source unconditionally |
| 886 | // jumps here. |
| 887 | assert(!Scope.isNormalCleanup() || !HasPrebranchedFallthrough || |
| 888 | (Scope.getNormalBlock() && |
| 889 | FallthroughSource->getTerminator()->getSuccessor(0) |
| 890 | == Scope.getNormalBlock())); |
| 891 | |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 892 | bool RequiresNormalCleanup = false; |
| 893 | if (Scope.isNormalCleanup() && |
| 894 | (HasFixups || HasExistingBranches || HasFallthrough)) { |
| 895 | RequiresNormalCleanup = true; |
| 896 | } |
| 897 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 898 | // Even if we don't need the normal cleanup, we might still have |
| 899 | // prebranched fallthrough to worry about. |
John McCall | e71d60d | 2010-10-05 20:48:15 +0000 | [diff] [blame] | 900 | if (Scope.isNormalCleanup() && !RequiresNormalCleanup && |
| 901 | HasPrebranchedFallthrough) { |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 902 | assert(!IsActive); |
| 903 | |
| 904 | llvm::BasicBlock *NormalEntry = Scope.getNormalBlock(); |
| 905 | |
| 906 | // If we're branching through this cleanup, just forward the |
| 907 | // prebranched fallthrough to the next cleanup, leaving the insert |
| 908 | // point in the old block. |
| 909 | if (FallthroughIsBranchThrough) { |
| 910 | EHScope &S = *EHStack.find(Scope.getEnclosingNormalCleanup()); |
| 911 | llvm::BasicBlock *EnclosingEntry = |
| 912 | CreateNormalEntry(*this, cast<EHCleanupScope>(S)); |
| 913 | |
| 914 | ForwardPrebranchedFallthrough(FallthroughSource, |
| 915 | NormalEntry, EnclosingEntry); |
| 916 | assert(NormalEntry->use_empty() && |
| 917 | "uses of entry remain after forwarding?"); |
| 918 | delete NormalEntry; |
| 919 | |
| 920 | // Otherwise, we're branching out; just emit the next block. |
| 921 | } else { |
| 922 | EmitBlock(NormalEntry); |
| 923 | SimplifyCleanupEntry(*this, NormalEntry); |
| 924 | } |
| 925 | } |
| 926 | |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 927 | // If we don't need the cleanup at all, we're done. |
| 928 | if (!RequiresNormalCleanup && !RequiresEHCleanup) { |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 929 | EHStack.popCleanup(); // safe because there are no fixups |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 930 | assert(EHStack.getNumBranchFixups() == 0 || |
| 931 | EHStack.hasNormalCleanups()); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 932 | return; |
| 933 | } |
| 934 | |
| 935 | // Copy the cleanup emission data out. Note that SmallVector |
| 936 | // guarantees maximal alignment for its buffer regardless of its |
| 937 | // type parameter. |
| 938 | llvm::SmallVector<char, 8*sizeof(void*)> CleanupBuffer; |
| 939 | CleanupBuffer.reserve(Scope.getCleanupSize()); |
| 940 | memcpy(CleanupBuffer.data(), |
| 941 | Scope.getCleanupBuffer(), Scope.getCleanupSize()); |
| 942 | CleanupBuffer.set_size(Scope.getCleanupSize()); |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 943 | EHScopeStack::Cleanup *Fn = |
| 944 | reinterpret_cast<EHScopeStack::Cleanup*>(CleanupBuffer.data()); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 945 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 946 | // We want to emit the EH cleanup after the normal cleanup, but go |
| 947 | // ahead and do the setup for the EH cleanup while the scope is still |
| 948 | // alive. |
| 949 | llvm::BasicBlock *EHEntry = 0; |
| 950 | llvm::SmallVector<llvm::Instruction*, 2> EHInstsToAppend; |
| 951 | if (RequiresEHCleanup) { |
| 952 | EHEntry = CreateEHEntry(*this, Scope); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 953 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 954 | // Figure out the branch-through dest if necessary. |
| 955 | llvm::BasicBlock *EHBranchThroughDest = 0; |
| 956 | if (Scope.hasEHBranchThroughs()) { |
| 957 | assert(Scope.getEnclosingEHCleanup() != EHStack.stable_end()); |
| 958 | EHScope &S = *EHStack.find(Scope.getEnclosingEHCleanup()); |
| 959 | EHBranchThroughDest = CreateEHEntry(*this, cast<EHCleanupScope>(S)); |
| 960 | } |
| 961 | |
| 962 | // If we have exactly one branch-after and no branch-throughs, we |
| 963 | // can dispatch it without a switch. |
John McCall | 7cd4b06 | 2010-07-26 22:44:58 +0000 | [diff] [blame] | 964 | if (!Scope.hasEHBranchThroughs() && |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 965 | Scope.getNumEHBranchAfters() == 1) { |
| 966 | assert(!EHBranchThroughDest); |
| 967 | |
| 968 | // TODO: remove the spurious eh.cleanup.dest stores if this edge |
| 969 | // never went through any switches. |
| 970 | llvm::BasicBlock *BranchAfterDest = Scope.getEHBranchAfterBlock(0); |
| 971 | EHInstsToAppend.push_back(llvm::BranchInst::Create(BranchAfterDest)); |
| 972 | |
| 973 | // Otherwise, if we have any branch-afters, we need a switch. |
| 974 | } else if (Scope.getNumEHBranchAfters()) { |
| 975 | // The default of the switch belongs to the branch-throughs if |
| 976 | // they exist. |
| 977 | llvm::BasicBlock *Default = |
| 978 | (EHBranchThroughDest ? EHBranchThroughDest : getUnreachableBlock()); |
| 979 | |
| 980 | const unsigned SwitchCapacity = Scope.getNumEHBranchAfters(); |
| 981 | |
| 982 | llvm::LoadInst *Load = |
| 983 | new llvm::LoadInst(getEHCleanupDestSlot(), "cleanup.dest"); |
| 984 | llvm::SwitchInst *Switch = |
| 985 | llvm::SwitchInst::Create(Load, Default, SwitchCapacity); |
| 986 | |
| 987 | EHInstsToAppend.push_back(Load); |
| 988 | EHInstsToAppend.push_back(Switch); |
| 989 | |
| 990 | for (unsigned I = 0, E = Scope.getNumEHBranchAfters(); I != E; ++I) |
| 991 | Switch->addCase(Scope.getEHBranchAfterIndex(I), |
| 992 | Scope.getEHBranchAfterBlock(I)); |
| 993 | |
| 994 | // Otherwise, we have only branch-throughs; jump to the next EH |
| 995 | // cleanup. |
| 996 | } else { |
| 997 | assert(EHBranchThroughDest); |
| 998 | EHInstsToAppend.push_back(llvm::BranchInst::Create(EHBranchThroughDest)); |
| 999 | } |
| 1000 | } |
| 1001 | |
| 1002 | if (!RequiresNormalCleanup) { |
| 1003 | EHStack.popCleanup(); |
| 1004 | } else { |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1005 | // If we have a fallthrough and no other need for the cleanup, |
| 1006 | // emit it directly. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1007 | if (HasFallthrough && !HasPrebranchedFallthrough && |
| 1008 | !HasFixups && !HasExistingBranches) { |
| 1009 | |
| 1010 | // Fixups can cause us to optimistically create a normal block, |
| 1011 | // only to later have no real uses for it. Just delete it in |
| 1012 | // this case. |
| 1013 | // TODO: we can potentially simplify all the uses after this. |
| 1014 | if (Scope.getNormalBlock()) { |
| 1015 | Scope.getNormalBlock()->replaceAllUsesWith(getUnreachableBlock()); |
| 1016 | delete Scope.getNormalBlock(); |
| 1017 | } |
| 1018 | |
| 1019 | EHStack.popCleanup(); |
| 1020 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1021 | EmitCleanup(*this, Fn, /*ForEH*/ false, NormalActiveFlag); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1022 | |
| 1023 | // Otherwise, the best approach is to thread everything through |
| 1024 | // the cleanup block and then try to clean up after ourselves. |
| 1025 | } else { |
| 1026 | // Force the entry block to exist. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1027 | llvm::BasicBlock *NormalEntry = CreateNormalEntry(*this, Scope); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1028 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1029 | // I. Set up the fallthrough edge in. |
| 1030 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1031 | // If there's a fallthrough, we need to store the cleanup |
| 1032 | // destination index. For fall-throughs this is always zero. |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1033 | if (HasFallthrough) { |
| 1034 | if (!HasPrebranchedFallthrough) |
| 1035 | Builder.CreateStore(Builder.getInt32(0), getNormalCleanupDestSlot()); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1036 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1037 | // Otherwise, clear the IP if we don't have fallthrough because |
| 1038 | // the cleanup is inactive. We don't need to save it because |
| 1039 | // it's still just FallthroughSource. |
| 1040 | } else if (FallthroughSource) { |
| 1041 | assert(!IsActive && "source without fallthrough for active cleanup"); |
| 1042 | Builder.ClearInsertionPoint(); |
| 1043 | } |
| 1044 | |
| 1045 | // II. Emit the entry block. This implicitly branches to it if |
| 1046 | // we have fallthrough. All the fixups and existing branches |
| 1047 | // should already be branched to it. |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1048 | EmitBlock(NormalEntry); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1049 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1050 | // III. Figure out where we're going and build the cleanup |
| 1051 | // epilogue. |
| 1052 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1053 | bool HasEnclosingCleanups = |
| 1054 | (Scope.getEnclosingNormalCleanup() != EHStack.stable_end()); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1055 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1056 | // Compute the branch-through dest if we need it: |
| 1057 | // - if there are branch-throughs threaded through the scope |
| 1058 | // - if fall-through is a branch-through |
| 1059 | // - if there are fixups that will be optimistically forwarded |
| 1060 | // to the enclosing cleanup |
| 1061 | llvm::BasicBlock *BranchThroughDest = 0; |
| 1062 | if (Scope.hasBranchThroughs() || |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1063 | (FallthroughSource && FallthroughIsBranchThrough) || |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1064 | (HasFixups && HasEnclosingCleanups)) { |
| 1065 | assert(HasEnclosingCleanups); |
| 1066 | EHScope &S = *EHStack.find(Scope.getEnclosingNormalCleanup()); |
| 1067 | BranchThroughDest = CreateNormalEntry(*this, cast<EHCleanupScope>(S)); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1068 | } |
| 1069 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1070 | llvm::BasicBlock *FallthroughDest = 0; |
| 1071 | llvm::SmallVector<llvm::Instruction*, 2> InstsToAppend; |
| 1072 | |
| 1073 | // If there's exactly one branch-after and no other threads, |
| 1074 | // we can route it without a switch. |
| 1075 | if (!Scope.hasBranchThroughs() && !HasFixups && !HasFallthrough && |
| 1076 | Scope.getNumBranchAfters() == 1) { |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1077 | assert(!BranchThroughDest || !IsActive); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1078 | |
| 1079 | // TODO: clean up the possibly dead stores to the cleanup dest slot. |
| 1080 | llvm::BasicBlock *BranchAfter = Scope.getBranchAfterBlock(0); |
| 1081 | InstsToAppend.push_back(llvm::BranchInst::Create(BranchAfter)); |
| 1082 | |
| 1083 | // Build a switch-out if we need it: |
| 1084 | // - if there are branch-afters threaded through the scope |
| 1085 | // - if fall-through is a branch-after |
| 1086 | // - if there are fixups that have nowhere left to go and |
| 1087 | // so must be immediately resolved |
| 1088 | } else if (Scope.getNumBranchAfters() || |
| 1089 | (HasFallthrough && !FallthroughIsBranchThrough) || |
| 1090 | (HasFixups && !HasEnclosingCleanups)) { |
| 1091 | |
| 1092 | llvm::BasicBlock *Default = |
| 1093 | (BranchThroughDest ? BranchThroughDest : getUnreachableBlock()); |
| 1094 | |
| 1095 | // TODO: base this on the number of branch-afters and fixups |
| 1096 | const unsigned SwitchCapacity = 10; |
| 1097 | |
| 1098 | llvm::LoadInst *Load = |
| 1099 | new llvm::LoadInst(getNormalCleanupDestSlot(), "cleanup.dest"); |
| 1100 | llvm::SwitchInst *Switch = |
| 1101 | llvm::SwitchInst::Create(Load, Default, SwitchCapacity); |
| 1102 | |
| 1103 | InstsToAppend.push_back(Load); |
| 1104 | InstsToAppend.push_back(Switch); |
| 1105 | |
| 1106 | // Branch-after fallthrough. |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1107 | if (FallthroughSource && !FallthroughIsBranchThrough) { |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1108 | FallthroughDest = createBasicBlock("cleanup.cont"); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1109 | if (HasFallthrough) |
| 1110 | Switch->addCase(Builder.getInt32(0), FallthroughDest); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1111 | } |
| 1112 | |
| 1113 | for (unsigned I = 0, E = Scope.getNumBranchAfters(); I != E; ++I) { |
| 1114 | Switch->addCase(Scope.getBranchAfterIndex(I), |
| 1115 | Scope.getBranchAfterBlock(I)); |
| 1116 | } |
| 1117 | |
John McCall | 8abdbd8 | 2010-09-18 02:24:39 +0000 | [diff] [blame] | 1118 | // If there aren't any enclosing cleanups, we can resolve all |
| 1119 | // the fixups now. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1120 | if (HasFixups && !HasEnclosingCleanups) |
John McCall | 8abdbd8 | 2010-09-18 02:24:39 +0000 | [diff] [blame] | 1121 | ResolveAllBranchFixups(*this, Switch, NormalEntry); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1122 | } else { |
| 1123 | // We should always have a branch-through destination in this case. |
| 1124 | assert(BranchThroughDest); |
| 1125 | InstsToAppend.push_back(llvm::BranchInst::Create(BranchThroughDest)); |
| 1126 | } |
| 1127 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1128 | // IV. Pop the cleanup and emit it. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1129 | EHStack.popCleanup(); |
| 1130 | assert(EHStack.hasNormalCleanups() == HasEnclosingCleanups); |
| 1131 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1132 | EmitCleanup(*this, Fn, /*ForEH*/ false, NormalActiveFlag); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1133 | |
| 1134 | // Append the prepared cleanup prologue from above. |
| 1135 | llvm::BasicBlock *NormalExit = Builder.GetInsertBlock(); |
| 1136 | for (unsigned I = 0, E = InstsToAppend.size(); I != E; ++I) |
| 1137 | NormalExit->getInstList().push_back(InstsToAppend[I]); |
| 1138 | |
| 1139 | // Optimistically hope that any fixups will continue falling through. |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1140 | for (unsigned I = FixupDepth, E = EHStack.getNumBranchFixups(); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1141 | I < E; ++I) { |
| 1142 | BranchFixup &Fixup = CGF.EHStack.getBranchFixup(I); |
| 1143 | if (!Fixup.Destination) continue; |
| 1144 | if (!Fixup.OptimisticBranchBlock) { |
| 1145 | new llvm::StoreInst(Builder.getInt32(Fixup.DestinationIndex), |
| 1146 | getNormalCleanupDestSlot(), |
| 1147 | Fixup.InitialBranch); |
| 1148 | Fixup.InitialBranch->setSuccessor(0, NormalEntry); |
| 1149 | } |
| 1150 | Fixup.OptimisticBranchBlock = NormalExit; |
| 1151 | } |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1152 | |
| 1153 | // V. Set up the fallthrough edge out. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1154 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1155 | // Case 1: a fallthrough source exists but shouldn't branch to |
| 1156 | // the cleanup because the cleanup is inactive. |
| 1157 | if (!HasFallthrough && FallthroughSource) { |
| 1158 | assert(!IsActive); |
| 1159 | |
| 1160 | // If we have a prebranched fallthrough, that needs to be |
| 1161 | // forwarded to the right block. |
| 1162 | if (HasPrebranchedFallthrough) { |
| 1163 | llvm::BasicBlock *Next; |
| 1164 | if (FallthroughIsBranchThrough) { |
| 1165 | Next = BranchThroughDest; |
| 1166 | assert(!FallthroughDest); |
| 1167 | } else { |
| 1168 | Next = FallthroughDest; |
| 1169 | } |
| 1170 | |
| 1171 | ForwardPrebranchedFallthrough(FallthroughSource, NormalEntry, Next); |
| 1172 | } |
| 1173 | Builder.SetInsertPoint(FallthroughSource); |
| 1174 | |
| 1175 | // Case 2: a fallthrough source exists and should branch to the |
| 1176 | // cleanup, but we're not supposed to branch through to the next |
| 1177 | // cleanup. |
| 1178 | } else if (HasFallthrough && FallthroughDest) { |
| 1179 | assert(!FallthroughIsBranchThrough); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1180 | EmitBlock(FallthroughDest); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1181 | |
| 1182 | // Case 3: a fallthrough source exists and should branch to the |
| 1183 | // cleanup and then through to the next. |
| 1184 | } else if (HasFallthrough) { |
| 1185 | // Everything is already set up for this. |
| 1186 | |
| 1187 | // Case 4: no fallthrough source exists. |
| 1188 | } else { |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1189 | Builder.ClearInsertionPoint(); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1190 | } |
| 1191 | |
| 1192 | // VI. Assorted cleaning. |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1193 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1194 | // Check whether we can merge NormalEntry into a single predecessor. |
| 1195 | // This might invalidate (non-IR) pointers to NormalEntry. |
| 1196 | llvm::BasicBlock *NewNormalEntry = |
| 1197 | SimplifyCleanupEntry(*this, NormalEntry); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1198 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1199 | // If it did invalidate those pointers, and NormalEntry was the same |
| 1200 | // as NormalExit, go back and patch up the fixups. |
| 1201 | if (NewNormalEntry != NormalEntry && NormalEntry == NormalExit) |
| 1202 | for (unsigned I = FixupDepth, E = EHStack.getNumBranchFixups(); |
| 1203 | I < E; ++I) |
| 1204 | CGF.EHStack.getBranchFixup(I).OptimisticBranchBlock = NewNormalEntry; |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1205 | } |
| 1206 | } |
| 1207 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1208 | assert(EHStack.hasNormalCleanups() || EHStack.getNumBranchFixups() == 0); |
| 1209 | |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1210 | // Emit the EH cleanup if required. |
| 1211 | if (RequiresEHCleanup) { |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1212 | CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1213 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1214 | EmitBlock(EHEntry); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1215 | EmitCleanup(*this, Fn, /*ForEH*/ true, EHActiveFlag); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1216 | |
| 1217 | // Append the prepared cleanup prologue from above. |
| 1218 | llvm::BasicBlock *EHExit = Builder.GetInsertBlock(); |
| 1219 | for (unsigned I = 0, E = EHInstsToAppend.size(); I != E; ++I) |
| 1220 | EHExit->getInstList().push_back(EHInstsToAppend[I]); |
| 1221 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1222 | Builder.restoreIP(SavedIP); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1223 | |
| 1224 | SimplifyCleanupEntry(*this, EHEntry); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1225 | } |
| 1226 | } |
| 1227 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1228 | /// Terminate the current block by emitting a branch which might leave |
| 1229 | /// the current cleanup-protected scope. The target scope may not yet |
| 1230 | /// be known, in which case this will require a fixup. |
| 1231 | /// |
| 1232 | /// As a side-effect, this method clears the insertion point. |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1233 | void CodeGenFunction::EmitBranchThroughCleanup(JumpDest Dest) { |
John McCall | 413e677 | 2010-07-28 01:07:35 +0000 | [diff] [blame] | 1234 | assert(Dest.getScopeDepth().encloses(EHStack.getInnermostNormalCleanup()) |
| 1235 | && "stale jump destination"); |
| 1236 | |
Anders Carlsson | 46831a9 | 2009-02-08 22:13:37 +0000 | [diff] [blame] | 1237 | if (!HaveInsertPoint()) |
| 1238 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1239 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1240 | // Create the branch. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1241 | llvm::BranchInst *BI = Builder.CreateBr(Dest.getBlock()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1242 | |
John McCall | 838d796 | 2010-08-14 07:46:19 +0000 | [diff] [blame] | 1243 | // Calculate the innermost active normal cleanup. |
| 1244 | EHScopeStack::stable_iterator |
| 1245 | TopCleanup = EHStack.getInnermostActiveNormalCleanup(); |
| 1246 | |
| 1247 | // If we're not in an active normal cleanup scope, or if the |
| 1248 | // destination scope is within the innermost active normal cleanup |
| 1249 | // scope, we don't need to worry about fixups. |
| 1250 | if (TopCleanup == EHStack.stable_end() || |
| 1251 | TopCleanup.encloses(Dest.getScopeDepth())) { // works for invalid |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1252 | Builder.ClearInsertionPoint(); |
| 1253 | return; |
| 1254 | } |
| 1255 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1256 | // If we can't resolve the destination cleanup scope, just add this |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1257 | // to the current cleanup scope as a branch fixup. |
| 1258 | if (!Dest.getScopeDepth().isValid()) { |
| 1259 | BranchFixup &Fixup = EHStack.addBranchFixup(); |
| 1260 | Fixup.Destination = Dest.getBlock(); |
| 1261 | Fixup.DestinationIndex = Dest.getDestIndex(); |
| 1262 | Fixup.InitialBranch = BI; |
| 1263 | Fixup.OptimisticBranchBlock = 0; |
| 1264 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1265 | Builder.ClearInsertionPoint(); |
| 1266 | return; |
| 1267 | } |
| 1268 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1269 | // Otherwise, thread through all the normal cleanups in scope. |
| 1270 | |
| 1271 | // Store the index at the start. |
| 1272 | llvm::ConstantInt *Index = Builder.getInt32(Dest.getDestIndex()); |
| 1273 | new llvm::StoreInst(Index, getNormalCleanupDestSlot(), BI); |
| 1274 | |
| 1275 | // Adjust BI to point to the first cleanup block. |
| 1276 | { |
| 1277 | EHCleanupScope &Scope = |
John McCall | 838d796 | 2010-08-14 07:46:19 +0000 | [diff] [blame] | 1278 | cast<EHCleanupScope>(*EHStack.find(TopCleanup)); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1279 | BI->setSuccessor(0, CreateNormalEntry(*this, Scope)); |
| 1280 | } |
| 1281 | |
| 1282 | // Add this destination to all the scopes involved. |
John McCall | 838d796 | 2010-08-14 07:46:19 +0000 | [diff] [blame] | 1283 | EHScopeStack::stable_iterator I = TopCleanup; |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1284 | EHScopeStack::stable_iterator E = Dest.getScopeDepth(); |
| 1285 | if (E.strictlyEncloses(I)) { |
| 1286 | while (true) { |
| 1287 | EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.find(I)); |
| 1288 | assert(Scope.isNormalCleanup()); |
| 1289 | I = Scope.getEnclosingNormalCleanup(); |
| 1290 | |
| 1291 | // If this is the last cleanup we're propagating through, tell it |
| 1292 | // that there's a resolved jump moving through it. |
| 1293 | if (!E.strictlyEncloses(I)) { |
| 1294 | Scope.addBranchAfter(Index, Dest.getBlock()); |
| 1295 | break; |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 1296 | } |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1297 | |
| 1298 | // Otherwise, tell the scope that there's a jump propoagating |
| 1299 | // through it. If this isn't new information, all the rest of |
| 1300 | // the work has been done before. |
| 1301 | if (!Scope.addBranchThrough(Dest.getBlock())) |
| 1302 | break; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1303 | } |
| 1304 | } |
| 1305 | |
Anders Carlsson | 46831a9 | 2009-02-08 22:13:37 +0000 | [diff] [blame] | 1306 | Builder.ClearInsertionPoint(); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1307 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1308 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1309 | void CodeGenFunction::EmitBranchThroughEHCleanup(UnwindDest Dest) { |
| 1310 | // We should never get invalid scope depths for an UnwindDest; that |
| 1311 | // implies that the destination wasn't set up correctly. |
| 1312 | assert(Dest.getScopeDepth().isValid() && "invalid scope depth on EH dest?"); |
| 1313 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1314 | if (!HaveInsertPoint()) |
Anders Carlsson | 87eaf17 | 2009-02-08 00:50:42 +0000 | [diff] [blame] | 1315 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1316 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1317 | // Create the branch. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1318 | llvm::BranchInst *BI = Builder.CreateBr(Dest.getBlock()); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1319 | |
John McCall | 838d796 | 2010-08-14 07:46:19 +0000 | [diff] [blame] | 1320 | // Calculate the innermost active cleanup. |
| 1321 | EHScopeStack::stable_iterator |
| 1322 | InnermostCleanup = EHStack.getInnermostActiveEHCleanup(); |
| 1323 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1324 | // If the destination is in the same EH cleanup scope as us, we |
| 1325 | // don't need to thread through anything. |
John McCall | 838d796 | 2010-08-14 07:46:19 +0000 | [diff] [blame] | 1326 | if (InnermostCleanup.encloses(Dest.getScopeDepth())) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1327 | Builder.ClearInsertionPoint(); |
Anders Carlsson | 87eaf17 | 2009-02-08 00:50:42 +0000 | [diff] [blame] | 1328 | return; |
| 1329 | } |
John McCall | 838d796 | 2010-08-14 07:46:19 +0000 | [diff] [blame] | 1330 | assert(InnermostCleanup != EHStack.stable_end()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1331 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1332 | // Store the index at the start. |
| 1333 | llvm::ConstantInt *Index = Builder.getInt32(Dest.getDestIndex()); |
| 1334 | new llvm::StoreInst(Index, getEHCleanupDestSlot(), BI); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1335 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1336 | // Adjust BI to point to the first cleanup block. |
| 1337 | { |
| 1338 | EHCleanupScope &Scope = |
John McCall | 838d796 | 2010-08-14 07:46:19 +0000 | [diff] [blame] | 1339 | cast<EHCleanupScope>(*EHStack.find(InnermostCleanup)); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1340 | BI->setSuccessor(0, CreateEHEntry(*this, Scope)); |
| 1341 | } |
| 1342 | |
| 1343 | // Add this destination to all the scopes involved. |
| 1344 | for (EHScopeStack::stable_iterator |
John McCall | 838d796 | 2010-08-14 07:46:19 +0000 | [diff] [blame] | 1345 | I = InnermostCleanup, E = Dest.getScopeDepth(); ; ) { |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1346 | assert(E.strictlyEncloses(I)); |
| 1347 | EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.find(I)); |
| 1348 | assert(Scope.isEHCleanup()); |
| 1349 | I = Scope.getEnclosingEHCleanup(); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1350 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1351 | // If this is the last cleanup we're propagating through, add this |
| 1352 | // as a branch-after. |
| 1353 | if (I == E) { |
| 1354 | Scope.addEHBranchAfter(Index, Dest.getBlock()); |
| 1355 | break; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1356 | } |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1357 | |
| 1358 | // Otherwise, add it as a branch-through. If this isn't new |
| 1359 | // information, all the rest of the work has been done before. |
| 1360 | if (!Scope.addEHBranchThrough(Dest.getBlock())) |
| 1361 | break; |
Anders Carlsson | 87eaf17 | 2009-02-08 00:50:42 +0000 | [diff] [blame] | 1362 | } |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1363 | |
| 1364 | Builder.ClearInsertionPoint(); |
Anders Carlsson | 87eaf17 | 2009-02-08 00:50:42 +0000 | [diff] [blame] | 1365 | } |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1366 | |
| 1367 | /// All the branch fixups on the EH stack have propagated out past the |
| 1368 | /// outermost normal cleanup; resolve them all by adding cases to the |
| 1369 | /// given switch instruction. |
John McCall | 8abdbd8 | 2010-09-18 02:24:39 +0000 | [diff] [blame] | 1370 | static void ResolveAllBranchFixups(CodeGenFunction &CGF, |
| 1371 | llvm::SwitchInst *Switch, |
| 1372 | llvm::BasicBlock *CleanupEntry) { |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1373 | llvm::SmallPtrSet<llvm::BasicBlock*, 4> CasesAdded; |
| 1374 | |
John McCall | 8abdbd8 | 2010-09-18 02:24:39 +0000 | [diff] [blame] | 1375 | for (unsigned I = 0, E = CGF.EHStack.getNumBranchFixups(); I != E; ++I) { |
John McCall | 0680e97 | 2010-10-05 02:33:56 +0000 | [diff] [blame] | 1376 | // Skip this fixup if its destination isn't set. |
John McCall | 8abdbd8 | 2010-09-18 02:24:39 +0000 | [diff] [blame] | 1377 | BranchFixup &Fixup = CGF.EHStack.getBranchFixup(I); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1378 | if (Fixup.Destination == 0) continue; |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1379 | |
John McCall | 8abdbd8 | 2010-09-18 02:24:39 +0000 | [diff] [blame] | 1380 | // If there isn't an OptimisticBranchBlock, then InitialBranch is |
| 1381 | // still pointing directly to its destination; forward it to the |
| 1382 | // appropriate cleanup entry. This is required in the specific |
| 1383 | // case of |
| 1384 | // { std::string s; goto lbl; } |
| 1385 | // lbl: |
| 1386 | // i.e. where there's an unresolved fixup inside a single cleanup |
| 1387 | // entry which we're currently popping. |
| 1388 | if (Fixup.OptimisticBranchBlock == 0) { |
| 1389 | new llvm::StoreInst(CGF.Builder.getInt32(Fixup.DestinationIndex), |
| 1390 | CGF.getNormalCleanupDestSlot(), |
| 1391 | Fixup.InitialBranch); |
| 1392 | Fixup.InitialBranch->setSuccessor(0, CleanupEntry); |
| 1393 | } |
| 1394 | |
John McCall | 0680e97 | 2010-10-05 02:33:56 +0000 | [diff] [blame] | 1395 | // Don't add this case to the switch statement twice. |
| 1396 | if (!CasesAdded.insert(Fixup.Destination)) continue; |
| 1397 | |
John McCall | 8abdbd8 | 2010-09-18 02:24:39 +0000 | [diff] [blame] | 1398 | Switch->addCase(CGF.Builder.getInt32(Fixup.DestinationIndex), |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1399 | Fixup.Destination); |
| 1400 | } |
| 1401 | |
John McCall | 8abdbd8 | 2010-09-18 02:24:39 +0000 | [diff] [blame] | 1402 | CGF.EHStack.clearFixups(); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1403 | } |
| 1404 | |
| 1405 | void CodeGenFunction::ResolveBranchFixups(llvm::BasicBlock *Block) { |
| 1406 | assert(Block && "resolving a null target block"); |
| 1407 | if (!EHStack.getNumBranchFixups()) return; |
| 1408 | |
| 1409 | assert(EHStack.hasNormalCleanups() && |
| 1410 | "branch fixups exist with no normal cleanups on stack"); |
| 1411 | |
| 1412 | llvm::SmallPtrSet<llvm::BasicBlock*, 4> ModifiedOptimisticBlocks; |
| 1413 | bool ResolvedAny = false; |
| 1414 | |
| 1415 | for (unsigned I = 0, E = EHStack.getNumBranchFixups(); I != E; ++I) { |
| 1416 | // Skip this fixup if its destination doesn't match. |
| 1417 | BranchFixup &Fixup = EHStack.getBranchFixup(I); |
| 1418 | if (Fixup.Destination != Block) continue; |
| 1419 | |
| 1420 | Fixup.Destination = 0; |
| 1421 | ResolvedAny = true; |
| 1422 | |
| 1423 | // If it doesn't have an optimistic branch block, LatestBranch is |
| 1424 | // already pointing to the right place. |
| 1425 | llvm::BasicBlock *BranchBB = Fixup.OptimisticBranchBlock; |
| 1426 | if (!BranchBB) |
| 1427 | continue; |
| 1428 | |
| 1429 | // Don't process the same optimistic branch block twice. |
| 1430 | if (!ModifiedOptimisticBlocks.insert(BranchBB)) |
| 1431 | continue; |
| 1432 | |
| 1433 | llvm::SwitchInst *Switch = TransitionToCleanupSwitch(*this, BranchBB); |
| 1434 | |
| 1435 | // Add a case to the switch. |
| 1436 | Switch->addCase(Builder.getInt32(Fixup.DestinationIndex), Block); |
| 1437 | } |
| 1438 | |
| 1439 | if (ResolvedAny) |
| 1440 | EHStack.popNullFixups(); |
| 1441 | } |
| 1442 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1443 | static bool IsUsedAsNormalCleanup(EHScopeStack &EHStack, |
| 1444 | EHScopeStack::stable_iterator C) { |
| 1445 | // If we needed a normal block for any reason, that counts. |
| 1446 | if (cast<EHCleanupScope>(*EHStack.find(C)).getNormalBlock()) |
| 1447 | return true; |
| 1448 | |
| 1449 | // Check whether any enclosed cleanups were needed. |
| 1450 | for (EHScopeStack::stable_iterator |
| 1451 | I = EHStack.getInnermostNormalCleanup(); |
| 1452 | I != C; ) { |
| 1453 | assert(C.strictlyEncloses(I)); |
| 1454 | EHCleanupScope &S = cast<EHCleanupScope>(*EHStack.find(I)); |
| 1455 | if (S.getNormalBlock()) return true; |
| 1456 | I = S.getEnclosingNormalCleanup(); |
| 1457 | } |
| 1458 | |
| 1459 | return false; |
| 1460 | } |
| 1461 | |
| 1462 | static bool IsUsedAsEHCleanup(EHScopeStack &EHStack, |
| 1463 | EHScopeStack::stable_iterator C) { |
| 1464 | // If we needed an EH block for any reason, that counts. |
| 1465 | if (cast<EHCleanupScope>(*EHStack.find(C)).getEHBlock()) |
| 1466 | return true; |
| 1467 | |
| 1468 | // Check whether any enclosed cleanups were needed. |
| 1469 | for (EHScopeStack::stable_iterator |
| 1470 | I = EHStack.getInnermostEHCleanup(); I != C; ) { |
| 1471 | assert(C.strictlyEncloses(I)); |
| 1472 | EHCleanupScope &S = cast<EHCleanupScope>(*EHStack.find(I)); |
| 1473 | if (S.getEHBlock()) return true; |
| 1474 | I = S.getEnclosingEHCleanup(); |
| 1475 | } |
| 1476 | |
| 1477 | return false; |
| 1478 | } |
| 1479 | |
| 1480 | enum ForActivation_t { |
| 1481 | ForActivation, |
| 1482 | ForDeactivation |
| 1483 | }; |
| 1484 | |
| 1485 | /// The given cleanup block is changing activation state. Configure a |
| 1486 | /// cleanup variable if necessary. |
| 1487 | /// |
| 1488 | /// It would be good if we had some way of determining if there were |
| 1489 | /// extra uses *after* the change-over point. |
| 1490 | static void SetupCleanupBlockActivation(CodeGenFunction &CGF, |
| 1491 | EHScopeStack::stable_iterator C, |
| 1492 | ForActivation_t Kind) { |
| 1493 | EHCleanupScope &Scope = cast<EHCleanupScope>(*CGF.EHStack.find(C)); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1494 | |
John McCall | 3019c44 | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1495 | // We always need the flag if we're activating the cleanup, because |
| 1496 | // we have to assume that the current location doesn't necessarily |
| 1497 | // dominate all future uses of the cleanup. |
| 1498 | bool NeedFlag = (Kind == ForActivation); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1499 | |
| 1500 | // Calculate whether the cleanup was used: |
| 1501 | |
| 1502 | // - as a normal cleanup |
| 1503 | if (Scope.isNormalCleanup() && IsUsedAsNormalCleanup(CGF.EHStack, C)) { |
| 1504 | Scope.setTestFlagInNormalCleanup(); |
| 1505 | NeedFlag = true; |
| 1506 | } |
| 1507 | |
| 1508 | // - as an EH cleanup |
| 1509 | if (Scope.isEHCleanup() && IsUsedAsEHCleanup(CGF.EHStack, C)) { |
| 1510 | Scope.setTestFlagInEHCleanup(); |
| 1511 | NeedFlag = true; |
| 1512 | } |
| 1513 | |
| 1514 | // If it hasn't yet been used as either, we're done. |
| 1515 | if (!NeedFlag) return; |
| 1516 | |
John McCall | 3019c44 | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1517 | llvm::AllocaInst *Var = Scope.getActiveFlag(); |
| 1518 | if (!Var) { |
| 1519 | Var = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(), "cleanup.isactive"); |
| 1520 | Scope.setActiveFlag(Var); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1521 | |
John McCall | 3019c44 | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1522 | // Initialize to true or false depending on whether it was |
| 1523 | // active up to this point. |
| 1524 | CGF.InitTempAlloca(Var, CGF.Builder.getInt1(Kind == ForDeactivation)); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1525 | } |
John McCall | 3019c44 | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1526 | |
| 1527 | CGF.Builder.CreateStore(CGF.Builder.getInt1(Kind == ForActivation), Var); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1528 | } |
| 1529 | |
John McCall | cd2d2b7 | 2010-08-13 21:20:51 +0000 | [diff] [blame] | 1530 | /// Activate a cleanup that was created in an inactivated state. |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1531 | void CodeGenFunction::ActivateCleanupBlock(EHScopeStack::stable_iterator C) { |
John McCall | cd2d2b7 | 2010-08-13 21:20:51 +0000 | [diff] [blame] | 1532 | assert(C != EHStack.stable_end() && "activating bottom of stack?"); |
| 1533 | EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.find(C)); |
| 1534 | assert(!Scope.isActive() && "double activation"); |
| 1535 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1536 | SetupCleanupBlockActivation(*this, C, ForActivation); |
John McCall | cd2d2b7 | 2010-08-13 21:20:51 +0000 | [diff] [blame] | 1537 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1538 | Scope.setActive(true); |
| 1539 | } |
John McCall | cd2d2b7 | 2010-08-13 21:20:51 +0000 | [diff] [blame] | 1540 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1541 | /// Deactive a cleanup that was created in an active state. |
| 1542 | void CodeGenFunction::DeactivateCleanupBlock(EHScopeStack::stable_iterator C) { |
| 1543 | assert(C != EHStack.stable_end() && "deactivating bottom of stack?"); |
| 1544 | EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.find(C)); |
John McCall | 3019c44 | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1545 | assert(Scope.isActive() && "double deactivation"); |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1546 | |
| 1547 | // If it's the top of the stack, just pop it. |
| 1548 | if (C == EHStack.stable_begin()) { |
| 1549 | // If it's a normal cleanup, we need to pretend that the |
| 1550 | // fallthrough is unreachable. |
| 1551 | CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); |
| 1552 | PopCleanupBlock(); |
| 1553 | Builder.restoreIP(SavedIP); |
| 1554 | return; |
John McCall | cd2d2b7 | 2010-08-13 21:20:51 +0000 | [diff] [blame] | 1555 | } |
| 1556 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1557 | // Otherwise, follow the general case. |
| 1558 | SetupCleanupBlockActivation(*this, C, ForDeactivation); |
John McCall | cd2d2b7 | 2010-08-13 21:20:51 +0000 | [diff] [blame] | 1559 | |
John McCall | 7d8647f | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1560 | Scope.setActive(false); |
John McCall | cd2d2b7 | 2010-08-13 21:20:51 +0000 | [diff] [blame] | 1561 | } |
| 1562 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1563 | llvm::Value *CodeGenFunction::getNormalCleanupDestSlot() { |
| 1564 | if (!NormalCleanupDest) |
| 1565 | NormalCleanupDest = |
| 1566 | CreateTempAlloca(Builder.getInt32Ty(), "cleanup.dest.slot"); |
| 1567 | return NormalCleanupDest; |
| 1568 | } |
| 1569 | |
| 1570 | llvm::Value *CodeGenFunction::getEHCleanupDestSlot() { |
| 1571 | if (!EHCleanupDest) |
| 1572 | EHCleanupDest = |
| 1573 | CreateTempAlloca(Builder.getInt32Ty(), "eh.cleanup.dest.slot"); |
| 1574 | return EHCleanupDest; |
| 1575 | } |
Devang Patel | 8d30838 | 2010-08-10 07:24:25 +0000 | [diff] [blame] | 1576 | |
| 1577 | void CodeGenFunction::EmitDeclRefExprDbgValue(const DeclRefExpr *E, |
John McCall | 189d6ef | 2010-10-09 01:34:31 +0000 | [diff] [blame] | 1578 | llvm::Constant *Init) { |
Devang Patel | 25c2c8f | 2010-08-10 17:53:33 +0000 | [diff] [blame] | 1579 | assert (Init && "Invalid DeclRefExpr initializer!"); |
| 1580 | if (CGDebugInfo *Dbg = getDebugInfo()) |
Devang Patel | d2829b7 | 2010-10-06 15:58:57 +0000 | [diff] [blame] | 1581 | Dbg->EmitGlobalVariable(E->getDecl(), Init); |
Devang Patel | 8d30838 | 2010-08-10 07:24:25 +0000 | [diff] [blame] | 1582 | } |