Searched refs:RealMuls (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ComplexDeinterleavingPass.cpp | 350 NodePtr identifyMultiplications(std::vector<Product> &RealMuls, 357 bool collectPartialMuls(const std::vector<Product> &RealMuls, 1069 std::vector<Product> RealMuls, ImagMuls; in identifyReassocNodes() local 1071 if (!Collect(Real, RealMuls, RealAddends) || in identifyReassocNodes() 1079 if (!RealMuls.empty() || !ImagMuls.empty()) { in identifyReassocNodes() 1083 FinalNode = identifyMultiplications(RealMuls, ImagMuls, FinalNode); in identifyReassocNodes() 1103 const std::vector<Product> &RealMuls, const std::vector<Product> &ImagMuls, in collectPartialMuls() argument 1123 for (unsigned i = 0; i < RealMuls.size(); ++i) { in collectPartialMuls() 1126 auto *Common = FindCommonInstruction(RealMuls[i], ImagMuls[j]); in collectPartialMuls() 1130 auto *A = RealMuls[i].Multiplicand == Common ? RealMuls[i].Multiplier in collectPartialMuls() [all …]
|