Searched refs:BinaryOpNode (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | PostfixExpression.cpp | 24 static std::optional<BinaryOpNode::OpType> 30 return BinaryOpNode::Align; in GetBinaryOpType() 32 return BinaryOpNode::Minus; in GetBinaryOpType() 34 return BinaryOpNode::Plus; in GetBinaryOpType() 59 stack.push_back(MakeNode<BinaryOpNode>(alloc, *op_type, *left, *right)); in ParseOneExpression() 118 bool Visit(BinaryOpNode &binary, Node *&) override { in Visit() 150 void Visit(BinaryOpNode &binary, Node *&) override; 181 void DWARFCodegen::Visit(BinaryOpNode &binary, Node *&) { in Visit() 186 case BinaryOpNode::Plus: in Visit() 191 case BinaryOpNode::Minus: in Visit() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | PostfixExpression.h | 51 class BinaryOpNode : public Node { 59 BinaryOpNode(OpType op_type, Node &left, Node &right) in BinaryOpNode() function 167 virtual ResultT Visit(BinaryOpNode &binary, Node *&ref) = 0; 179 return Visit(llvm::cast<BinaryOpNode>(*node), node); in Dispatch()
|