Lines Matching refs:Rotation
159 ComplexDeinterleavingRotation Rotation = member
191 OS << " Rotation: " << ((int)Rotation * 90) << "\n"; in dump()
596 ComplexDeinterleavingRotation Rotation = (ComplexDeinterleavingRotation)Negs; in identifyNodeWithImplicitAdd() local
614 if (Rotation == ComplexDeinterleavingRotation::Rotation_90 || in identifyNodeWithImplicitAdd()
615 Rotation == ComplexDeinterleavingRotation::Rotation_270) in identifyNodeWithImplicitAdd()
620 if (Rotation == ComplexDeinterleavingRotation::Rotation_0 || in identifyNodeWithImplicitAdd()
621 Rotation == ComplexDeinterleavingRotation::Rotation_180) in identifyNodeWithImplicitAdd()
645 Node->Rotation = Rotation; in identifyNodeWithImplicitAdd()
663 ComplexDeinterleavingRotation Rotation; in identifyPartialMul() local
665 Rotation = ComplexDeinterleavingRotation::Rotation_0; in identifyPartialMul()
667 Rotation = ComplexDeinterleavingRotation::Rotation_90; in identifyPartialMul()
669 Rotation = ComplexDeinterleavingRotation::Rotation_180; in identifyPartialMul()
671 Rotation = ComplexDeinterleavingRotation::Rotation_270; in identifyPartialMul()
719 if (Rotation == ComplexDeinterleavingRotation::Rotation_90 || in identifyPartialMul()
720 Rotation == ComplexDeinterleavingRotation::Rotation_270) in identifyPartialMul()
724 (Rotation == ComplexDeinterleavingRotation::Rotation_0 || in identifyPartialMul()
725 Rotation == ComplexDeinterleavingRotation::Rotation_180) in identifyPartialMul()
728 (Rotation == ComplexDeinterleavingRotation::Rotation_90 || in identifyPartialMul()
729 Rotation == ComplexDeinterleavingRotation::Rotation_270) in identifyPartialMul()
762 Node->Rotation = Rotation; in identifyPartialMul()
774 ComplexDeinterleavingRotation Rotation; in identifyAdd() local
779 Rotation = ComplexDeinterleavingRotation::Rotation_90; in identifyAdd()
784 Rotation = ComplexDeinterleavingRotation::Rotation_270; in identifyAdd()
813 Node->Rotation = Rotation; in identifyAdd()
1240 ComplexDeinterleavingRotation Rotation; in identifyMultiplications() local
1244 Rotation = llvm::ComplexDeinterleavingRotation::Rotation_0; in identifyMultiplications()
1246 Rotation = llvm::ComplexDeinterleavingRotation::Rotation_180; in identifyMultiplications()
1253 Rotation = llvm::ComplexDeinterleavingRotation::Rotation_90; in identifyMultiplications()
1255 Rotation = llvm::ComplexDeinterleavingRotation::Rotation_270; in identifyMultiplications()
1266 dbgs().indent(4) << "Rotation - " << (int)Rotation * 90 << "\n"; in identifyMultiplications()
1271 NodeMul->Rotation = Rotation; in identifyMultiplications()
1335 ComplexDeinterleavingRotation Rotation; in identifyAdditions() local
1337 Rotation = ComplexDeinterleavingRotation::Rotation_0; in identifyAdditions()
1339 Rotation = ComplexDeinterleavingRotation::Rotation_90; in identifyAdditions()
1341 Rotation = ComplexDeinterleavingRotation::Rotation_180; in identifyAdditions()
1343 Rotation = ComplexDeinterleavingRotation::Rotation_270; in identifyAdditions()
1346 if (Rotation == ComplexDeinterleavingRotation::Rotation_0 || in identifyAdditions()
1347 Rotation == ComplexDeinterleavingRotation::Rotation_180) { in identifyAdditions()
1357 dbgs().indent(4) << "Rotation - " << (int)Rotation * 90 << "\n"; in identifyAdditions()
1361 if (Rotation == llvm::ComplexDeinterleavingRotation::Rotation_0) { in identifyAdditions()
1370 } else if (Rotation == in identifyAdditions()
1383 TmpNode->Rotation = Rotation; in identifyAdditions()
1946 Builder, Node->Operation, Node->Rotation, Input0, Input1, in replaceNode()