diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-08-04 08:44:43 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-08-04 08:44:43 +0000 |
commit | 15876bb28c9c0983279c30a123c13224648574c1 (patch) | |
tree | 71be0cb152de7836179ef3dfedb7ad9869551e5f /lib/Transforms/Utils/ValueMapper.cpp | |
parent | 868bbf35b079a7f356f6b2fbd9df7e66552bc57e (diff) |
Stop using getValues().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15487 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/ValueMapper.cpp')
-rw-r--r-- | lib/Transforms/Utils/ValueMapper.cpp | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/lib/Transforms/Utils/ValueMapper.cpp b/lib/Transforms/Utils/ValueMapper.cpp index 94e56b73a5..72ce4ae81f 100644 --- a/lib/Transforms/Utils/ValueMapper.cpp +++ b/lib/Transforms/Utils/ValueMapper.cpp @@ -34,40 +34,38 @@ Value *llvm::MapValue(const Value *V, std::map<const Value*, Value*> &VM) { isa<ConstantPointerNull>(C) || isa<ConstantAggregateZero>(C)) return VMSlot = C; // Primitive constants map directly else if (ConstantArray *CA = dyn_cast<ConstantArray>(C)) { - const std::vector<Use> &Vals = CA->getValues(); - for (unsigned i = 0, e = Vals.size(); i != e; ++i) { - Value *MV = MapValue(Vals[i], VM); - if (MV != Vals[i]) { + for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) { + Value *MV = MapValue(CA->getOperand(i), VM); + if (MV != CA->getOperand(i)) { // This array must contain a reference to a global, make a new array // and return it. // std::vector<Constant*> Values; - Values.reserve(Vals.size()); + Values.reserve(CA->getNumOperands()); for (unsigned j = 0; j != i; ++j) - Values.push_back(cast<Constant>(Vals[j])); + Values.push_back(CA->getOperand(j)); Values.push_back(cast<Constant>(MV)); for (++i; i != e; ++i) - Values.push_back(cast<Constant>(MapValue(Vals[i], VM))); + Values.push_back(cast<Constant>(MapValue(CA->getOperand(i), VM))); return VMSlot = ConstantArray::get(CA->getType(), Values); } } return VMSlot = C; } else if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) { - const std::vector<Use> &Vals = CS->getValues(); - for (unsigned i = 0, e = Vals.size(); i != e; ++i) { - Value *MV = MapValue(Vals[i], VM); - if (MV != Vals[i]) { + for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) { + Value *MV = MapValue(CS->getOperand(i), VM); + if (MV != CS->getOperand(i)) { // This struct must contain a reference to a global, make a new struct // and return it. // std::vector<Constant*> Values; - Values.reserve(Vals.size()); + Values.reserve(CS->getNumOperands()); for (unsigned j = 0; j != i; ++j) - Values.push_back(cast<Constant>(Vals[j])); + Values.push_back(CS->getOperand(j)); Values.push_back(cast<Constant>(MV)); for (++i; i != e; ++i) - Values.push_back(cast<Constant>(MapValue(Vals[i], VM))); + Values.push_back(cast<Constant>(MapValue(CS->getOperand(i), VM))); return VMSlot = ConstantStruct::get(CS->getType(), Values); } } |