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