2009-06-03 22:40:21 +04:00
|
|
|
//===--- CGCXXTemp.cpp - Emit LLVM Code for C++ temporaries ---------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This contains code dealing with C++ code generation of temporaries
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CodeGenFunction.h"
|
|
|
|
using namespace clang;
|
|
|
|
using namespace CodeGen;
|
|
|
|
|
|
|
|
void CodeGenFunction::PushCXXTemporary(const CXXTemporary *Temporary,
|
|
|
|
llvm::Value *Ptr) {
|
2009-06-03 23:05:16 +04:00
|
|
|
llvm::BasicBlock *DtorBlock = createBasicBlock("temp.dtor");
|
2009-06-04 06:47:33 +04:00
|
|
|
|
|
|
|
llvm::Value *CondPtr = 0;
|
|
|
|
|
|
|
|
// Check if temporaries need to be conditional. If so, we'll create a
|
|
|
|
// condition boolean, initialize it to 0 and
|
|
|
|
if (!ConditionalTempDestructionStack.empty()) {
|
|
|
|
CondPtr = CreateTempAlloca(llvm::Type::Int1Ty, "cond");
|
|
|
|
|
|
|
|
// Initialize it to false. This initialization takes place right after
|
|
|
|
// the alloca insert point.
|
|
|
|
llvm::StoreInst *SI =
|
2009-07-31 21:39:36 +04:00
|
|
|
new llvm::StoreInst(llvm::ConstantInt::getFalse(VMContext), CondPtr);
|
2009-06-04 06:47:33 +04:00
|
|
|
llvm::BasicBlock *Block = AllocaInsertPt->getParent();
|
|
|
|
Block->getInstList().insertAfter((llvm::Instruction *)AllocaInsertPt, SI);
|
|
|
|
|
|
|
|
// Now set it to true.
|
2009-07-31 21:39:36 +04:00
|
|
|
Builder.CreateStore(llvm::ConstantInt::getTrue(VMContext), CondPtr);
|
2009-06-04 06:47:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
LiveTemporaries.push_back(CXXLiveTemporaryInfo(Temporary, Ptr, DtorBlock,
|
|
|
|
CondPtr));
|
2009-06-04 06:08:08 +04:00
|
|
|
|
|
|
|
PushCleanupBlock(DtorBlock);
|
2009-06-03 23:05:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CodeGenFunction::PopCXXTemporary() {
|
|
|
|
const CXXLiveTemporaryInfo& Info = LiveTemporaries.back();
|
2009-06-03 22:40:21 +04:00
|
|
|
|
2009-06-03 23:05:16 +04:00
|
|
|
CleanupBlockInfo CleanupInfo = PopCleanupBlock();
|
|
|
|
assert(CleanupInfo.CleanupBlock == Info.DtorBlock &&
|
|
|
|
"Cleanup block mismatch!");
|
|
|
|
assert(!CleanupInfo.SwitchBlock &&
|
|
|
|
"Should not have a switch block for temporary cleanup!");
|
|
|
|
assert(!CleanupInfo.EndBlock &&
|
|
|
|
"Should not have an end block for temporary cleanup!");
|
|
|
|
|
|
|
|
EmitBlock(Info.DtorBlock);
|
|
|
|
|
2009-06-04 06:47:33 +04:00
|
|
|
llvm::BasicBlock *CondEnd = 0;
|
|
|
|
|
|
|
|
// If this is a conditional temporary, we need to check the condition
|
|
|
|
// boolean and only call the destructor if it's true.
|
|
|
|
if (Info.CondPtr) {
|
|
|
|
llvm::BasicBlock *CondBlock = createBasicBlock("cond.dtor.call");
|
|
|
|
CondEnd = createBasicBlock("cond.dtor.end");
|
|
|
|
|
|
|
|
llvm::Value *Cond = Builder.CreateLoad(Info.CondPtr);
|
|
|
|
Builder.CreateCondBr(Cond, CondBlock, CondEnd);
|
|
|
|
EmitBlock(CondBlock);
|
|
|
|
}
|
|
|
|
|
2009-06-03 23:05:16 +04:00
|
|
|
EmitCXXDestructorCall(Info.Temporary->getDestructor(),
|
|
|
|
Dtor_Complete, Info.ThisPtr);
|
|
|
|
|
2009-06-04 06:47:33 +04:00
|
|
|
if (CondEnd) {
|
|
|
|
// Reset the condition. to false.
|
2009-07-31 21:39:36 +04:00
|
|
|
Builder.CreateStore(llvm::ConstantInt::getFalse(VMContext), Info.CondPtr);
|
2009-06-04 06:47:33 +04:00
|
|
|
EmitBlock(CondEnd);
|
|
|
|
}
|
|
|
|
|
2009-06-03 23:05:16 +04:00
|
|
|
LiveTemporaries.pop_back();
|
2009-06-03 22:40:21 +04:00
|
|
|
}
|
|
|
|
|
2009-06-03 23:05:16 +04:00
|
|
|
RValue
|
2009-06-03 22:40:21 +04:00
|
|
|
CodeGenFunction::EmitCXXExprWithTemporaries(const CXXExprWithTemporaries *E,
|
|
|
|
llvm::Value *AggLoc,
|
|
|
|
bool isAggLocVolatile) {
|
2009-06-16 07:37:31 +04:00
|
|
|
// If we shouldn't destroy the temporaries, just emit the
|
|
|
|
// child expression.
|
|
|
|
if (!E->shouldDestroyTemporaries())
|
|
|
|
return EmitAnyExpr(E->getSubExpr(), AggLoc, isAggLocVolatile);
|
|
|
|
|
2009-06-03 22:40:21 +04:00
|
|
|
// Keep track of the current cleanup stack depth.
|
|
|
|
size_t CleanupStackDepth = CleanupEntries.size();
|
2009-06-05 06:03:25 +04:00
|
|
|
(void) CleanupStackDepth;
|
2009-06-03 22:40:21 +04:00
|
|
|
|
|
|
|
unsigned OldNumLiveTemporaries = LiveTemporaries.size();
|
|
|
|
|
|
|
|
RValue RV = EmitAnyExpr(E->getSubExpr(), AggLoc, isAggLocVolatile);
|
|
|
|
|
2009-06-04 06:47:33 +04:00
|
|
|
// Pop temporaries.
|
|
|
|
while (LiveTemporaries.size() > OldNumLiveTemporaries)
|
|
|
|
PopCXXTemporary();
|
|
|
|
|
|
|
|
assert(CleanupEntries.size() == CleanupStackDepth &&
|
|
|
|
"Cleanup size mismatch!");
|
2009-06-03 22:40:21 +04:00
|
|
|
|
|
|
|
return RV;
|
|
|
|
}
|
2009-06-04 06:22:12 +04:00
|
|
|
|
|
|
|
void
|
|
|
|
CodeGenFunction::PushConditionalTempDestruction() {
|
|
|
|
// Store the current number of live temporaries.
|
|
|
|
ConditionalTempDestructionStack.push_back(LiveTemporaries.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeGenFunction::PopConditionalTempDestruction() {
|
2009-06-04 06:47:33 +04:00
|
|
|
size_t NumLiveTemporaries = ConditionalTempDestructionStack.back();
|
|
|
|
ConditionalTempDestructionStack.pop_back();
|
|
|
|
|
|
|
|
// Pop temporaries.
|
|
|
|
while (LiveTemporaries.size() > NumLiveTemporaries) {
|
2009-06-05 06:03:25 +04:00
|
|
|
assert(LiveTemporaries.back().CondPtr &&
|
|
|
|
"Conditional temporary must have a cond ptr!");
|
2009-06-04 06:47:33 +04:00
|
|
|
|
|
|
|
PopCXXTemporary();
|
|
|
|
}
|
2009-06-04 06:22:12 +04:00
|
|
|
}
|
|
|
|
|