Searched refs:BinaryOpNode (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DPostfixExpression.cpp22 static llvm::Optional<BinaryOpNode::OpType>
28 return BinaryOpNode::Align;
30 return BinaryOpNode::Minus;
32 return BinaryOpNode::Plus;
57 stack.push_back(MakeNode<BinaryOpNode>(alloc, *op_type, *left, *right));
116 bool Visit(BinaryOpNode &binary, Node *&) override {
148 void Visit(BinaryOpNode &binary, Node *&) override;
179 void DWARFCodegen::Visit(BinaryOpNode &binary, Node *&) {
184 case BinaryOpNode::Plus:
189 case BinaryOpNode
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DPostfixExpression.h51 class BinaryOpNode : public Node { class in namespace:lldb_private::postfix
59 BinaryOpNode(OpType op_type, Node &left, Node &right) function in class:lldb_private::postfix::BinaryOpNode
167 virtual ResultT Visit(BinaryOpNode &binary, Node *&ref) = 0;
179 return Visit(llvm::cast<BinaryOpNode>(*node), node);

Completed in 156 milliseconds