Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 1 | //===--- CGCXXTemp.cpp - Emit LLVM Code for C++ temporaries ---------------===// |
| 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 | |
| 18 | void CodeGenFunction::PushCXXTemporary(const CXXTemporary *Temporary, |
| 19 | llvm::Value *Ptr) { |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 20 | llvm::BasicBlock *DtorBlock = createBasicBlock("temp.dtor"); |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 21 | |
| 22 | llvm::Value *CondPtr = 0; |
| 23 | |
| 24 | // Check if temporaries need to be conditional. If so, we'll create a |
| 25 | // condition boolean, initialize it to 0 and |
| 26 | if (!ConditionalTempDestructionStack.empty()) { |
| 27 | CondPtr = CreateTempAlloca(llvm::Type::Int1Ty, "cond"); |
| 28 | |
| 29 | // Initialize it to false. This initialization takes place right after |
| 30 | // the alloca insert point. |
| 31 | llvm::StoreInst *SI = |
Owen Anderson | f48880a | 2009-07-21 02:57:15 +0000 | [diff] [blame^] | 32 | new llvm::StoreInst(VMContext.getConstantIntFalse(), 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 | f48880a | 2009-07-21 02:57:15 +0000 | [diff] [blame^] | 37 | Builder.CreateStore(VMContext.getConstantIntTrue(), CondPtr); |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | LiveTemporaries.push_back(CXXLiveTemporaryInfo(Temporary, Ptr, DtorBlock, |
| 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(); |
| 48 | |
| 49 | CleanupBlockInfo CleanupInfo = PopCleanupBlock(); |
| 50 | assert(CleanupInfo.CleanupBlock == Info.DtorBlock && |
| 51 | "Cleanup block mismatch!"); |
| 52 | assert(!CleanupInfo.SwitchBlock && |
| 53 | "Should not have a switch block for temporary cleanup!"); |
| 54 | assert(!CleanupInfo.EndBlock && |
| 55 | "Should not have an end block for temporary cleanup!"); |
| 56 | |
| 57 | EmitBlock(Info.DtorBlock); |
| 58 | |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 59 | llvm::BasicBlock *CondEnd = 0; |
| 60 | |
| 61 | // If this is a conditional temporary, we need to check the condition |
| 62 | // boolean and only call the destructor if it's true. |
| 63 | if (Info.CondPtr) { |
| 64 | llvm::BasicBlock *CondBlock = createBasicBlock("cond.dtor.call"); |
| 65 | CondEnd = createBasicBlock("cond.dtor.end"); |
| 66 | |
| 67 | llvm::Value *Cond = Builder.CreateLoad(Info.CondPtr); |
| 68 | Builder.CreateCondBr(Cond, CondBlock, CondEnd); |
| 69 | EmitBlock(CondBlock); |
| 70 | } |
| 71 | |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 72 | EmitCXXDestructorCall(Info.Temporary->getDestructor(), |
| 73 | Dtor_Complete, Info.ThisPtr); |
| 74 | |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 75 | if (CondEnd) { |
| 76 | // Reset the condition. to false. |
Owen Anderson | f48880a | 2009-07-21 02:57:15 +0000 | [diff] [blame^] | 77 | Builder.CreateStore(VMContext.getConstantIntFalse(), Info.CondPtr); |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 78 | EmitBlock(CondEnd); |
| 79 | } |
| 80 | |
Anders Carlsson | f4b8fea | 2009-06-03 19:05:16 +0000 | [diff] [blame] | 81 | LiveTemporaries.pop_back(); |
| 82 | } |
| 83 | |
| 84 | RValue |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 85 | CodeGenFunction::EmitCXXExprWithTemporaries(const CXXExprWithTemporaries *E, |
| 86 | llvm::Value *AggLoc, |
| 87 | bool isAggLocVolatile) { |
Anders Carlsson | f54741e | 2009-06-16 03:37:31 +0000 | [diff] [blame] | 88 | // If we shouldn't destroy the temporaries, just emit the |
| 89 | // child expression. |
| 90 | if (!E->shouldDestroyTemporaries()) |
| 91 | return EmitAnyExpr(E->getSubExpr(), AggLoc, isAggLocVolatile); |
| 92 | |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 93 | // Keep track of the current cleanup stack depth. |
| 94 | size_t CleanupStackDepth = CleanupEntries.size(); |
Daniel Dunbar | b4d4c4b | 2009-06-05 02:03:25 +0000 | [diff] [blame] | 95 | (void) CleanupStackDepth; |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 96 | |
| 97 | unsigned OldNumLiveTemporaries = LiveTemporaries.size(); |
| 98 | |
| 99 | RValue RV = EmitAnyExpr(E->getSubExpr(), AggLoc, isAggLocVolatile); |
| 100 | |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 101 | // Pop temporaries. |
| 102 | while (LiveTemporaries.size() > OldNumLiveTemporaries) |
| 103 | PopCXXTemporary(); |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 104 | |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 105 | assert(CleanupEntries.size() == CleanupStackDepth && |
| 106 | "Cleanup size mismatch!"); |
| 107 | |
Anders Carlsson | 2ce6612 | 2009-06-03 18:40:21 +0000 | [diff] [blame] | 108 | return RV; |
| 109 | } |
Anders Carlsson | 1d84750 | 2009-06-04 02:22:12 +0000 | [diff] [blame] | 110 | |
| 111 | void |
| 112 | CodeGenFunction::PushConditionalTempDestruction() { |
| 113 | // Store the current number of live temporaries. |
| 114 | ConditionalTempDestructionStack.push_back(LiveTemporaries.size()); |
| 115 | } |
| 116 | |
| 117 | void CodeGenFunction::PopConditionalTempDestruction() { |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 118 | size_t NumLiveTemporaries = ConditionalTempDestructionStack.back(); |
| 119 | ConditionalTempDestructionStack.pop_back(); |
| 120 | |
| 121 | // Pop temporaries. |
| 122 | while (LiveTemporaries.size() > NumLiveTemporaries) { |
Daniel Dunbar | b4d4c4b | 2009-06-05 02:03:25 +0000 | [diff] [blame] | 123 | assert(LiveTemporaries.back().CondPtr && |
| 124 | "Conditional temporary must have a cond ptr!"); |
Anders Carlsson | 8c0b203 | 2009-06-04 02:47:33 +0000 | [diff] [blame] | 125 | |
| 126 | PopCXXTemporary(); |
| 127 | } |
Anders Carlsson | 1d84750 | 2009-06-04 02:22:12 +0000 | [diff] [blame] | 128 | } |
| 129 | |