Searched refs:TFs (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1740 SmallVector<SDNode *, 8> TFs; // List of token factors to visit. local
1746 TFs.push_back(N);
1748 // Iterate through token factors. The TFs grows when new token factors are
1750 for (unsigned i = 0; i < TFs.size(); ++i) {
1755 for (unsigned j = i; j < TFs.size(); j++)
1756 Ops.emplace_back(TFs[j], 0);
1757 // Drop unprocessed Token Factors from TFs, so we do not add them to the
1759 TFs.resize(i);
1763 SDNode *TF = TFs[i];
1774 if (Op.hasOneUse() && !is_contained(TFs, O
[all...]

Completed in 150 milliseconds