mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
(Almost) always call reserveOperandSpace() on newly created PHINodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128535 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8be7d8b43c
commit
d8b4fb4aab
@ -552,6 +552,7 @@ Value *IfExprAST::Codegen() {
|
||||
Builder.SetInsertPoint(MergeBB);
|
||||
PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()),
|
||||
"iftmp");
|
||||
PN->reserveOperandSpace(2);
|
||||
|
||||
PN->addIncoming(ThenV, ThenBB);
|
||||
PN->addIncoming(ElseV, ElseBB);
|
||||
@ -593,6 +594,7 @@ Value *ForExprAST::Codegen() {
|
||||
|
||||
// Start the PHI node with an entry for Start.
|
||||
PHINode *Variable = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), VarName.c_str());
|
||||
Variable->reserveOperandSpace(2);
|
||||
Variable->addIncoming(StartVal, PreheaderBB);
|
||||
|
||||
// Within the loop, the variable is defined equal to the PHI node. If it
|
||||
|
@ -656,6 +656,7 @@ Value *IfExprAST::Codegen() {
|
||||
Builder.SetInsertPoint(MergeBB);
|
||||
PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()),
|
||||
"iftmp");
|
||||
PN->reserveOperandSpace(2);
|
||||
|
||||
PN->addIncoming(ThenV, ThenBB);
|
||||
PN->addIncoming(ElseV, ElseBB);
|
||||
@ -697,6 +698,7 @@ Value *ForExprAST::Codegen() {
|
||||
|
||||
// Start the PHI node with an entry for Start.
|
||||
PHINode *Variable = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), VarName.c_str());
|
||||
Variable->reserveOperandSpace(2);
|
||||
Variable->addIncoming(StartVal, PreheaderBB);
|
||||
|
||||
// Within the loop, the variable is defined equal to the PHI node. If it
|
||||
|
@ -752,6 +752,7 @@ Value *IfExprAST::Codegen() {
|
||||
Builder.SetInsertPoint(MergeBB);
|
||||
PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()),
|
||||
"iftmp");
|
||||
PN->reserveOperandSpace(2);
|
||||
|
||||
PN->addIncoming(ThenV, ThenBB);
|
||||
PN->addIncoming(ElseV, ElseBB);
|
||||
|
@ -932,14 +932,15 @@ SCEVExpander::getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized,
|
||||
Value *StepV = expandCodeFor(Step, IntTy, L->getHeader()->begin());
|
||||
|
||||
// Create the PHI.
|
||||
Builder.SetInsertPoint(L->getHeader(), L->getHeader()->begin());
|
||||
BasicBlock *Header = L->getHeader();
|
||||
Builder.SetInsertPoint(Header, Header->begin());
|
||||
pred_iterator HPB = pred_begin(Header), HPE = pred_end(Header);
|
||||
PHINode *PN = Builder.CreatePHI(ExpandTy, "lsr.iv");
|
||||
PN->reserveOperandSpace(std::distance(HPB, HPE));
|
||||
rememberInstruction(PN);
|
||||
|
||||
// Create the step instructions and populate the PHI.
|
||||
BasicBlock *Header = L->getHeader();
|
||||
for (pred_iterator HPI = pred_begin(Header), HPE = pred_end(Header);
|
||||
HPI != HPE; ++HPI) {
|
||||
for (pred_iterator HPI = HPB; HPI != HPE; ++HPI) {
|
||||
BasicBlock *Pred = *HPI;
|
||||
|
||||
// Add a start value.
|
||||
@ -1141,12 +1142,13 @@ Value *SCEVExpander::visitAddRecExpr(const SCEVAddRecExpr *S) {
|
||||
// Create and insert the PHI node for the induction variable in the
|
||||
// specified loop.
|
||||
BasicBlock *Header = L->getHeader();
|
||||
pred_iterator HPB = pred_begin(Header), HPE = pred_end(Header);
|
||||
CanonicalIV = PHINode::Create(Ty, "indvar", Header->begin());
|
||||
CanonicalIV->reserveOperandSpace(std::distance(HPB, HPE));
|
||||
rememberInstruction(CanonicalIV);
|
||||
|
||||
Constant *One = ConstantInt::get(Ty, 1);
|
||||
for (pred_iterator HPI = pred_begin(Header), HPE = pred_end(Header);
|
||||
HPI != HPE; ++HPI) {
|
||||
for (pred_iterator HPI = HPB; HPI != HPE; ++HPI) {
|
||||
BasicBlock *HP = *HPI;
|
||||
if (L->contains(HP)) {
|
||||
// Insert a unit add instruction right before the terminator
|
||||
|
@ -441,6 +441,7 @@ bool DwarfEHPrepare::NormalizeLandingPads() {
|
||||
// in NewBB.
|
||||
PHINode *NewPN = PHINode::Create(PN->getType(), PN->getName()+".unwind",
|
||||
NewBB);
|
||||
NewPN->reserveOperandSpace(PN->getNumIncomingValues());
|
||||
// Add an entry for each unwind edge, using the value from the old PHI.
|
||||
for (pred_iterator PI = PB; PI != PE; ++PI)
|
||||
NewPN->addIncoming(PN->getIncomingValueForBlock(*PI), *PI);
|
||||
|
@ -1193,9 +1193,11 @@ static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
|
||||
const StructType *ST =
|
||||
cast<StructType>(cast<PointerType>(PN->getType())->getElementType());
|
||||
|
||||
Result =
|
||||
PHINode *NewPN =
|
||||
PHINode::Create(PointerType::getUnqual(ST->getElementType(FieldNo)),
|
||||
PN->getName()+".f"+Twine(FieldNo), PN);
|
||||
NewPN->reserveOperandSpace(PN->getNumIncomingValues());
|
||||
Result = NewPN;
|
||||
PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
|
||||
} else {
|
||||
llvm_unreachable("Unknown usable value");
|
||||
|
@ -432,6 +432,7 @@ void LowerSetJmp::TransformSetJmpCall(CallInst* Inst)
|
||||
// splitBasicBlock call.
|
||||
PHINode* PHI = PHINode::Create(Type::getInt32Ty(Inst->getContext()),
|
||||
"SetJmpReturn", Inst);
|
||||
PHI->reserveOperandSpace(2);
|
||||
|
||||
// Coming from a call to setjmp, the return is 0.
|
||||
PHI->addIncoming(Constant::getNullValue(Type::getInt32Ty(Inst->getContext())),
|
||||
|
@ -96,6 +96,7 @@ Function* PartialInliner::unswitchFunction(Function* F) {
|
||||
if (!OldPhi) break;
|
||||
|
||||
PHINode* retPhi = PHINode::Create(OldPhi->getType(), "", Ins);
|
||||
retPhi->reserveOperandSpace(2);
|
||||
OldPhi->replaceAllUsesWith(retPhi);
|
||||
Ins = newReturnBlock->getFirstNonPHI();
|
||||
|
||||
|
@ -197,6 +197,7 @@ Value *InstCombiner::EvaluateInDifferentType(Value *V, const Type *Ty,
|
||||
case Instruction::PHI: {
|
||||
PHINode *OPN = cast<PHINode>(I);
|
||||
PHINode *NPN = PHINode::Create(Ty);
|
||||
NPN->reserveOperandSpace(OPN->getNumIncomingValues());
|
||||
for (unsigned i = 0, e = OPN->getNumIncomingValues(); i != e; ++i) {
|
||||
Value *V =EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned);
|
||||
NPN->addIncoming(V, OPN->getIncomingBlock(i));
|
||||
|
@ -700,6 +700,7 @@ Instruction *InstCombiner::SliceUpIllegalIntegerPHI(PHINode &FirstPhi) {
|
||||
|
||||
// Otherwise, Create the new PHI node for this user.
|
||||
EltPHI = PHINode::Create(Ty, PN->getName()+".off"+Twine(Offset), PN);
|
||||
EltPHI->reserveOperandSpace(PN->getNumIncomingValues());
|
||||
assert(EltPHI->getType() != PN->getType() &&
|
||||
"Truncate didn't shrink phi?");
|
||||
|
||||
|
@ -929,14 +929,16 @@ BasicBlock::iterator PathProfiler::getInsertionPoint(BasicBlock* block, Value*
|
||||
void PathProfiler::preparePHI(BLInstrumentationNode* node) {
|
||||
BasicBlock* block = node->getBlock();
|
||||
BasicBlock::iterator insertPoint = block->getFirstNonPHI();
|
||||
pred_iterator PB = pred_begin(node->getBlock()),
|
||||
PE = pred_end(node->getBlock());
|
||||
PHINode* phi = PHINode::Create(Type::getInt32Ty(*Context), "pathNumber",
|
||||
insertPoint );
|
||||
phi->reserveOperandSpace(std::distance(PB, PE));
|
||||
node->setPathPHI(phi);
|
||||
node->setStartingPathNumber(phi);
|
||||
node->setEndingPathNumber(phi);
|
||||
|
||||
for(pred_iterator predIt = pred_begin(node->getBlock()),
|
||||
end = pred_end(node->getBlock()); predIt != end; predIt++) {
|
||||
for(pred_iterator predIt = PB; predIt != PE; predIt++) {
|
||||
BasicBlock* pred = (*predIt);
|
||||
|
||||
if(pred != NULL)
|
||||
|
@ -1944,11 +1944,12 @@ bool GVN::performPRE(Function &F) {
|
||||
addToLeaderTable(ValNo, PREInstr, PREPred);
|
||||
|
||||
// Create a PHI to make the value available in this block.
|
||||
pred_iterator PB = pred_begin(CurrentBlock), PE = pred_end(CurrentBlock);
|
||||
PHINode* Phi = PHINode::Create(CurInst->getType(),
|
||||
CurInst->getName() + ".pre-phi",
|
||||
CurrentBlock->begin());
|
||||
for (pred_iterator PI = pred_begin(CurrentBlock),
|
||||
PE = pred_end(CurrentBlock); PI != PE; ++PI) {
|
||||
Phi->reserveOperandSpace(std::distance(PB, PE));
|
||||
for (pred_iterator PI = PB; PI != PE; ++PI) {
|
||||
BasicBlock *P = *PI;
|
||||
Phi->addIncoming(predMap[P], P);
|
||||
}
|
||||
|
@ -1039,6 +1039,7 @@ void IndVarSimplify::HandleFloatingPointIV(Loop *L, PHINode *PN) {
|
||||
|
||||
// Insert new integer induction variable.
|
||||
PHINode *NewPHI = PHINode::Create(Int32Ty, PN->getName()+".int", PN);
|
||||
NewPHI->reserveOperandSpace(2);
|
||||
NewPHI->addIncoming(ConstantInt::get(Int32Ty, InitValue),
|
||||
PN->getIncomingBlock(IncomingEdge));
|
||||
|
||||
|
@ -928,13 +928,14 @@ bool JumpThreading::SimplifyPartiallyRedundantLoad(LoadInst *LI) {
|
||||
array_pod_sort(AvailablePreds.begin(), AvailablePreds.end());
|
||||
|
||||
// Create a PHI node at the start of the block for the PRE'd load value.
|
||||
pred_iterator PB = pred_begin(LoadBB), PE = pred_end(LoadBB);
|
||||
PHINode *PN = PHINode::Create(LI->getType(), "", LoadBB->begin());
|
||||
PN->reserveOperandSpace(std::distance(PB, PE));
|
||||
PN->takeName(LI);
|
||||
|
||||
// Insert new entries into the PHI for each predecessor. A single block may
|
||||
// have multiple entries here.
|
||||
for (pred_iterator PI = pred_begin(LoadBB), E = pred_end(LoadBB); PI != E;
|
||||
++PI) {
|
||||
for (pred_iterator PI = PB; PI != PE; ++PI) {
|
||||
BasicBlock *P = *PI;
|
||||
AvailablePredsTy::iterator I =
|
||||
std::lower_bound(AvailablePreds.begin(), AvailablePreds.end(),
|
||||
|
@ -1492,6 +1492,7 @@ void LSRInstance::OptimizeShadowIV() {
|
||||
|
||||
/* Add new PHINode. */
|
||||
PHINode *NewPH = PHINode::Create(DestTy, "IV.S.", PH);
|
||||
NewPH->reserveOperandSpace(2);
|
||||
|
||||
/* create new increment. '++d' in above example. */
|
||||
Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
|
||||
|
@ -1228,6 +1228,7 @@ static bool tryToMakeAllocaBePromotable(AllocaInst *AI, const TargetData *TD) {
|
||||
|
||||
const Type *LoadTy = cast<PointerType>(PN->getType())->getElementType();
|
||||
PHINode *NewPN = PHINode::Create(LoadTy, PN->getName()+".ld", PN);
|
||||
NewPN->reserveOperandSpace(PN->getNumIncomingValues());
|
||||
|
||||
// Get the TBAA tag and alignment to use from one of the loads. It doesn't
|
||||
// matter which one we get and if any differ, it doesn't matter.
|
||||
|
@ -259,11 +259,12 @@ static bool MergeEmptyReturnBlocks(Function &F) {
|
||||
PHINode *RetBlockPHI = dyn_cast<PHINode>(RetBlock->begin());
|
||||
if (RetBlockPHI == 0) {
|
||||
Value *InVal = cast<ReturnInst>(RetBlock->getTerminator())->getOperand(0);
|
||||
pred_iterator PB = pred_begin(RetBlock), PE = pred_end(RetBlock);
|
||||
RetBlockPHI = PHINode::Create(Ret->getOperand(0)->getType(), "merge",
|
||||
&RetBlock->front());
|
||||
RetBlockPHI->reserveOperandSpace(std::distance(PB, PE));
|
||||
|
||||
for (pred_iterator PI = pred_begin(RetBlock), E = pred_end(RetBlock);
|
||||
PI != E; ++PI)
|
||||
for (pred_iterator PI = PB; PI != PE; ++PI)
|
||||
RetBlockPHI->addIncoming(InVal, *PI);
|
||||
RetBlock->getTerminator()->setOperand(0, RetBlockPHI);
|
||||
}
|
||||
|
@ -498,6 +498,7 @@ bool TailCallElim::EliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret,
|
||||
I != E; ++I) {
|
||||
PHINode *PN = PHINode::Create(I->getType(),
|
||||
I->getName() + ".tr", InsertPos);
|
||||
PN->reserveOperandSpace(2);
|
||||
I->replaceAllUsesWith(PN); // Everyone use the PHI node now!
|
||||
PN->addIncoming(I, NewEntry);
|
||||
ArgumentPHIs.push_back(PN);
|
||||
@ -527,9 +528,11 @@ bool TailCallElim::EliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret,
|
||||
if (AccumulatorRecursionEliminationInitVal) {
|
||||
Instruction *AccRecInstr = AccumulatorRecursionInstr;
|
||||
// Start by inserting a new PHI node for the accumulator.
|
||||
pred_iterator PB = pred_begin(OldEntry), PE = pred_end(OldEntry);
|
||||
PHINode *AccPN =
|
||||
PHINode::Create(AccumulatorRecursionEliminationInitVal->getType(),
|
||||
"accumulator.tr", OldEntry->begin());
|
||||
AccPN->reserveOperandSpace(std::distance(PB, PE) + 1);
|
||||
|
||||
// Loop over all of the predecessors of the tail recursion block. For the
|
||||
// real entry into the function we seed the PHI with the initial value,
|
||||
@ -537,8 +540,7 @@ bool TailCallElim::EliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret,
|
||||
// other tail recursions eliminated) the accumulator is not modified.
|
||||
// Because we haven't added the branch in the current block to OldEntry yet,
|
||||
// it will not show up as a predecessor.
|
||||
for (pred_iterator PI = pred_begin(OldEntry), PE = pred_end(OldEntry);
|
||||
PI != PE; ++PI) {
|
||||
for (pred_iterator PI = PB; PI != PE; ++PI) {
|
||||
BasicBlock *P = *PI;
|
||||
if (P == &F->getEntryBlock())
|
||||
AccPN->addIncoming(AccumulatorRecursionEliminationInitVal, P);
|
||||
|
@ -448,6 +448,7 @@ BasicBlock *llvm::SplitBlockPredecessors(BasicBlock *BB,
|
||||
// Create the new PHI node, insert it into NewBB at the end of the block
|
||||
PHINode *NewPHI =
|
||||
PHINode::Create(PN->getType(), PN->getName()+".ph", BI);
|
||||
NewPHI->reserveOperandSpace(NumPreds);
|
||||
if (AA) AA->copyValue(PN, NewPHI);
|
||||
|
||||
// Move all of the PHI values for 'Preds' to the new PHI.
|
||||
|
@ -142,6 +142,7 @@ static void CreatePHIsForSplitLoopExit(SmallVectorImpl<BasicBlock *> &Preds,
|
||||
// Otherwise a new PHI is needed. Create one and populate it.
|
||||
PHINode *NewPN = PHINode::Create(PN->getType(), "split",
|
||||
SplitBB->getTerminator());
|
||||
NewPN->reserveOperandSpace(Preds.size());
|
||||
for (unsigned i = 0, e = Preds.size(); i != e; ++i)
|
||||
NewPN->addIncoming(V, Preds[i]);
|
||||
// Update the original PHI.
|
||||
|
@ -104,7 +104,7 @@ namespace {
|
||||
/// region, we need to split the entry block of the region so that the PHI node
|
||||
/// is easier to deal with.
|
||||
void CodeExtractor::severSplitPHINodes(BasicBlock *&Header) {
|
||||
bool HasPredsFromRegion = false;
|
||||
unsigned NumPredsFromRegion = 0;
|
||||
unsigned NumPredsOutsideRegion = 0;
|
||||
|
||||
if (Header != &Header->getParent()->getEntryBlock()) {
|
||||
@ -116,7 +116,7 @@ void CodeExtractor::severSplitPHINodes(BasicBlock *&Header) {
|
||||
// header block into two.
|
||||
for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
|
||||
if (BlocksToExtract.count(PN->getIncomingBlock(i)))
|
||||
HasPredsFromRegion = true;
|
||||
++NumPredsFromRegion;
|
||||
else
|
||||
++NumPredsOutsideRegion;
|
||||
|
||||
@ -147,7 +147,7 @@ void CodeExtractor::severSplitPHINodes(BasicBlock *&Header) {
|
||||
|
||||
// Okay, now we need to adjust the PHI nodes and any branches from within the
|
||||
// region to go to the new header block instead of the old header block.
|
||||
if (HasPredsFromRegion) {
|
||||
if (NumPredsFromRegion) {
|
||||
PHINode *PN = cast<PHINode>(OldPred->begin());
|
||||
// Loop over all of the predecessors of OldPred that are in the region,
|
||||
// changing them to branch to NewBB instead.
|
||||
@ -165,6 +165,7 @@ void CodeExtractor::severSplitPHINodes(BasicBlock *&Header) {
|
||||
// from OldPred of PN.
|
||||
PHINode *NewPN = PHINode::Create(PN->getType(), PN->getName()+".ce",
|
||||
NewBB->begin());
|
||||
NewPN->reserveOperandSpace(1+NumPredsFromRegion);
|
||||
NewPN->addIncoming(PN, OldPred);
|
||||
|
||||
// Loop over all of the incoming value in PN, moving them to NewPN if they
|
||||
|
@ -626,6 +626,7 @@ bool llvm::InlineFunction(CallSite CS, InlineFunctionInfo &IFI) {
|
||||
if (!TheCall->use_empty()) {
|
||||
PHI = PHINode::Create(RTy, TheCall->getName(),
|
||||
AfterCallBB->begin());
|
||||
PHI->reserveOperandSpace(Returns.size());
|
||||
// Anything that used the result of the function call should now use the
|
||||
// PHI node as their operand.
|
||||
TheCall->replaceAllUsesWith(PHI);
|
||||
|
@ -1598,13 +1598,15 @@ static bool SimplifyCondBranchToCondBranch(BranchInst *PBI, BranchInst *BI) {
|
||||
// in the constant and simplify the block result. Subsequent passes of
|
||||
// simplifycfg will thread the block.
|
||||
if (BlockIsSimpleEnoughToThreadThrough(BB)) {
|
||||
pred_iterator PB = pred_begin(BB), PE = pred_end(BB);
|
||||
PHINode *NewPN = PHINode::Create(Type::getInt1Ty(BB->getContext()),
|
||||
BI->getCondition()->getName() + ".pr",
|
||||
BB->begin());
|
||||
NewPN->reserveOperandSpace(std::distance(PB, PE));
|
||||
// Okay, we're going to insert the PHI node. Since PBI is not the only
|
||||
// predecessor, compute the PHI'd conditional value for all of the preds.
|
||||
// Any predecessor where the condition is not computable we keep symbolic.
|
||||
for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
|
||||
for (pred_iterator PI = PB; PI != PE; ++PI) {
|
||||
BasicBlock *P = *PI;
|
||||
if ((PBI = dyn_cast<BranchInst>(P->getTerminator())) &&
|
||||
PBI != BI && PBI->isConditional() &&
|
||||
|
@ -117,6 +117,7 @@ bool UnifyFunctionExitNodes::runOnFunction(Function &F) {
|
||||
} else {
|
||||
// If the function doesn't return void... add a PHI node to the block...
|
||||
PN = PHINode::Create(F.getReturnType(), "UnifiedRetVal");
|
||||
PN->reserveOperandSpace(ReturningBlocks.size());
|
||||
NewRetBlock->getInstList().push_back(PN);
|
||||
ReturnInst::Create(F.getContext(), PN, NewRetBlock);
|
||||
}
|
||||
|
@ -887,6 +887,7 @@ static void CleanupAndPrepareModules(BugDriver &BD, Module *&Test,
|
||||
|
||||
PHINode *FuncPtr = PHINode::Create(NullPtr->getType(),
|
||||
"fp", DoCallBB);
|
||||
FuncPtr->reserveOperandSpace(2);
|
||||
FuncPtr->addIncoming(CastedResolver, LookupBB);
|
||||
FuncPtr->addIncoming(CachedVal, EntryBB);
|
||||
|
||||
|
@ -27,6 +27,7 @@ TEST(Local, RecursivelyDeleteDeadPHINodes) {
|
||||
|
||||
builder.SetInsertPoint(bb0);
|
||||
PHINode *phi = builder.CreatePHI(Type::getInt32Ty(C));
|
||||
phi->reserveOperandSpace(2);
|
||||
BranchInst *br0 = builder.CreateCondBr(builder.getTrue(), bb0, bb1);
|
||||
|
||||
builder.SetInsertPoint(bb1);
|
||||
|
Loading…
Reference in New Issue
Block a user