Lines Matching defs:ComplexDeinterleavingCompositeNode
138 struct ComplexDeinterleavingCompositeNode { struct
140 ComplexDeinterleavingCompositeNode(ComplexDeinterleavingOperation Op, in ComplexDeinterleavingCompositeNode() function
146 using NodePtr = std::shared_ptr<ComplexDeinterleavingCompositeNode>;
147 using RawNodePtr = ComplexDeinterleavingCompositeNode *;
150 ComplexDeinterleavingOperation Operation;
151 Value *Real;
152 Value *Imag;
156 unsigned Opcode;
157 std::optional<FastMathFlags> Flags;
159 ComplexDeinterleavingRotation Rotation =
161 SmallVector<RawNodePtr> Operands;
162 Value *ReplacementNode = nullptr;
164 void addOperand(NodePtr Node) { Operands.push_back(Node.get()); } in addOperand()
166 void dump() { dump(dbgs()); } in dump()
167 void dump(raw_ostream &OS) { in dump()