Searched refs:UnaryOpNode (Results 1 – 3 of 3) sorted by relevance
37 static llvm::Optional<UnaryOpNode::OpType>40 return UnaryOpNode::Deref; in GetUnaryOpType()67 stack.push_back(MakeNode<UnaryOpNode>(alloc, *op_type, *operand)); in ParseOneExpression()134 bool Visit(UnaryOpNode &unary, Node *&) override { in Visit()164 void Visit(UnaryOpNode &unary, Node *&) override;229 void DWARFCodegen::Visit(UnaryOpNode &unary, Node *&) { in Visit()233 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()
33 static std::string ToString(UnaryOpNode::OpType type) { in ToString()35 case UnaryOpNode::Deref: in ToString()63 std::string Visit(UnaryOpNode &unary, Node *&) override { in Visit()