blob: 50e36d8321652a32b38f93634419237ba3abe35e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- ValueMapper.cpp - Interface shared by lib/Transforms/Utils ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the MapValue function, which is shared by various parts of
11// the lib/Transforms/Utils library.
12//
13//===----------------------------------------------------------------------===//
14
Anton Korobeynikovad7ea242007-11-09 12:27:04 +000015#include "llvm/Transforms/Utils/ValueMapper.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016#include "llvm/Constants.h"
Chris Lattner52efc3f2009-10-29 00:31:02 +000017#include "llvm/Function.h"
Devang Patel7c368852009-07-28 21:49:47 +000018#include "llvm/Metadata.h"
Nick Lewycky29aaef82009-05-30 05:06:04 +000019#include "llvm/ADT/SmallVector.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020using namespace llvm;
21
Dan Gohmana5b5be12009-10-24 23:37:16 +000022Value *llvm::MapValue(const Value *V, ValueMapTy &VM) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023 Value *&VMSlot = VM[V];
24 if (VMSlot) return VMSlot; // Does it exist in the map yet?
25
26 // NOTE: VMSlot can be invalidated by any reference to VM, which can grow the
27 // DenseMap. This includes any recursive calls to MapValue.
28
Victor Hernandez16907c42010-01-20 05:49:59 +000029 // Global values and non-function-local metadata do not need to be seeded into
30 // the ValueMap if they are using the identity mapping.
31 if (isa<GlobalValue>(V) || isa<InlineAsm>(V) || isa<MDString>(V) ||
Chris Lattner906bd212010-01-21 21:05:54 +000032 (isa<MDNode>(V) && !cast<MDNode>(V)->isFunctionLocal()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033 return VMSlot = const_cast<Value*>(V);
34
Chris Lattner906bd212010-01-21 21:05:54 +000035 if (const MDNode *MD = dyn_cast<MDNode>(V)) {
Victor Hernandez17a02ae2010-01-20 06:56:16 +000036 SmallVector<Value*, 4> Elts;
Victor Hernandez16907c42010-01-20 05:49:59 +000037 for (unsigned i = 0; i != MD->getNumOperands(); i++)
Chris Lattner906bd212010-01-21 21:05:54 +000038 Elts.push_back(MD->getOperand(i) ? MapValue(MD->getOperand(i), VM) : 0);
Victor Hernandez16907c42010-01-20 05:49:59 +000039 return VM[V] = MDNode::get(V->getContext(), Elts.data(), Elts.size());
40 }
41
Chris Lattner15513ab2009-10-29 00:28:30 +000042 Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V));
43 if (C == 0) return 0;
44
45 if (isa<ConstantInt>(C) || isa<ConstantFP>(C) ||
46 isa<ConstantPointerNull>(C) || isa<ConstantAggregateZero>(C) ||
47 isa<UndefValue>(C) || isa<MDString>(C))
48 return VMSlot = C; // Primitive constants map directly
49
50 if (ConstantArray *CA = dyn_cast<ConstantArray>(C)) {
51 for (User::op_iterator b = CA->op_begin(), i = b, e = CA->op_end();
52 i != e; ++i) {
53 Value *MV = MapValue(*i, VM);
54 if (MV != *i) {
55 // This array must contain a reference to a global, make a new array
56 // and return it.
57 //
58 std::vector<Constant*> Values;
59 Values.reserve(CA->getNumOperands());
60 for (User::op_iterator j = b; j != i; ++j)
61 Values.push_back(cast<Constant>(*j));
62 Values.push_back(cast<Constant>(MV));
63 for (++i; i != e; ++i)
64 Values.push_back(cast<Constant>(MapValue(*i, VM)));
65 return VM[V] = ConstantArray::get(CA->getType(), Values);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067 }
Chris Lattner15513ab2009-10-29 00:28:30 +000068 return VM[V] = C;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000069 }
Chris Lattner15513ab2009-10-29 00:28:30 +000070
71 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) {
72 for (User::op_iterator b = CS->op_begin(), i = b, e = CS->op_end();
73 i != e; ++i) {
74 Value *MV = MapValue(*i, VM);
75 if (MV != *i) {
76 // This struct must contain a reference to a global, make a new struct
77 // and return it.
78 //
79 std::vector<Constant*> Values;
80 Values.reserve(CS->getNumOperands());
81 for (User::op_iterator j = b; j != i; ++j)
82 Values.push_back(cast<Constant>(*j));
83 Values.push_back(cast<Constant>(MV));
84 for (++i; i != e; ++i)
85 Values.push_back(cast<Constant>(MapValue(*i, VM)));
86 return VM[V] = ConstantStruct::get(CS->getType(), Values);
87 }
88 }
89 return VM[V] = C;
90 }
91
92 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
93 std::vector<Constant*> Ops;
94 for (User::op_iterator i = CE->op_begin(), e = CE->op_end(); i != e; ++i)
95 Ops.push_back(cast<Constant>(MapValue(*i, VM)));
96 return VM[V] = CE->getWithOperands(Ops);
97 }
98
Chris Lattner52efc3f2009-10-29 00:31:02 +000099 if (ConstantVector *CV = dyn_cast<ConstantVector>(C)) {
100 for (User::op_iterator b = CV->op_begin(), i = b, e = CV->op_end();
Chris Lattner15513ab2009-10-29 00:28:30 +0000101 i != e; ++i) {
102 Value *MV = MapValue(*i, VM);
103 if (MV != *i) {
104 // This vector value must contain a reference to a global, make a new
105 // vector constant and return it.
106 //
107 std::vector<Constant*> Values;
Chris Lattner52efc3f2009-10-29 00:31:02 +0000108 Values.reserve(CV->getNumOperands());
Chris Lattner15513ab2009-10-29 00:28:30 +0000109 for (User::op_iterator j = b; j != i; ++j)
110 Values.push_back(cast<Constant>(*j));
111 Values.push_back(cast<Constant>(MV));
112 for (++i; i != e; ++i)
113 Values.push_back(cast<Constant>(MapValue(*i, VM)));
114 return VM[V] = ConstantVector::get(Values);
115 }
116 }
117 return VM[V] = C;
Chris Lattner52efc3f2009-10-29 00:31:02 +0000118 }
119
Chris Lattner906bd212010-01-21 21:05:54 +0000120 BlockAddress *BA = cast<BlockAddress>(C);
121 Function *F = cast<Function>(MapValue(BA->getFunction(), VM));
122 BasicBlock *BB = cast_or_null<BasicBlock>(MapValue(BA->getBasicBlock(),VM));
123 return VM[V] = BlockAddress::get(F, BB ? BB : BA->getBasicBlock());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124}
125
126/// RemapInstruction - Convert the instruction operands from referencing the
127/// current values into those specified by ValueMap.
128///
129void llvm::RemapInstruction(Instruction *I, ValueMapTy &ValueMap) {
Gabor Greiff4f8d9d2008-05-30 21:24:22 +0000130 for (User::op_iterator op = I->op_begin(), E = I->op_end(); op != E; ++op) {
Dan Gohmana5b5be12009-10-24 23:37:16 +0000131 Value *V = MapValue(*op, ValueMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 assert(V && "Referenced value not in value map!");
Gabor Greiff4f8d9d2008-05-30 21:24:22 +0000133 *op = V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134 }
135}
Devang Patel410b3842010-01-18 19:52:14 +0000136