From: Chris Lattner Date: Mon, 3 Oct 2005 22:51:37 +0000 (+0000) Subject: Change ConstantArray::replaceUsesOfWithOnConstant to attempt to update X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cea141f1d1f85997c4c657009994bdacbc3a3dbf;p=oota-llvm.git Change ConstantArray::replaceUsesOfWithOnConstant to attempt to update constant arrays in place instead of reallocating them and replaceAllUsesOf'ing the result. This speeds up a release build of the bcreader from: 136.987u 120.866s 4:24.38 to 49.790u 49.890s 1:40.14 ... a 2.6x speedup parsing a large python bc file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23614 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index 7471a60cb60..6728fc4080f 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -515,9 +515,11 @@ namespace llvm { namespace { template class ValueMap : public AbstractTypeUser { + public: typedef std::pair MapKey; typedef std::map MapTy; typedef typename MapTy::iterator MapIterator; + private: MapTy Map; typedef std::map AbstractTypeMapTy; @@ -533,8 +535,22 @@ namespace { } public: - // getOrCreate - Return the specified constant from the map, creating it if - // necessary. + MapIterator map_end() { return Map.end(); } + + /// InsertOrGetItem - Return an iterator for the specified element. + /// If the element exists in the map, the returned iterator points to the + /// entry and Exists=true. If not, the iterator points to the newly + /// inserted entry and returns Exists=false. Newly inserted entries have + /// I->second == 0, and should be filled in. + MapIterator InsertOrGetItem(std::pair &InsertVal, + bool &Exists) { + std::pair IP = Map.insert(InsertVal); + Exists = !IP.second; + return IP.first; + } + + /// getOrCreate - Return the specified constant from the map, creating it if + /// necessary. ConstantClass *getOrCreate(const TypeClass *Ty, const ValType &V) { MapKey Lookup(Ty, V); MapIterator I = Map.lower_bound(Lookup); @@ -545,7 +561,6 @@ namespace { ConstantClass *Result = ConstantCreator::create(Ty, V); - /// FIXME: why does this assert fail when loading 176.gcc? //assert(Result->getType() == Ty && "Type specified is not correct!"); I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result)); @@ -784,8 +799,9 @@ static std::vector getValType(ConstantArray *CA) { return Elements; } -static ValueMap, ArrayType, - ConstantArray> ArrayConstants; +typedef ValueMap, ArrayType, + ConstantArray> ArrayConstantsTy; +static ArrayConstantsTy ArrayConstants; Constant *ConstantArray::get(const ArrayType *Ty, const std::vector &V) { @@ -1331,15 +1347,49 @@ void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To, bool DisableChecking) { assert(isa(To) && "Cannot make Constant refer to non-constant!"); - std::vector Values; - Values.reserve(getNumOperands()); // Build replacement array... + std::pair Lookup; + Lookup.first.first = getType(); + Lookup.second = this; + std::vector &Values = Lookup.first.second; + Values.reserve(getNumOperands()); // Build replacement array. + + bool isAllZeros = false; // Does this turn into an all-zeros array? for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { Constant *Val = getOperand(i); if (Val == From) Val = cast(To); Values.push_back(Val); + if (isAllZeros) isAllZeros = Val->isNullValue(); } - Constant *Replacement = ConstantArray::get(getType(), Values); + Constant *Replacement = 0; + if (isAllZeros) { + Replacement = ConstantAggregateZero::get(getType()); + } else { + // Check to see if we have this array type already. + bool Exists; + ArrayConstantsTy::MapIterator I = + ArrayConstants.InsertOrGetItem(Lookup, Exists); + + if (Exists) { + Replacement = I->second; + } else { + // Okay, the new shape doesn't exist in the system yet. Instead of + // creating a new constant array, inserting it, replaceallusesof'ing the + // old with the new, then deleting the old... just update the current one + // in place! + if (I != ArrayConstants.map_end() && I->second == this) + ++I; // Do not invalidate iterator! + ArrayConstants.remove(this); // Remove old shape from the map. + + // Update to the new values. + for (unsigned i = 0, e = getNumOperands(); i != e; ++i) + if (getOperand(i) == From) + setOperand(i, cast(To)); + return; + } + } + + // Otherwise, I do need to replace this with an existing value. assert(Replacement != this && "I didn't contain From!"); // Everyone using this now uses the replacement...