Home | History | Annotate | Download | only in interpreter

Lines Matching full:binop

2772 void BytecodeGenerator::VisitBinaryOperation(BinaryOperation* binop) {
2773 switch (binop->op()) {
2775 VisitCommaExpression(binop);
2778 VisitLogicalOrExpression(binop);
2781 VisitLogicalAndExpression(binop);
2784 VisitArithmeticExpression(binop);
2826 void BytecodeGenerator::VisitCommaExpression(BinaryOperation* binop) {
2827 VisitForEffect(binop->left());
2828 Visit(binop->right());
2831 void BytecodeGenerator::VisitLogicalOrExpression(BinaryOperation* binop) {
2832 Expression* left = binop->left();
2833 Expression* right = binop->right();
2866 void BytecodeGenerator::VisitLogicalAndExpression(BinaryOperation* binop) {
2867 Expression* left = binop->left();
2868 Expression* right = binop->right();