Anders Carlsson | 5b95592 | 2009-11-24 05:51:11 +0000 | [diff] [blame] | 1 | //===--- CGTemporaries.cpp - Emit LLVM Code for C++ temporaries -----------===// |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This contains code dealing with C++ code generation of temporaries |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenFunction.h" |
| 15 | using namespace clang; |
| 16 | using namespace CodeGen; |
| 17 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 18 | void CodeGenFunction::PushCXXTemporary(const CXXTemporary *Temporary, |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 19 | llvm::Value *Ptr) { |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 20 | llvm::BasicBlock *DtorBlock = createBasicBlock("temp.dtor"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 21 | |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 22 | llvm::Value *CondPtr = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 23 | |
| 24 | // Check if temporaries need to be conditional. If so, we'll create a |
| 25 | // condition boolean, initialize it to 0 and |
Anders Carlsson | a36bf8f | 2009-11-20 17:27:56 +0000 | [diff] [blame] | 26 | if (ConditionalBranchLevel != 0) { |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 27 | CondPtr = CreateTempAlloca(llvm::Type::getInt1Ty(VMContext), "cond"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 28 | |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 29 | // Initialize it to false. This initialization takes place right after |
| 30 | // the alloca insert point. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 31 | llvm::StoreInst *SI = |
Owen Anderson | 3b144ba | 2009-07-31 17:39:36 +0000 | [diff] [blame] | 32 | new llvm::StoreInst(llvm::ConstantInt::getFalse(VMContext), CondPtr); |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 33 | llvm::BasicBlock *Block = AllocaInsertPt->getParent(); |
| 34 | Block->getInstList().insertAfter((llvm::Instruction *)AllocaInsertPt, SI); |
| 35 | |
| 36 | // Now set it to true. |
Owen Anderson | 3b144ba | 2009-07-31 17:39:36 +0000 | [diff] [blame] | 37 | Builder.CreateStore(llvm::ConstantInt::getTrue(VMContext), CondPtr); |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 38 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 39 | |
| 40 | LiveTemporaries.push_back(CXXLiveTemporaryInfo(Temporary, Ptr, DtorBlock, |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 41 | CondPtr)); |
Anders Carlsson | d8bc5a9 | 2009-06-04 02:08:08 +0000 | [diff] [blame] | 42 | |
| 43 | PushCleanupBlock(DtorBlock); |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 44 | } |
| 45 | |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 46 | void CodeGenFunction::PopCXXTemporary() { |
| 47 | const CXXLiveTemporaryInfo& Info = LiveTemporaries.back(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 48 | |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 49 | CleanupBlockInfo CleanupInfo = PopCleanupBlock(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 50 | assert(CleanupInfo.CleanupBlock == Info.DtorBlock && |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 51 | "Cleanup block mismatch!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 52 | assert(!CleanupInfo.SwitchBlock && |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 53 | "Should not have a switch block for temporary cleanup!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 54 | assert(!CleanupInfo.EndBlock && |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 55 | "Should not have an end block for temporary cleanup!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 56 | |
Anders Carlsson | 283e4d5 | 2009-09-14 01:30:44 +0000 | [diff] [blame] | 57 | llvm::BasicBlock *CurBB = Builder.GetInsertBlock(); |
| 58 | if (CurBB && !CurBB->getTerminator() && |
| 59 | Info.DtorBlock->getNumUses() == 0) { |
| 60 | CurBB->getInstList().splice(CurBB->end(), Info.DtorBlock->getInstList()); |
| 61 | delete Info.DtorBlock; |
| 62 | } else |
| 63 | EmitBlock(Info.DtorBlock); |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 64 | |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 65 | llvm::BasicBlock *CondEnd = 0; |
| 66 | |
| 67 | // If this is a conditional temporary, we need to check the condition |
| 68 | // boolean and only call the destructor if it's true. |
| 69 | if (Info.CondPtr) { |
| 70 | llvm::BasicBlock *CondBlock = createBasicBlock("cond.dtor.call"); |
| 71 | CondEnd = createBasicBlock("cond.dtor.end"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 72 | |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 73 | llvm::Value *Cond = Builder.CreateLoad(Info.CondPtr); |
| 74 | Builder.CreateCondBr(Cond, CondBlock, CondEnd); |
| 75 | EmitBlock(CondBlock); |
| 76 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 77 | |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 78 | EmitCXXDestructorCall(Info.Temporary->getDestructor(), |
| 79 | Dtor_Complete, Info.ThisPtr); |
| 80 | |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 81 | if (CondEnd) { |
| 82 | // Reset the condition. to false. |
Owen Anderson | 3b144ba | 2009-07-31 17:39:36 +0000 | [diff] [blame] | 83 | Builder.CreateStore(llvm::ConstantInt::getFalse(VMContext), Info.CondPtr); |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 84 | EmitBlock(CondEnd); |
| 85 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 86 | |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 87 | LiveTemporaries.pop_back(); |
| 88 | } |
| 89 | |
| 90 | RValue |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 91 | CodeGenFunction::EmitCXXExprWithTemporaries(const CXXExprWithTemporaries *E, |
| 92 | llvm::Value *AggLoc, |
Anders Carlsson | 14c5cbf | 2009-08-16 07:36:22 +0000 | [diff] [blame] | 93 | bool IsAggLocVolatile, |
| 94 | bool IsInitializer) { |
Anders Carlsson | f54741e | 2009-06-16 03:37:31 +0000 | [diff] [blame] | 95 | // If we shouldn't destroy the temporaries, just emit the |
| 96 | // child expression. |
| 97 | if (!E->shouldDestroyTemporaries()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 98 | return EmitAnyExpr(E->getSubExpr(), AggLoc, IsAggLocVolatile, |
Anders Carlsson | 14c5cbf | 2009-08-16 07:36:22 +0000 | [diff] [blame] | 99 | /*IgnoreResult=*/false, IsInitializer); |
Anders Carlsson | f54741e | 2009-06-16 03:37:31 +0000 | [diff] [blame] | 100 | |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 101 | // Keep track of the current cleanup stack depth. |
| 102 | size_t CleanupStackDepth = CleanupEntries.size(); |
Daniel Dunbar | b4d4c4b | 2009-06-05 02:03:25 +0000 | [diff] [blame] | 103 | (void) CleanupStackDepth; |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 104 | |
| 105 | unsigned OldNumLiveTemporaries = LiveTemporaries.size(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 106 | |
| 107 | RValue RV = EmitAnyExpr(E->getSubExpr(), AggLoc, IsAggLocVolatile, |
Anders Carlsson | 14c5cbf | 2009-08-16 07:36:22 +0000 | [diff] [blame] | 108 | /*IgnoreResult=*/false, IsInitializer); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 109 | |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 110 | // Pop temporaries. |
| 111 | while (LiveTemporaries.size() > OldNumLiveTemporaries) |
| 112 | PopCXXTemporary(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 113 | |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 114 | assert(CleanupEntries.size() == CleanupStackDepth && |
| 115 | "Cleanup size mismatch!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 116 | |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 117 | return RV; |
| 118 | } |
Anders Carlsson | 1d84750 | 2009-06-04 02:22:12 +0000 | [diff] [blame] | 119 | |
Anders Carlsson | b9ea0b5 | 2009-09-14 01:10:45 +0000 | [diff] [blame] | 120 | LValue CodeGenFunction::EmitCXXExprWithTemporariesLValue( |
| 121 | const CXXExprWithTemporaries *E) { |
| 122 | // If we shouldn't destroy the temporaries, just emit the |
| 123 | // child expression. |
| 124 | if (!E->shouldDestroyTemporaries()) |
| 125 | return EmitLValue(E->getSubExpr()); |
| 126 | |
| 127 | // Keep track of the current cleanup stack depth. |
| 128 | size_t CleanupStackDepth = CleanupEntries.size(); |
| 129 | (void) CleanupStackDepth; |
| 130 | |
| 131 | unsigned OldNumLiveTemporaries = LiveTemporaries.size(); |
| 132 | |
| 133 | LValue LV = EmitLValue(E->getSubExpr()); |
| 134 | |
| 135 | // Pop temporaries. |
| 136 | while (LiveTemporaries.size() > OldNumLiveTemporaries) |
| 137 | PopCXXTemporary(); |
| 138 | |
| 139 | assert(CleanupEntries.size() == CleanupStackDepth && |
| 140 | "Cleanup size mismatch!"); |
| 141 | |
| 142 | return LV; |
| 143 | } |