Convert gep_type_begin and gep_type_end to use ArrayRef.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135481 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jay Foad 2011-07-19 14:42:50 +00:00
parent 8fbbb39807
commit ca12a2139e
3 changed files with 11 additions and 9 deletions

View File

@ -635,6 +635,8 @@ from the previous release.</p>
<li><code>ExtractValueInst::getIndexedType</code></li> <li><code>ExtractValueInst::getIndexedType</code></li>
<li><code>ExtractValueInst::getIndices</code></li> <li><code>ExtractValueInst::getIndices</code></li>
<li><code>FindInsertedValue</code> (in <code>llvm/Analysis/ValueTracking.h</code>)</li> <li><code>FindInsertedValue</code> (in <code>llvm/Analysis/ValueTracking.h</code>)</li>
<li><code>gep_type_begin</code> (in <code>llvm/Support/GetElementPtrTypeIterator.h</code>)</li>
<li><code>gep_type_end</code> (in <code>llvm/Support/GetElementPtrTypeIterator.h</code>)</li>
<li><code>IRBuilder::CreateCall</code></li> <li><code>IRBuilder::CreateCall</code></li>
<li><code>IRBuilder::CreateExtractValue</code></li> <li><code>IRBuilder::CreateExtractValue</code></li>
<li><code>IRBuilder::CreateInsertValue</code></li> <li><code>IRBuilder::CreateInsertValue</code></li>

View File

@ -97,16 +97,16 @@ namespace llvm {
return gep_type_iterator::end(GEP.op_end()); return gep_type_iterator::end(GEP.op_end());
} }
template<typename ItTy> template<typename T>
inline generic_gep_type_iterator<ItTy> inline generic_gep_type_iterator<const T *>
gep_type_begin(Type *Op0, ItTy I, ItTy E) { gep_type_begin(Type *Op0, ArrayRef<T> A) {
return generic_gep_type_iterator<ItTy>::begin(Op0, I); return generic_gep_type_iterator<const T *>::begin(Op0, A.begin());
} }
template<typename ItTy> template<typename T>
inline generic_gep_type_iterator<ItTy> inline generic_gep_type_iterator<const T *>
gep_type_end(Type *Op0, ItTy I, ItTy E) { gep_type_end(Type *Op0, ArrayRef<T> A) {
return generic_gep_type_iterator<ItTy>::end(E); return generic_gep_type_iterator<const T *>::end(A.end());
} }
} // end namespace llvm } // end namespace llvm

View File

@ -528,7 +528,7 @@ uint64_t TargetData::getIndexedOffset(Type *ptrTy,
uint64_t Result = 0; uint64_t Result = 0;
generic_gep_type_iterator<Value* const*> generic_gep_type_iterator<Value* const*>
TI = gep_type_begin(ptrTy, Indices.begin(), Indices.end()); TI = gep_type_begin(ptrTy, Indices);
for (unsigned CurIDX = 0, EndIDX = Indices.size(); CurIDX != EndIDX; for (unsigned CurIDX = 0, EndIDX = Indices.size(); CurIDX != EndIDX;
++CurIDX, ++TI) { ++CurIDX, ++TI) {
if (StructType *STy = dyn_cast<StructType>(*TI)) { if (StructType *STy = dyn_cast<StructType>(*TI)) {