2002-11-20 20:47:41 +00:00
|
|
|
//===- ValueMapper.cpp - Interface shared by lib/Transforms/Utils ---------===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-11-20 20:47:41 +00:00
|
|
|
//
|
|
|
|
// This file defines the MapValue function, which is shared by various parts of
|
|
|
|
// the lib/Transforms/Utils library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-11-09 12:27:04 +00:00
|
|
|
#include "llvm/Transforms/Utils/ValueMapper.h"
|
2002-11-20 20:47:41 +00:00
|
|
|
#include "llvm/Constants.h"
|
2004-07-18 00:44:37 +00:00
|
|
|
#include "llvm/GlobalValue.h"
|
2002-11-20 20:47:41 +00:00
|
|
|
#include "llvm/Instruction.h"
|
2009-05-30 05:06:04 +00:00
|
|
|
#include "llvm/MDNode.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2004-01-09 06:12:26 +00:00
|
|
|
using namespace llvm;
|
2002-11-20 20:47:41 +00:00
|
|
|
|
2007-02-03 00:08:31 +00:00
|
|
|
Value *llvm::MapValue(const Value *V, ValueMapTy &VM) {
|
2002-11-20 20:47:41 +00:00
|
|
|
Value *&VMSlot = VM[V];
|
|
|
|
if (VMSlot) return VMSlot; // Does it exist in the map yet?
|
2007-02-03 00:08:31 +00:00
|
|
|
|
|
|
|
// NOTE: VMSlot can be invalidated by any reference to VM, which can grow the
|
|
|
|
// DenseMap. This includes any recursive calls to MapValue.
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-10-06 15:23:43 +00:00
|
|
|
// Global values do not need to be seeded into the ValueMap if they are using
|
|
|
|
// the identity mapping.
|
2006-04-01 23:17:11 +00:00
|
|
|
if (isa<GlobalValue>(V) || isa<InlineAsm>(V))
|
2003-10-06 15:23:43 +00:00
|
|
|
return VMSlot = const_cast<Value*>(V);
|
|
|
|
|
2003-04-18 03:49:49 +00:00
|
|
|
if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
|
2007-01-11 12:24:14 +00:00
|
|
|
if (isa<ConstantInt>(C) || isa<ConstantFP>(C) ||
|
2004-10-16 18:10:31 +00:00
|
|
|
isa<ConstantPointerNull>(C) || isa<ConstantAggregateZero>(C) ||
|
2009-05-30 05:06:04 +00:00
|
|
|
isa<UndefValue>(C) || isa<MDString>(C))
|
2002-11-20 20:47:41 +00:00
|
|
|
return VMSlot = C; // Primitive constants map directly
|
2004-07-18 08:41:47 +00:00
|
|
|
else if (ConstantArray *CA = dyn_cast<ConstantArray>(C)) {
|
2008-05-30 21:24:22 +00:00
|
|
|
for (User::op_iterator b = CA->op_begin(), i = b, e = CA->op_end();
|
|
|
|
i != e; ++i) {
|
|
|
|
Value *MV = MapValue(*i, VM);
|
|
|
|
if (MV != *i) {
|
2002-11-20 20:47:41 +00:00
|
|
|
// This array must contain a reference to a global, make a new array
|
|
|
|
// and return it.
|
|
|
|
//
|
|
|
|
std::vector<Constant*> Values;
|
2004-08-04 08:44:43 +00:00
|
|
|
Values.reserve(CA->getNumOperands());
|
2008-05-30 21:24:22 +00:00
|
|
|
for (User::op_iterator j = b; j != i; ++j)
|
|
|
|
Values.push_back(cast<Constant>(*j));
|
2002-11-20 20:47:41 +00:00
|
|
|
Values.push_back(cast<Constant>(MV));
|
2002-12-07 21:27:16 +00:00
|
|
|
for (++i; i != e; ++i)
|
2008-05-30 21:24:22 +00:00
|
|
|
Values.push_back(cast<Constant>(MapValue(*i, VM)));
|
2007-02-03 00:08:31 +00:00
|
|
|
return VM[V] = ConstantArray::get(CA->getType(), Values);
|
2002-11-20 20:47:41 +00:00
|
|
|
}
|
|
|
|
}
|
2007-02-03 00:08:31 +00:00
|
|
|
return VM[V] = C;
|
2002-11-20 20:47:41 +00:00
|
|
|
|
|
|
|
} else if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) {
|
2008-05-30 21:24:22 +00:00
|
|
|
for (User::op_iterator b = CS->op_begin(), i = b, e = CS->op_end();
|
|
|
|
i != e; ++i) {
|
|
|
|
Value *MV = MapValue(*i, VM);
|
|
|
|
if (MV != *i) {
|
2002-11-20 20:47:41 +00:00
|
|
|
// This struct must contain a reference to a global, make a new struct
|
|
|
|
// and return it.
|
|
|
|
//
|
|
|
|
std::vector<Constant*> Values;
|
2004-08-04 08:44:43 +00:00
|
|
|
Values.reserve(CS->getNumOperands());
|
2008-05-30 21:24:22 +00:00
|
|
|
for (User::op_iterator j = b; j != i; ++j)
|
|
|
|
Values.push_back(cast<Constant>(*j));
|
2002-11-20 20:47:41 +00:00
|
|
|
Values.push_back(cast<Constant>(MV));
|
2002-12-07 21:27:16 +00:00
|
|
|
for (++i; i != e; ++i)
|
2008-05-30 21:24:22 +00:00
|
|
|
Values.push_back(cast<Constant>(MapValue(*i, VM)));
|
2007-02-03 00:08:31 +00:00
|
|
|
return VM[V] = ConstantStruct::get(CS->getType(), Values);
|
2002-11-20 20:47:41 +00:00
|
|
|
}
|
|
|
|
}
|
2007-02-03 00:08:31 +00:00
|
|
|
return VM[V] = C;
|
2002-11-20 20:47:41 +00:00
|
|
|
|
|
|
|
} else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
|
2006-07-14 22:21:31 +00:00
|
|
|
std::vector<Constant*> Ops;
|
2008-05-30 21:24:22 +00:00
|
|
|
for (User::op_iterator i = CE->op_begin(), e = CE->op_end(); i != e; ++i)
|
|
|
|
Ops.push_back(cast<Constant>(MapValue(*i, VM)));
|
2007-02-03 00:08:31 +00:00
|
|
|
return VM[V] = CE->getWithOperands(Ops);
|
2007-02-15 02:26:10 +00:00
|
|
|
} else if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
|
2008-05-30 21:24:22 +00:00
|
|
|
for (User::op_iterator b = CP->op_begin(), i = b, e = CP->op_end();
|
|
|
|
i != e; ++i) {
|
|
|
|
Value *MV = MapValue(*i, VM);
|
|
|
|
if (MV != *i) {
|
2007-07-16 14:29:03 +00:00
|
|
|
// This vector value must contain a reference to a global, make a new
|
|
|
|
// vector constant and return it.
|
2006-03-27 05:50:18 +00:00
|
|
|
//
|
|
|
|
std::vector<Constant*> Values;
|
|
|
|
Values.reserve(CP->getNumOperands());
|
2008-05-30 21:24:22 +00:00
|
|
|
for (User::op_iterator j = b; j != i; ++j)
|
|
|
|
Values.push_back(cast<Constant>(*j));
|
2006-03-27 05:50:18 +00:00
|
|
|
Values.push_back(cast<Constant>(MV));
|
|
|
|
for (++i; i != e; ++i)
|
2008-05-30 21:24:22 +00:00
|
|
|
Values.push_back(cast<Constant>(MapValue(*i, VM)));
|
2007-02-15 02:26:10 +00:00
|
|
|
return VM[V] = ConstantVector::get(Values);
|
2006-03-27 05:50:18 +00:00
|
|
|
}
|
|
|
|
}
|
2007-02-23 19:54:30 +00:00
|
|
|
return VM[V] = C;
|
2006-03-27 05:50:18 +00:00
|
|
|
|
2009-05-30 05:06:04 +00:00
|
|
|
} else if (MDNode *N = dyn_cast<MDNode>(C)) {
|
|
|
|
for (MDNode::const_elem_iterator b = N->elem_begin(), i = b,
|
|
|
|
e = N->elem_end(); i != e; ++i) {
|
|
|
|
if (!*i) continue;
|
|
|
|
|
|
|
|
Value *MV = MapValue(*i, VM);
|
|
|
|
if (MV != *i) {
|
|
|
|
// This MDNode must contain a reference to a global, make a new MDNode
|
|
|
|
// and return it.
|
|
|
|
SmallVector<Value*, 8> Values;
|
|
|
|
Values.reserve(N->getNumElements());
|
|
|
|
for (MDNode::const_elem_iterator j = b; j != i; ++j)
|
|
|
|
Values.push_back(*j);
|
|
|
|
Values.push_back(MV);
|
|
|
|
for (++i; i != e; ++i)
|
|
|
|
Values.push_back(MapValue(*i, VM));
|
|
|
|
return VM[V] = MDNode::get(Values.data(), Values.size());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return VM[V] = C;
|
|
|
|
|
2002-11-20 20:47:41 +00:00
|
|
|
} else {
|
|
|
|
assert(0 && "Unknown type of constant!");
|
|
|
|
}
|
|
|
|
}
|
2003-01-13 00:52:25 +00:00
|
|
|
|
2002-11-20 20:47:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2004-05-19 09:08:12 +00:00
|
|
|
|
|
|
|
/// RemapInstruction - Convert the instruction operands from referencing the
|
|
|
|
/// current values into those specified by ValueMap.
|
|
|
|
///
|
2007-02-03 00:08:31 +00:00
|
|
|
void llvm::RemapInstruction(Instruction *I, ValueMapTy &ValueMap) {
|
2008-05-30 21:24:22 +00:00
|
|
|
for (User::op_iterator op = I->op_begin(), E = I->op_end(); op != E; ++op) {
|
|
|
|
Value *V = MapValue(*op, ValueMap);
|
2004-05-19 09:08:12 +00:00
|
|
|
assert(V && "Referenced value not in value map!");
|
2008-05-30 21:24:22 +00:00
|
|
|
*op = V;
|
2004-05-19 09:08:12 +00:00
|
|
|
}
|
|
|
|
}
|