opnsense-src/lib/CodeGen/CGTemporaries.cpp

164 lines
5.5 KiB
C++
Raw Normal View History

2009-12-01 06:08:04 -05:00
//===--- CGTemporaries.cpp - Emit LLVM Code for C++ temporaries -----------===//
2009-06-03 17:11:25 -04:00
//
// 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;
2009-10-14 14:03:49 -04:00
void CodeGenFunction::PushCXXTemporary(const CXXTemporary *Temporary,
2009-06-03 17:11:25 -04:00
llvm::Value *Ptr) {
2010-01-01 05:34:51 -05:00
assert((LiveTemporaries.empty() ||
LiveTemporaries.back().ThisPtr != Ptr ||
ConditionalBranchLevel) &&
"Pushed the same temporary twice; AST is likely wrong");
2009-06-03 17:11:25 -04:00
llvm::BasicBlock *DtorBlock = createBasicBlock("temp.dtor");
2009-10-14 14:03:49 -04:00
2009-06-06 04:21:31 -04:00
llvm::Value *CondPtr = 0;
2009-10-14 14:03:49 -04:00
// Check if temporaries need to be conditional. If so, we'll create a
// condition boolean, initialize it to 0 and
2009-12-01 06:08:04 -05:00
if (ConditionalBranchLevel != 0) {
2009-10-14 14:03:49 -04:00
CondPtr = CreateTempAlloca(llvm::Type::getInt1Ty(VMContext), "cond");
2009-06-06 04:21:31 -04:00
// Initialize it to false. This initialization takes place right after
// the alloca insert point.
2009-10-14 14:03:49 -04:00
llvm::StoreInst *SI =
new llvm::StoreInst(llvm::ConstantInt::getFalse(VMContext), CondPtr);
2009-06-06 04:21:31 -04:00
llvm::BasicBlock *Block = AllocaInsertPt->getParent();
Block->getInstList().insertAfter((llvm::Instruction *)AllocaInsertPt, SI);
// Now set it to true.
2009-10-14 14:03:49 -04:00
Builder.CreateStore(llvm::ConstantInt::getTrue(VMContext), CondPtr);
2009-06-06 04:21:31 -04:00
}
2009-10-14 14:03:49 -04:00
LiveTemporaries.push_back(CXXLiveTemporaryInfo(Temporary, Ptr, DtorBlock,
2009-06-06 04:21:31 -04:00
CondPtr));
PushCleanupBlock(DtorBlock);
2010-01-01 05:34:51 -05:00
if (Exceptions) {
const CXXLiveTemporaryInfo& Info = LiveTemporaries.back();
llvm::BasicBlock *CondEnd = 0;
EHCleanupBlock Cleanup(*this);
// 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);
}
EmitCXXDestructorCall(Info.Temporary->getDestructor(),
Dtor_Complete, Info.ThisPtr);
if (CondEnd) {
// Reset the condition. to false.
Builder.CreateStore(llvm::ConstantInt::getFalse(VMContext), Info.CondPtr);
EmitBlock(CondEnd);
}
}
2009-06-03 17:11:25 -04:00
}
void CodeGenFunction::PopCXXTemporary() {
const CXXLiveTemporaryInfo& Info = LiveTemporaries.back();
2009-10-14 14:03:49 -04:00
2009-06-03 17:11:25 -04:00
CleanupBlockInfo CleanupInfo = PopCleanupBlock();
2009-10-14 14:03:49 -04:00
assert(CleanupInfo.CleanupBlock == Info.DtorBlock &&
2009-06-03 17:11:25 -04:00
"Cleanup block mismatch!");
2009-10-14 14:03:49 -04:00
assert(!CleanupInfo.SwitchBlock &&
2009-06-03 17:11:25 -04:00
"Should not have a switch block for temporary cleanup!");
2009-10-14 14:03:49 -04:00
assert(!CleanupInfo.EndBlock &&
2009-06-03 17:11:25 -04:00
"Should not have an end block for temporary cleanup!");
2009-10-14 14:03:49 -04:00
llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
if (CurBB && !CurBB->getTerminator() &&
Info.DtorBlock->getNumUses() == 0) {
CurBB->getInstList().splice(CurBB->end(), Info.DtorBlock->getInstList());
delete Info.DtorBlock;
} else
EmitBlock(Info.DtorBlock);
2009-06-03 17:11:25 -04:00
2009-06-06 04:21:31 -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");
2009-10-14 14:03:49 -04:00
2009-06-06 04:21:31 -04:00
llvm::Value *Cond = Builder.CreateLoad(Info.CondPtr);
Builder.CreateCondBr(Cond, CondBlock, CondEnd);
EmitBlock(CondBlock);
}
2009-10-14 14:03:49 -04:00
2009-06-03 17:11:25 -04:00
EmitCXXDestructorCall(Info.Temporary->getDestructor(),
Dtor_Complete, Info.ThisPtr);
2009-06-06 04:21:31 -04:00
if (CondEnd) {
// Reset the condition. to false.
2009-10-14 14:03:49 -04:00
Builder.CreateStore(llvm::ConstantInt::getFalse(VMContext), Info.CondPtr);
2009-06-06 04:21:31 -04:00
EmitBlock(CondEnd);
}
2009-10-14 14:03:49 -04:00
2009-06-03 17:11:25 -04:00
LiveTemporaries.pop_back();
}
RValue
CodeGenFunction::EmitCXXExprWithTemporaries(const CXXExprWithTemporaries *E,
llvm::Value *AggLoc,
2009-10-14 14:03:49 -04:00
bool IsAggLocVolatile,
bool IsInitializer) {
2009-06-03 17:11:25 -04:00
// Keep track of the current cleanup stack depth.
size_t CleanupStackDepth = CleanupEntries.size();
2009-06-06 04:21:31 -04:00
(void) CleanupStackDepth;
2009-06-03 17:11:25 -04:00
unsigned OldNumLiveTemporaries = LiveTemporaries.size();
2009-10-14 14:03:49 -04:00
RValue RV = EmitAnyExpr(E->getSubExpr(), AggLoc, IsAggLocVolatile,
/*IgnoreResult=*/false, IsInitializer);
2009-06-06 04:21:31 -04:00
// Pop temporaries.
while (LiveTemporaries.size() > OldNumLiveTemporaries)
PopCXXTemporary();
2009-10-14 14:03:49 -04:00
2009-06-06 04:21:31 -04:00
assert(CleanupEntries.size() == CleanupStackDepth &&
"Cleanup size mismatch!");
2009-10-14 14:03:49 -04:00
2009-06-06 04:21:31 -04:00
return RV;
}
2009-10-14 14:03:49 -04:00
LValue CodeGenFunction::EmitCXXExprWithTemporariesLValue(
const CXXExprWithTemporaries *E) {
// Keep track of the current cleanup stack depth.
size_t CleanupStackDepth = CleanupEntries.size();
(void) CleanupStackDepth;
unsigned OldNumLiveTemporaries = LiveTemporaries.size();
LValue LV = EmitLValue(E->getSubExpr());
// Pop temporaries.
while (LiveTemporaries.size() > OldNumLiveTemporaries)
PopCXXTemporary();
assert(CleanupEntries.size() == CleanupStackDepth &&
"Cleanup size mismatch!");
return LV;
}