Chris Lattner | 51cbcbf | 2002-11-20 20:47:41 +0000 | [diff] [blame] | 1 | //===- ValueMapper.cpp - Interface shared by lib/Transforms/Utils ---------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 51cbcbf | 2002-11-20 20:47:41 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file defines the MapValue function, which is shared by various parts of |
| 11 | // the lib/Transforms/Utils library. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Dan Gohman | 05ea54e | 2010-08-24 18:50:07 +0000 | [diff] [blame] | 15 | #include "llvm/Transforms/Utils/ValueMapper.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 16 | #include "llvm/IR/Constants.h" |
| 17 | #include "llvm/IR/Function.h" |
| 18 | #include "llvm/IR/InlineAsm.h" |
| 19 | #include "llvm/IR/Instructions.h" |
| 20 | #include "llvm/IR/Metadata.h" |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 21 | using namespace llvm; |
Chris Lattner | 51cbcbf | 2002-11-20 20:47:41 +0000 | [diff] [blame] | 22 | |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 23 | // Out of line method to get vtable etc for class. |
Craig Topper | 4bb51cc | 2012-09-26 06:36:36 +0000 | [diff] [blame] | 24 | void ValueMapTypeRemapper::anchor() {} |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 25 | void ValueMaterializer::anchor() {} |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 26 | |
| 27 | Value *llvm::MapValue(const Value *V, ValueToValueMapTy &VM, RemapFlags Flags, |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 28 | ValueMapTypeRemapper *TypeMapper, |
| 29 | ValueMaterializer *Materializer) { |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 30 | ValueToValueMapTy::iterator I = VM.find(V); |
Chris Lattner | 5e665f5 | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 31 | |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 32 | // If the value already exists in the map, use it. |
| 33 | if (I != VM.end() && I->second) return I->second; |
| 34 | |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 35 | // If we have a materializer and it can materialize a value, use that. |
| 36 | if (Materializer) { |
| 37 | if (Value *NewV = Materializer->materializeValueFor(const_cast<Value*>(V))) |
| 38 | return VM[V] = NewV; |
| 39 | } |
| 40 | |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 41 | // Global values do not need to be seeded into the VM if they |
| 42 | // are using the identity mapping. |
Chris Lattner | 7305c55 | 2011-07-15 23:18:40 +0000 | [diff] [blame] | 43 | if (isa<GlobalValue>(V) || isa<MDString>(V)) |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 44 | return VM[V] = const_cast<Value*>(V); |
Chris Lattner | 7305c55 | 2011-07-15 23:18:40 +0000 | [diff] [blame] | 45 | |
| 46 | if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) { |
| 47 | // Inline asm may need *type* remapping. |
| 48 | FunctionType *NewTy = IA->getFunctionType(); |
| 49 | if (TypeMapper) { |
| 50 | NewTy = cast<FunctionType>(TypeMapper->remapType(NewTy)); |
| 51 | |
| 52 | if (NewTy != IA->getFunctionType()) |
| 53 | V = InlineAsm::get(NewTy, IA->getAsmString(), IA->getConstraintString(), |
| 54 | IA->hasSideEffects(), IA->isAlignStack()); |
| 55 | } |
| 56 | |
| 57 | return VM[V] = const_cast<Value*>(V); |
| 58 | } |
| 59 | |
Chris Lattner | 5f92e2b | 2003-10-06 15:23:43 +0000 | [diff] [blame] | 60 | |
Chris Lattner | 1b3ef34 | 2010-01-21 21:05:54 +0000 | [diff] [blame] | 61 | if (const MDNode *MD = dyn_cast<MDNode>(V)) { |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 62 | // If this is a module-level metadata and we know that nothing at the module |
| 63 | // level is changing, then use an identity mapping. |
| 64 | if (!MD->isFunctionLocal() && (Flags & RF_NoModuleLevelChanges)) |
| 65 | return VM[V] = const_cast<Value*>(V); |
| 66 | |
Chris Lattner | 51e62f0 | 2011-01-24 03:18:24 +0000 | [diff] [blame] | 67 | // Create a dummy node in case we have a metadata cycle. |
Dmitri Gribenko | 5c332db | 2013-05-05 00:40:33 +0000 | [diff] [blame] | 68 | MDNode *Dummy = MDNode::getTemporary(V->getContext(), None); |
Chris Lattner | 51e62f0 | 2011-01-24 03:18:24 +0000 | [diff] [blame] | 69 | VM[V] = Dummy; |
| 70 | |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 71 | // Check all operands to see if any need to be remapped. |
| 72 | for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i) { |
| 73 | Value *OP = MD->getOperand(i); |
Manman Ren | 16d1a6b | 2013-01-31 21:19:18 +0000 | [diff] [blame] | 74 | if (OP == 0) continue; |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 75 | Value *Mapped_OP = MapValue(OP, VM, Flags, TypeMapper, Materializer); |
Manman Ren | 16d1a6b | 2013-01-31 21:19:18 +0000 | [diff] [blame] | 76 | // Use identity map if Mapped_Op is null and we can ignore missing |
| 77 | // entries. |
| 78 | if (Mapped_OP == OP || |
| 79 | (Mapped_OP == 0 && (Flags & RF_IgnoreMissingEntries))) |
| 80 | continue; |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 81 | |
Chris Lattner | 51e62f0 | 2011-01-24 03:18:24 +0000 | [diff] [blame] | 82 | // Ok, at least one operand needs remapping. |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 83 | SmallVector<Value*, 4> Elts; |
| 84 | Elts.reserve(MD->getNumOperands()); |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 85 | for (i = 0; i != e; ++i) { |
| 86 | Value *Op = MD->getOperand(i); |
Manman Ren | 16d1a6b | 2013-01-31 21:19:18 +0000 | [diff] [blame] | 87 | if (Op == 0) |
| 88 | Elts.push_back(0); |
| 89 | else { |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 90 | Value *Mapped_Op = MapValue(Op, VM, Flags, TypeMapper, Materializer); |
Manman Ren | 16d1a6b | 2013-01-31 21:19:18 +0000 | [diff] [blame] | 91 | // Use identity map if Mapped_Op is null and we can ignore missing |
| 92 | // entries. |
| 93 | if (Mapped_Op == 0 && (Flags & RF_IgnoreMissingEntries)) |
| 94 | Mapped_Op = Op; |
| 95 | Elts.push_back(Mapped_Op); |
| 96 | } |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 97 | } |
Jay Foad | ec9186b | 2011-04-21 19:59:31 +0000 | [diff] [blame] | 98 | MDNode *NewMD = MDNode::get(V->getContext(), Elts); |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 99 | Dummy->replaceAllUsesWith(NewMD); |
Chris Lattner | 51e62f0 | 2011-01-24 03:18:24 +0000 | [diff] [blame] | 100 | VM[V] = NewMD; |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 101 | MDNode::deleteTemporary(Dummy); |
Chris Lattner | 51e62f0 | 2011-01-24 03:18:24 +0000 | [diff] [blame] | 102 | return NewMD; |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Chris Lattner | 51e62f0 | 2011-01-24 03:18:24 +0000 | [diff] [blame] | 105 | VM[V] = const_cast<Value*>(V); |
| 106 | MDNode::deleteTemporary(Dummy); |
| 107 | |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 108 | // No operands needed remapping. Use an identity mapping. |
Chris Lattner | 51e62f0 | 2011-01-24 03:18:24 +0000 | [diff] [blame] | 109 | return const_cast<Value*>(V); |
Victor Hernandez | f58c34d | 2010-01-20 05:49:59 +0000 | [diff] [blame] | 110 | } |
| 111 | |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 112 | // Okay, this either must be a constant (which may or may not be mappable) or |
| 113 | // is something that is not in the mapping table. |
Chris Lattner | 77488cc | 2009-10-29 00:28:30 +0000 | [diff] [blame] | 114 | Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V)); |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 115 | if (C == 0) |
| 116 | return 0; |
Chris Lattner | 77488cc | 2009-10-29 00:28:30 +0000 | [diff] [blame] | 117 | |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 118 | if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) { |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 119 | Function *F = |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 120 | cast<Function>(MapValue(BA->getFunction(), VM, Flags, TypeMapper, Materializer)); |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 121 | BasicBlock *BB = cast_or_null<BasicBlock>(MapValue(BA->getBasicBlock(), VM, |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 122 | Flags, TypeMapper, Materializer)); |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 123 | return VM[V] = BlockAddress::get(F, BB ? BB : BA->getBasicBlock()); |
Chris Lattner | 51cbcbf | 2002-11-20 20:47:41 +0000 | [diff] [blame] | 124 | } |
Chris Lattner | 77488cc | 2009-10-29 00:28:30 +0000 | [diff] [blame] | 125 | |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 126 | // Otherwise, we have some other constant to remap. Start by checking to see |
| 127 | // if all operands have an identity remapping. |
| 128 | unsigned OpNo = 0, NumOperands = C->getNumOperands(); |
| 129 | Value *Mapped = 0; |
| 130 | for (; OpNo != NumOperands; ++OpNo) { |
| 131 | Value *Op = C->getOperand(OpNo); |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 132 | Mapped = MapValue(Op, VM, Flags, TypeMapper, Materializer); |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 133 | if (Mapped != C) break; |
Chris Lattner | 77488cc | 2009-10-29 00:28:30 +0000 | [diff] [blame] | 134 | } |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 135 | |
| 136 | // See if the type mapper wants to remap the type as well. |
| 137 | Type *NewTy = C->getType(); |
| 138 | if (TypeMapper) |
| 139 | NewTy = TypeMapper->remapType(NewTy); |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 140 | |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 141 | // If the result type and all operands match up, then just insert an identity |
| 142 | // mapping. |
| 143 | if (OpNo == NumOperands && NewTy == C->getType()) |
| 144 | return VM[V] = C; |
| 145 | |
| 146 | // Okay, we need to create a new constant. We've already processed some or |
| 147 | // all of the operands, set them all up now. |
| 148 | SmallVector<Constant*, 8> Ops; |
| 149 | Ops.reserve(NumOperands); |
| 150 | for (unsigned j = 0; j != OpNo; ++j) |
| 151 | Ops.push_back(cast<Constant>(C->getOperand(j))); |
| 152 | |
| 153 | // If one of the operands mismatch, push it and the other mapped operands. |
| 154 | if (OpNo != NumOperands) { |
| 155 | Ops.push_back(cast<Constant>(Mapped)); |
| 156 | |
| 157 | // Map the rest of the operands that aren't processed yet. |
| 158 | for (++OpNo; OpNo != NumOperands; ++OpNo) |
| 159 | Ops.push_back(MapValue(cast<Constant>(C->getOperand(OpNo)), VM, |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 160 | Flags, TypeMapper, Materializer)); |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) |
| 164 | return VM[V] = CE->getWithOperands(Ops, NewTy); |
| 165 | if (isa<ConstantArray>(C)) |
| 166 | return VM[V] = ConstantArray::get(cast<ArrayType>(NewTy), Ops); |
| 167 | if (isa<ConstantStruct>(C)) |
| 168 | return VM[V] = ConstantStruct::get(cast<StructType>(NewTy), Ops); |
| 169 | if (isa<ConstantVector>(C)) |
| 170 | return VM[V] = ConstantVector::get(Ops); |
| 171 | // If this is a no-operand constant, it must be because the type was remapped. |
| 172 | if (isa<UndefValue>(C)) |
| 173 | return VM[V] = UndefValue::get(NewTy); |
| 174 | if (isa<ConstantAggregateZero>(C)) |
| 175 | return VM[V] = ConstantAggregateZero::get(NewTy); |
| 176 | assert(isa<ConstantPointerNull>(C)); |
| 177 | return VM[V] = ConstantPointerNull::get(cast<PointerType>(NewTy)); |
Chris Lattner | 51cbcbf | 2002-11-20 20:47:41 +0000 | [diff] [blame] | 178 | } |
Brian Gaeke | 6129af3 | 2004-05-19 09:08:12 +0000 | [diff] [blame] | 179 | |
| 180 | /// RemapInstruction - Convert the instruction operands from referencing the |
Devang Patel | 29d3dd8 | 2010-06-23 23:55:51 +0000 | [diff] [blame] | 181 | /// current values into those specified by VMap. |
Brian Gaeke | 6129af3 | 2004-05-19 09:08:12 +0000 | [diff] [blame] | 182 | /// |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 183 | void llvm::RemapInstruction(Instruction *I, ValueToValueMapTy &VMap, |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 184 | RemapFlags Flags, ValueMapTypeRemapper *TypeMapper, |
| 185 | ValueMaterializer *Materializer){ |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 186 | // Remap operands. |
Gabor Greif | ba2c487 | 2008-05-30 21:24:22 +0000 | [diff] [blame] | 187 | for (User::op_iterator op = I->op_begin(), E = I->op_end(); op != E; ++op) { |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 188 | Value *V = MapValue(*op, VMap, Flags, TypeMapper, Materializer); |
Chris Lattner | b5fa5fc | 2011-01-08 08:15:20 +0000 | [diff] [blame] | 189 | // If we aren't ignoring missing entries, assert that something happened. |
| 190 | if (V != 0) |
| 191 | *op = V; |
| 192 | else |
| 193 | assert((Flags & RF_IgnoreMissingEntries) && |
| 194 | "Referenced value not in value map!"); |
Brian Gaeke | 6129af3 | 2004-05-19 09:08:12 +0000 | [diff] [blame] | 195 | } |
Daniel Dunbar | fd406f1 | 2010-08-26 03:48:08 +0000 | [diff] [blame] | 196 | |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 197 | // Remap phi nodes' incoming blocks. |
| 198 | if (PHINode *PN = dyn_cast<PHINode>(I)) { |
| 199 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { |
| 200 | Value *V = MapValue(PN->getIncomingBlock(i), VMap, Flags); |
| 201 | // If we aren't ignoring missing entries, assert that something happened. |
| 202 | if (V != 0) |
| 203 | PN->setIncomingBlock(i, cast<BasicBlock>(V)); |
| 204 | else |
| 205 | assert((Flags & RF_IgnoreMissingEntries) && |
| 206 | "Referenced block not in value map!"); |
| 207 | } |
| 208 | } |
| 209 | |
Devang Patel | 1f35b17 | 2011-08-04 20:02:18 +0000 | [diff] [blame] | 210 | // Remap attached metadata. |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 211 | SmallVector<std::pair<unsigned, MDNode *>, 4> MDs; |
Devang Patel | 1f35b17 | 2011-08-04 20:02:18 +0000 | [diff] [blame] | 212 | I->getAllMetadata(MDs); |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 213 | for (SmallVectorImpl<std::pair<unsigned, MDNode *> >::iterator |
| 214 | MI = MDs.begin(), ME = MDs.end(); MI != ME; ++MI) { |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 215 | MDNode *Old = MI->second; |
James Molloy | a84a83b | 2013-05-28 15:17:05 +0000 | [diff] [blame^] | 216 | MDNode *New = MapValue(Old, VMap, Flags, TypeMapper, Materializer); |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 217 | if (New != Old) |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 218 | I->setMetadata(MI->first, New); |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 219 | } |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 220 | |
| 221 | // If the instruction's type is being remapped, do so now. |
| 222 | if (TypeMapper) |
| 223 | I->mutateType(TypeMapper->remapType(I->getType())); |
Dan Gohman | 6cb8c23 | 2010-08-26 15:41:53 +0000 | [diff] [blame] | 224 | } |