Home | History | Annotate | Download | only in Utils

Lines Matching defs:Mapped

232   /// Distinct nodes are immediately mapped and added to \a DistinctWorklist
243 /// N has been mapped.
270 /// If \c Op is already mapped, return the mapping. If it's not an \a
283 /// \pre \c N is not yet mapped.
287 /// Get a previously mapped node.
294 /// metadata that has already been mapped will not be part of the POT.
297 /// distinct node, an already-mapped uniqued node, or \a ConstantAsMetadata)
325 /// \post \a getMappedOp() returns the mapped node for every node in \c G.
420 auto Mapped = mapValue(V);
421 assert((Mapped || (Flags & RF_NullMapMissingGlobalValues)) &&
424 return Mapped;
430 Value *Mapped = nullptr;
433 Mapped = mapValueOrNull(Op);
434 if (!Mapped)
436 if (Mapped != Op)
457 // If one of the operands mismatch, push it and the other mapped operands.
459 Ops.push_back(cast<Constant>(Mapped));
463 Mapped = mapValueOrNull(C->getOperand(OpNo));
464 if (!Mapped)
466 Mapped));
671 "Only uniqued operands cannot be mapped immediately");