blob: b5b0d2e2de705733e3c579e205587fdc95be992f [file] [log] [blame]
Chris Lattner51cbcbf2002-11-20 20:47:41 +00001//===- ValueMapper.cpp - Interface shared by lib/Transforms/Utils ---------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner51cbcbf2002-11-20 20:47:41 +00009//
10// This file defines the MapValue function, which is shared by various parts of
11// the lib/Transforms/Utils library.
12//
13//===----------------------------------------------------------------------===//
14
Anton Korobeynikov344ef192007-11-09 12:27:04 +000015#include "llvm/Transforms/Utils/ValueMapper.h"
Devang Patel41d89c22009-07-27 17:17:04 +000016#include "llvm/DerivedTypes.h" // For getNullValue(Type::Int32Ty)
Chris Lattner51cbcbf2002-11-20 20:47:41 +000017#include "llvm/Constants.h"
Chris Lattner1bb95912009-10-29 00:31:02 +000018#include "llvm/Function.h"
Devang Patelf9d5c5c2010-01-18 19:52:14 +000019#include "llvm/IntrinsicInst.h"
Devang Patel0a9f7b92009-07-28 21:49:47 +000020#include "llvm/Metadata.h"
Nick Lewycky7a0370f2009-05-30 05:06:04 +000021#include "llvm/ADT/SmallVector.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000022#include "llvm/Support/ErrorHandling.h"
Chris Lattnerf7703df2004-01-09 06:12:26 +000023using namespace llvm;
Chris Lattner51cbcbf2002-11-20 20:47:41 +000024
Dan Gohman5fa75b02009-10-24 23:37:16 +000025Value *llvm::MapValue(const Value *V, ValueMapTy &VM) {
Chris Lattner51cbcbf2002-11-20 20:47:41 +000026 Value *&VMSlot = VM[V];
27 if (VMSlot) return VMSlot; // Does it exist in the map yet?
Chris Lattner5e665f52007-02-03 00:08:31 +000028
29 // NOTE: VMSlot can be invalidated by any reference to VM, which can grow the
30 // DenseMap. This includes any recursive calls to MapValue.
Misha Brukmanfd939082005-04-21 23:48:37 +000031
Devang Patel41d89c22009-07-27 17:17:04 +000032 // Global values and metadata do not need to be seeded into the ValueMap if
33 // they are using the identity mapping.
34 if (isa<GlobalValue>(V) || isa<InlineAsm>(V) || isa<MetadataBase>(V))
Chris Lattner5f92e2b2003-10-06 15:23:43 +000035 return VMSlot = const_cast<Value*>(V);
36
Chris Lattner77488cc2009-10-29 00:28:30 +000037 Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V));
38 if (C == 0) return 0;
39
40 if (isa<ConstantInt>(C) || isa<ConstantFP>(C) ||
41 isa<ConstantPointerNull>(C) || isa<ConstantAggregateZero>(C) ||
42 isa<UndefValue>(C) || isa<MDString>(C))
43 return VMSlot = C; // Primitive constants map directly
44
45 if (ConstantArray *CA = dyn_cast<ConstantArray>(C)) {
46 for (User::op_iterator b = CA->op_begin(), i = b, e = CA->op_end();
47 i != e; ++i) {
48 Value *MV = MapValue(*i, VM);
49 if (MV != *i) {
50 // This array must contain a reference to a global, make a new array
51 // and return it.
52 //
53 std::vector<Constant*> Values;
54 Values.reserve(CA->getNumOperands());
55 for (User::op_iterator j = b; j != i; ++j)
56 Values.push_back(cast<Constant>(*j));
57 Values.push_back(cast<Constant>(MV));
58 for (++i; i != e; ++i)
59 Values.push_back(cast<Constant>(MapValue(*i, VM)));
60 return VM[V] = ConstantArray::get(CA->getType(), Values);
Chris Lattner51cbcbf2002-11-20 20:47:41 +000061 }
Chris Lattner51cbcbf2002-11-20 20:47:41 +000062 }
Chris Lattner77488cc2009-10-29 00:28:30 +000063 return VM[V] = C;
Chris Lattner51cbcbf2002-11-20 20:47:41 +000064 }
Chris Lattner77488cc2009-10-29 00:28:30 +000065
66 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) {
67 for (User::op_iterator b = CS->op_begin(), i = b, e = CS->op_end();
68 i != e; ++i) {
69 Value *MV = MapValue(*i, VM);
70 if (MV != *i) {
71 // This struct must contain a reference to a global, make a new struct
72 // and return it.
73 //
74 std::vector<Constant*> Values;
75 Values.reserve(CS->getNumOperands());
76 for (User::op_iterator j = b; j != i; ++j)
77 Values.push_back(cast<Constant>(*j));
78 Values.push_back(cast<Constant>(MV));
79 for (++i; i != e; ++i)
80 Values.push_back(cast<Constant>(MapValue(*i, VM)));
81 return VM[V] = ConstantStruct::get(CS->getType(), Values);
82 }
83 }
84 return VM[V] = C;
85 }
86
87 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
88 std::vector<Constant*> Ops;
89 for (User::op_iterator i = CE->op_begin(), e = CE->op_end(); i != e; ++i)
90 Ops.push_back(cast<Constant>(MapValue(*i, VM)));
91 return VM[V] = CE->getWithOperands(Ops);
92 }
93
Chris Lattner1bb95912009-10-29 00:31:02 +000094 if (ConstantVector *CV = dyn_cast<ConstantVector>(C)) {
95 for (User::op_iterator b = CV->op_begin(), i = b, e = CV->op_end();
Chris Lattner77488cc2009-10-29 00:28:30 +000096 i != e; ++i) {
97 Value *MV = MapValue(*i, VM);
98 if (MV != *i) {
99 // This vector value must contain a reference to a global, make a new
100 // vector constant and return it.
101 //
102 std::vector<Constant*> Values;
Chris Lattner1bb95912009-10-29 00:31:02 +0000103 Values.reserve(CV->getNumOperands());
Chris Lattner77488cc2009-10-29 00:28:30 +0000104 for (User::op_iterator j = b; j != i; ++j)
105 Values.push_back(cast<Constant>(*j));
106 Values.push_back(cast<Constant>(MV));
107 for (++i; i != e; ++i)
108 Values.push_back(cast<Constant>(MapValue(*i, VM)));
109 return VM[V] = ConstantVector::get(Values);
110 }
111 }
112 return VM[V] = C;
Chris Lattner1bb95912009-10-29 00:31:02 +0000113 }
114
115 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) {
116 Function *F = cast<Function>(MapValue(BA->getFunction(), VM));
Chris Lattnercdfc9402009-11-01 01:27:45 +0000117 BasicBlock *BB = cast_or_null<BasicBlock>(MapValue(BA->getBasicBlock(),VM));
118 return VM[V] = BlockAddress::get(F, BB ? BB : BA->getBasicBlock());
Chris Lattner77488cc2009-10-29 00:28:30 +0000119 }
120
121 llvm_unreachable("Unknown type of constant!");
Chris Lattner51cbcbf2002-11-20 20:47:41 +0000122 return 0;
123}
Brian Gaeke6129af32004-05-19 09:08:12 +0000124
125/// RemapInstruction - Convert the instruction operands from referencing the
126/// current values into those specified by ValueMap.
127///
Chris Lattner5e665f52007-02-03 00:08:31 +0000128void llvm::RemapInstruction(Instruction *I, ValueMapTy &ValueMap) {
Gabor Greifba2c4872008-05-30 21:24:22 +0000129 for (User::op_iterator op = I->op_begin(), E = I->op_end(); op != E; ++op) {
Dan Gohman5fa75b02009-10-24 23:37:16 +0000130 Value *V = MapValue(*op, ValueMap);
Brian Gaeke6129af32004-05-19 09:08:12 +0000131 assert(V && "Referenced value not in value map!");
Gabor Greifba2c4872008-05-30 21:24:22 +0000132 *op = V;
Brian Gaeke6129af32004-05-19 09:08:12 +0000133 }
Devang Patelf9d5c5c2010-01-18 19:52:14 +0000134
135 // Map llvm.dbg.declare instruction's first operand, which points to
136 // alloca instruction through MDNode. Since MDNodes are not counted as normal
137 // uses, this will fall through cracks otherwise.
138 const DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I);
139 if (!DDI) return;
140
141 Value *AddrInsn = DDI->getAddress();
142 if (!AddrInsn) return;
143
144 ValueMapTy::iterator VMI = ValueMap.find(AddrInsn);
145 if (VMI == ValueMap.end()) return;
146
147 Value *Elts[] = { VMI->second };
148 MDNode *NewAddr = MDNode::get(AddrInsn->getContext(), Elts, 1);
149 I->setOperand(1, NewAddr);
Brian Gaeke6129af32004-05-19 09:08:12 +0000150}
Devang Patelf9d5c5c2010-01-18 19:52:14 +0000151