Home | History | Annotate | Download | only in Utils

Lines Matching defs:Mapped

231   /// Distinct nodes are immediately mapped and added to \a DistinctWorklist
242 /// N has been mapped.
269 /// If \c Op is already mapped, return the mapping. If it's not an \a
282 /// \pre \c N is not yet mapped.
286 /// Get a previously mapped node.
293 /// metadata that has already been mapped will not be part of the POT.
296 /// distinct node, an already-mapped uniqued node, or \a ConstantAsMetadata)
324 /// \post \a getMappedOp() returns the mapped node for every node in \c G.
419 auto Mapped = mapValue(V);
420 assert((Mapped || (Flags & RF_NullMapMissingGlobalValues)) &&
423 return Mapped;
429 Value *Mapped = nullptr;
432 Mapped = mapValueOrNull(Op);
433 if (!Mapped)
435 if (Mapped != Op)
456 // If one of the operands mismatch, push it and the other mapped operands.
458 Ops.push_back(cast<Constant>(Mapped));
462 Mapped = mapValueOrNull(C->getOperand(OpNo));
463 if (!Mapped)
465 Mapped));
658 "Only uniqued operands cannot be mapped immediately");