Home
last modified time | relevance | path

Searched refs:BitopExprNode (Results 1 – 5 of 5) sorted by relevance

/external/bcc/src/cc/frontends/b/
Dparser.yy62 BitopExprNode *bitop;
367 …new AssignExprNode(IdentExprNode::Ptr($2), ExprNode::Ptr($5)); $$->bitop_ = BitopExprNode::Ptr($3);
450 …new AssignExprNode(IdentExprNode::Ptr($1), ExprNode::Ptr($4)); $$->bitop_ = BitopExprNode::Ptr($2);
464 { $$ = $1; $$->bitop_ = BitopExprNode::Ptr($2); }
480 { $$ = new PacketExprNode(IdentExprNode::Ptr($2)); $$->bitop_ = BitopExprNode::Ptr($3);
495 { $$ = $2; $$->bitop_ = BitopExprNode::Ptr($4); }
502 { $$ = $1; $$->bitop_ = BitopExprNode::Ptr($2); }
552 { $$ = $1; $$->bitop_ = BitopExprNode::Ptr($2); }*/
572 { $$ = new BitopExprNode(string("0"), *$4); delete $4;
575 { $$ = new BitopExprNode(*$2, *$5); delete $2; delete $5;
Dnode.h66 EXPAND(BitopExprNode, bitop_expr_node) \
149 unique_ptr<BitopExprNode> bitop_;
222 class BitopExprNode : public ExprNode {
224 DECLARE(BitopExprNode)
229 BitopExprNode(const string& bofs, const string& bsz) in BitopExprNode() function
Dprinter.cc141 StatusTuple Printer::visit_bitop_expr_node(BitopExprNode* n) { in visit_bitop_expr_node()
Dtype_check.cc221 StatusTuple TypeCheck::visit_bitop_expr_node(BitopExprNode *n) { in visit_bitop_expr_node()
Dcodegen_llvm.cc530 StatusTuple CodegenLLVM::visit_bitop_expr_node(BitopExprNode *n) { in visit_bitop_expr_node()