Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Aliases

272     /// looking for aliasing nodes and adding them to the Aliases vector.
274 SmallVector<SDValue, 8> &Aliases);
8566 // If they are the same then they must be aliases.
8649 /// looking for aliasing nodes and adding them to the Aliases vector.
8651 SmallVector<SDValue, 8> &Aliases) {
8670 // aliases list. If not, then continue up the chain looking for the next
8677 // chain until we find two aliases. If we've seen two aliases, assume we'll
8684 if (Depth > 6 || Aliases.size() == 2) {
8685 Aliases.clear();
8686 Aliases.push_back(OriginalChain);
8719 Aliases.push_back(Chain);
8734 Aliases.push_back(Chain);
8744 Aliases.push_back(Chain);
8753 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
8755 // Accumulate all the aliases to this node.
8756 GatherAllAliases(N, OldChain, Aliases);
8759 if (Aliases.size() == 0)
8763 if (Aliases.size() == 1)
8764 return Aliases[0];
8768 &Aliases[0], Aliases.size());