Remove PreserveNames template parameter from IRBuilder

Summary:
Following r263086, we are now relying on a flag on the Context to
discard Value names in release builds.

Reviewers: chandlerc

Subscribers: mzolotukhin, llvm-commits

Differential Revision: http://reviews.llvm.org/D18023

From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 263258
This commit is contained in:
Mehdi Amini 2016-03-11 17:15:50 +00:00
parent 58e5289560
commit 1f82b794e4
14 changed files with 32 additions and 41 deletions

View File

@ -198,7 +198,7 @@ typedef std::pair<Value*, Value*> SizeOffsetEvalType;
class ObjectSizeOffsetEvaluator class ObjectSizeOffsetEvaluator
: public InstVisitor<ObjectSizeOffsetEvaluator, SizeOffsetEvalType> { : public InstVisitor<ObjectSizeOffsetEvaluator, SizeOffsetEvalType> {
typedef IRBuilder<true, TargetFolder> BuilderTy; typedef IRBuilder<TargetFolder> BuilderTy;
typedef std::pair<WeakVH, WeakVH> WeakEvalType; typedef std::pair<WeakVH, WeakVH> WeakEvalType;
typedef DenseMap<const Value*, WeakEvalType> CacheMapTy; typedef DenseMap<const Value*, WeakEvalType> CacheMapTy;
typedef SmallPtrSet<const Value*, 8> PtrSetTy; typedef SmallPtrSet<const Value*, 8> PtrSetTy;

View File

@ -80,7 +80,7 @@ namespace llvm {
/// already in "expanded" form. /// already in "expanded" form.
bool LSRMode; bool LSRMode;
typedef IRBuilder<true, TargetFolder> BuilderType; typedef IRBuilder<TargetFolder> BuilderType;
BuilderType Builder; BuilderType Builder;
#ifndef NDEBUG #ifndef NDEBUG

View File

@ -38,14 +38,12 @@ class MDNode;
/// IRBuilder and needs to be inserted. /// IRBuilder and needs to be inserted.
/// ///
/// By default, this inserts the instruction at the insertion point. /// By default, this inserts the instruction at the insertion point.
template <bool preserveNames = true>
class IRBuilderDefaultInserter { class IRBuilderDefaultInserter {
protected: protected:
void InsertHelper(Instruction *I, const Twine &Name, void InsertHelper(Instruction *I, const Twine &Name,
BasicBlock *BB, BasicBlock::iterator InsertPt) const { BasicBlock *BB, BasicBlock::iterator InsertPt) const {
if (BB) BB->getInstList().insert(InsertPt, I); if (BB) BB->getInstList().insert(InsertPt, I);
if (preserveNames) I->setName(Name);
I->setName(Name);
} }
}; };
@ -537,14 +535,12 @@ private:
/// created. Convenience state exists to specify fast-math flags and fp-math /// created. Convenience state exists to specify fast-math flags and fp-math
/// tags. /// tags.
/// ///
/// The first template argument handles whether or not to preserve names in the /// The first template argument specifies a class to use for creating constants.
/// final instruction output. This defaults to on. The second template argument /// This defaults to creating minimally folded constants. The second template
/// specifies a class to use for creating constants. This defaults to creating /// argument allows clients to specify custom insertion hooks that are called on
/// minimally folded constants. The third template argument allows clients to /// every newly created insertion.
/// specify custom insertion hooks that are called on every newly created template <typename T = ConstantFolder,
/// insertion. typename Inserter = IRBuilderDefaultInserter>
template<bool preserveNames = true, typename T = ConstantFolder,
typename Inserter = IRBuilderDefaultInserter<preserveNames> >
class IRBuilder : public IRBuilderBase, public Inserter { class IRBuilder : public IRBuilderBase, public Inserter {
T Folder; T Folder;
@ -594,10 +590,6 @@ public:
/// \brief Get the constant folder being used. /// \brief Get the constant folder being used.
const T &getFolder() { return Folder; } const T &getFolder() { return Folder; }
/// \brief Return true if this builder is configured to actually add the
/// requested names to IR created through it.
bool isNamePreserving() const { return preserveNames; }
/// \brief Insert and return the specified instruction. /// \brief Insert and return the specified instruction.
template<typename InstTy> template<typename InstTy>
InstTy *Insert(InstTy *I, const Twine &Name = "") const { InstTy *Insert(InstTy *I, const Twine &Name = "") const {

View File

@ -76,7 +76,7 @@ createLoweredInitializer(ArrayType *NewType, Constant *OriginalInitializer) {
static Instruction * static Instruction *
createReplacementInstr(ConstantExpr *CE, Instruction *Instr) { createReplacementInstr(ConstantExpr *CE, Instruction *Instr) {
IRBuilder<true,NoFolder> Builder(Instr); IRBuilder<NoFolder> Builder(Instr);
unsigned OpCode = CE->getOpcode(); unsigned OpCode = CE->getOpcode();
switch (OpCode) { switch (OpCode) {
case Instruction::GetElementPtr: { case Instruction::GetElementPtr: {

View File

@ -1646,7 +1646,7 @@ void MergeFunctions::writeThunkOrAlias(Function *F, Function *G) {
// Helper for writeThunk, // Helper for writeThunk,
// Selects proper bitcast operation, // Selects proper bitcast operation,
// but a bit simpler then CastInst::getCastOpcode. // but a bit simpler then CastInst::getCastOpcode.
static Value *createCast(IRBuilder<false> &Builder, Value *V, Type *DestTy) { static Value *createCast(IRBuilder<> &Builder, Value *V, Type *DestTy) {
Type *SrcTy = V->getType(); Type *SrcTy = V->getType();
if (SrcTy->isStructTy()) { if (SrcTy->isStructTy()) {
assert(DestTy->isStructTy()); assert(DestTy->isStructTy());
@ -1689,7 +1689,7 @@ void MergeFunctions::writeThunk(Function *F, Function *G) {
Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "", Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
G->getParent()); G->getParent());
BasicBlock *BB = BasicBlock::Create(F->getContext(), "", NewG); BasicBlock *BB = BasicBlock::Create(F->getContext(), "", NewG);
IRBuilder<false> Builder(BB); IRBuilder<> Builder(BB);
SmallVector<Value *, 16> Args; SmallVector<Value *, 16> Args;
unsigned i = 0; unsigned i = 0;

View File

@ -138,7 +138,7 @@ IntrinsicIDToOverflowCheckFlavor(unsigned ID) {
/// \brief An IRBuilder inserter that adds new instructions to the instcombine /// \brief An IRBuilder inserter that adds new instructions to the instcombine
/// worklist. /// worklist.
class LLVM_LIBRARY_VISIBILITY InstCombineIRInserter class LLVM_LIBRARY_VISIBILITY InstCombineIRInserter
: public IRBuilderDefaultInserter<true> { : public IRBuilderDefaultInserter {
InstCombineWorklist &Worklist; InstCombineWorklist &Worklist;
AssumptionCache *AC; AssumptionCache *AC;
@ -148,7 +148,7 @@ public:
void InsertHelper(Instruction *I, const Twine &Name, BasicBlock *BB, void InsertHelper(Instruction *I, const Twine &Name, BasicBlock *BB,
BasicBlock::iterator InsertPt) const { BasicBlock::iterator InsertPt) const {
IRBuilderDefaultInserter<true>::InsertHelper(I, Name, BB, InsertPt); IRBuilderDefaultInserter::InsertHelper(I, Name, BB, InsertPt);
Worklist.Add(I); Worklist.Add(I);
using namespace llvm::PatternMatch; using namespace llvm::PatternMatch;
@ -171,7 +171,7 @@ public:
/// \brief An IRBuilder that automatically inserts new instructions into the /// \brief An IRBuilder that automatically inserts new instructions into the
/// worklist. /// worklist.
typedef IRBuilder<true, TargetFolder, InstCombineIRInserter> BuilderTy; typedef IRBuilder<TargetFolder, InstCombineIRInserter> BuilderTy;
BuilderTy *Builder; BuilderTy *Builder;
private: private:

View File

@ -3054,7 +3054,7 @@ combineInstructionsOverFunction(Function &F, InstCombineWorklist &Worklist,
/// Builder - This is an IRBuilder that automatically inserts new /// Builder - This is an IRBuilder that automatically inserts new
/// instructions into the worklist when they are created. /// instructions into the worklist when they are created.
IRBuilder<true, TargetFolder, InstCombineIRInserter> Builder( IRBuilder<TargetFolder, InstCombineIRInserter> Builder(
F.getContext(), TargetFolder(DL), InstCombineIRInserter(Worklist, &AC)); F.getContext(), TargetFolder(DL), InstCombineIRInserter(Worklist, &AC));
// Lower dbg.declare intrinsics otherwise their value may be clobbered // Lower dbg.declare intrinsics otherwise their value may be clobbered

View File

@ -36,7 +36,7 @@ STATISTIC(ChecksAdded, "Bounds checks added");
STATISTIC(ChecksSkipped, "Bounds checks skipped"); STATISTIC(ChecksSkipped, "Bounds checks skipped");
STATISTIC(ChecksUnable, "Bounds checks unable to add"); STATISTIC(ChecksUnable, "Bounds checks unable to add");
typedef IRBuilder<true, TargetFolder> BuilderTy; typedef IRBuilder<TargetFolder> BuilderTy;
namespace { namespace {
struct BoundsChecking : public FunctionPass { struct BoundsChecking : public FunctionPass {

View File

@ -68,7 +68,7 @@ public:
const char *getPassName() const override { return "LoadCombine"; } const char *getPassName() const override { return "LoadCombine"; }
static char ID; static char ID;
typedef IRBuilder<true, TargetFolder> BuilderTy; typedef IRBuilder<TargetFolder> BuilderTy;
private: private:
BuilderTy *Builder; BuilderTy *Builder;
@ -226,7 +226,7 @@ bool LoadCombine::runOnBasicBlock(BasicBlock &BB) {
AA = &getAnalysis<AAResultsWrapperPass>().getAAResults(); AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
IRBuilder<true, TargetFolder> TheBuilder( IRBuilder<TargetFolder> TheBuilder(
BB.getContext(), TargetFolder(BB.getModule()->getDataLayout())); BB.getContext(), TargetFolder(BB.getModule()->getDataLayout()));
Builder = &TheBuilder; Builder = &TheBuilder;

View File

@ -89,7 +89,7 @@ static cl::opt<bool> SROAStrictInbounds("sroa-strict-inbounds", cl::init(false),
namespace { namespace {
/// \brief A custom IRBuilder inserter which prefixes all names, but only in /// \brief A custom IRBuilder inserter which prefixes all names, but only in
/// Assert builds. /// Assert builds.
class IRBuilderPrefixedInserter : public IRBuilderDefaultInserter<true> { class IRBuilderPrefixedInserter : public IRBuilderDefaultInserter {
std::string Prefix; std::string Prefix;
const Twine getNameWithPrefix(const Twine &Name) const { const Twine getNameWithPrefix(const Twine &Name) const {
return Name.isTriviallyEmpty() ? Name : Prefix + Name; return Name.isTriviallyEmpty() ? Name : Prefix + Name;
@ -101,14 +101,13 @@ public:
protected: protected:
void InsertHelper(Instruction *I, const Twine &Name, BasicBlock *BB, void InsertHelper(Instruction *I, const Twine &Name, BasicBlock *BB,
BasicBlock::iterator InsertPt) const { BasicBlock::iterator InsertPt) const {
IRBuilderDefaultInserter<true>::InsertHelper(I, getNameWithPrefix(Name), BB, IRBuilderDefaultInserter::InsertHelper(I, getNameWithPrefix(Name), BB,
InsertPt); InsertPt);
} }
}; };
/// \brief Provide a typedef for IRBuilder that drops names in release builds. /// \brief Provide a typedef for IRBuilder that drops names in release builds.
using IRBuilderTy = using IRBuilderTy = llvm::IRBuilder<ConstantFolder, IRBuilderPrefixedInserter>;
llvm::IRBuilder<true, ConstantFolder, IRBuilderPrefixedInserter>;
} }
namespace { namespace {

View File

@ -1199,7 +1199,7 @@ HoistTerminator:
NT->takeName(I1); NT->takeName(I1);
} }
IRBuilder<true, NoFolder> Builder(NT); IRBuilder<NoFolder> Builder(NT);
// Hoisting one of the terminators from our successor is a great thing. // Hoisting one of the terminators from our successor is a great thing.
// Unfortunately, the successors of the if/else blocks may have PHI nodes in // Unfortunately, the successors of the if/else blocks may have PHI nodes in
// them. If they do, all PHI entries for BB1/BB2 must agree for all PHI // them. If they do, all PHI entries for BB1/BB2 must agree for all PHI
@ -1640,7 +1640,7 @@ static bool SpeculativelyExecuteBB(BranchInst *BI, BasicBlock *ThenBB,
// Insert a select of the value of the speculated store. // Insert a select of the value of the speculated store.
if (SpeculatedStoreValue) { if (SpeculatedStoreValue) {
IRBuilder<true, NoFolder> Builder(BI); IRBuilder<NoFolder> Builder(BI);
Value *TrueV = SpeculatedStore->getValueOperand(); Value *TrueV = SpeculatedStore->getValueOperand();
Value *FalseV = SpeculatedStoreValue; Value *FalseV = SpeculatedStoreValue;
if (Invert) if (Invert)
@ -1660,7 +1660,7 @@ static bool SpeculativelyExecuteBB(BranchInst *BI, BasicBlock *ThenBB,
ThenBB->begin(), std::prev(ThenBB->end())); ThenBB->begin(), std::prev(ThenBB->end()));
// Insert selects and rewrite the PHI operands. // Insert selects and rewrite the PHI operands.
IRBuilder<true, NoFolder> Builder(BI); IRBuilder<NoFolder> Builder(BI);
for (BasicBlock::iterator I = EndBB->begin(); for (BasicBlock::iterator I = EndBB->begin();
PHINode *PN = dyn_cast<PHINode>(I); ++I) { PHINode *PN = dyn_cast<PHINode>(I); ++I) {
unsigned OrigI = PN->getBasicBlockIndex(BB); unsigned OrigI = PN->getBasicBlockIndex(BB);
@ -1920,7 +1920,7 @@ static bool FoldTwoEntryPHINode(PHINode *PN, const TargetTransformInfo &TTI,
// If we can still promote the PHI nodes after this gauntlet of tests, // If we can still promote the PHI nodes after this gauntlet of tests,
// do all of the PHI's now. // do all of the PHI's now.
Instruction *InsertPt = DomBlock->getTerminator(); Instruction *InsertPt = DomBlock->getTerminator();
IRBuilder<true, NoFolder> Builder(InsertPt); IRBuilder<NoFolder> Builder(InsertPt);
// Move all 'aggressive' instructions, which are defined in the // Move all 'aggressive' instructions, which are defined in the
// conditional parts of the if's up to the dominating block. // conditional parts of the if's up to the dominating block.
@ -2831,7 +2831,7 @@ static bool SimplifyCondBranchToCondBranch(BranchInst *PBI, BranchInst *BI,
// Make sure we get to CommonDest on True&True directions. // Make sure we get to CommonDest on True&True directions.
Value *PBICond = PBI->getCondition(); Value *PBICond = PBI->getCondition();
IRBuilder<true, NoFolder> Builder(PBI); IRBuilder<NoFolder> Builder(PBI);
if (PBIOp) if (PBIOp)
PBICond = Builder.CreateNot(PBICond, PBICond->getName()+".not"); PBICond = Builder.CreateNot(PBICond, PBICond->getName()+".not");

View File

@ -3796,8 +3796,8 @@ bool SLPVectorizer::tryToVectorizeList(ArrayRef<Value *> VL, BoUpSLP &R,
Instruction *InsertAfter = cast<Instruction>(BuildVectorSlice.back()); Instruction *InsertAfter = cast<Instruction>(BuildVectorSlice.back());
unsigned VecIdx = 0; unsigned VecIdx = 0;
for (auto &V : BuildVectorSlice) { for (auto &V : BuildVectorSlice) {
IRBuilder<true, NoFolder> Builder( IRBuilder<NoFolder> Builder(InsertAfter->getParent(),
InsertAfter->getParent(), ++BasicBlock::iterator(InsertAfter)); ++BasicBlock::iterator(InsertAfter));
InsertElementInst *IE = cast<InsertElementInst>(V); InsertElementInst *IE = cast<InsertElementInst>(V);
Instruction *Extract = cast<Instruction>(Builder.CreateExtractElement( Instruction *Extract = cast<Instruction>(Builder.CreateExtractElement(
VectorizedRoot, Builder.getInt32(VecIdx++))); VectorizedRoot, Builder.getInt32(VecIdx++)));

View File

@ -252,7 +252,7 @@ TEST_F(IRBuilderTest, FastMathFlags) {
} }
TEST_F(IRBuilderTest, WrapFlags) { TEST_F(IRBuilderTest, WrapFlags) {
IRBuilder<true, NoFolder> Builder(BB); IRBuilder<NoFolder> Builder(BB);
// Test instructions. // Test instructions.
GlobalVariable *G = new GlobalVariable(*M, Builder.getInt32Ty(), true, GlobalVariable *G = new GlobalVariable(*M, Builder.getInt32Ty(), true,

View File

@ -35,7 +35,7 @@ struct PatternMatchTest : ::testing::Test {
std::unique_ptr<Module> M; std::unique_ptr<Module> M;
Function *F; Function *F;
BasicBlock *BB; BasicBlock *BB;
IRBuilder<true, NoFolder> IRB; IRBuilder<NoFolder> IRB;
PatternMatchTest() PatternMatchTest()
: M(new Module("PatternMatchTestModule", Ctx)), : M(new Module("PatternMatchTestModule", Ctx)),