Searched refs:UnaryOpNode (Results 1 – 2 of 2) sorted by relevance
39 static std::optional<UnaryOpNode::OpType>42 return UnaryOpNode::Deref; in GetUnaryOpType()69 stack.push_back(MakeNode<UnaryOpNode>(alloc, *op_type, *operand)); in ParseOneExpression()136 bool Visit(UnaryOpNode &unary, Node *&) override { in Visit()166 void Visit(UnaryOpNode &unary, Node *&) override;231 void DWARFCodegen::Visit(UnaryOpNode &unary, Node *&) { in Visit()235 case UnaryOpNode::Deref: in Visit()
132 class UnaryOpNode : public Node {138 UnaryOpNode(OpType op_type, Node &operand) in UnaryOpNode() function172 virtual ResultT Visit(UnaryOpNode &unary, Node *&ref) = 0;189 return Visit(llvm::cast<UnaryOpNode>(*node), node); in Dispatch()