| /netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/ |
| H A D | region-model-manager.cc | 431 if (const binop_svalue *binop = arg->dyn_cast_binop_svalue ()) in maybe_fold_unaryop() local 432 if (TREE_CODE_CLASS (binop->get_op ()) == tcc_comparison) in maybe_fold_unaryop() 435 = invert_tree_comparison (binop->get_op (), in maybe_fold_unaryop() 436 HONOR_NANS (binop->get_type ())); in maybe_fold_unaryop() 438 return get_or_create_binop (binop->get_type (), inv_op, in maybe_fold_unaryop() 439 binop->get_arg0 (), in maybe_fold_unaryop() 440 binop->get_arg1 ()); in maybe_fold_unaryop() 729 if (const binop_svalue *binop = arg0->dyn_cast_binop_svalue ()) in maybe_fold_binop() local 730 if (binop->get_op () == op in maybe_fold_binop() 731 && binop->get_arg1 ()->maybe_get_constant () in maybe_fold_binop() [all …]
|
| H A D | region-model.cc | 3044 else if (const binop_svalue *binop = lhs->dyn_cast_binop_svalue ()) in eval_condition_without_cm() local 3051 if (binop->get_op () == POINTER_PLUS_EXPR) in eval_condition_without_cm() 3054 = eval_condition_without_cm (binop->get_arg0 (), in eval_condition_without_cm() 5050 const binop_svalue *binop = four_times_x_init->dyn_cast_binop_svalue (); in test_binop_svalue_folding() local 5051 ASSERT_EQ (binop->get_op (), MULT_EXPR); in test_binop_svalue_folding() 5052 ASSERT_EQ (binop->get_arg0 (), x_init); in test_binop_svalue_folding() 5053 ASSERT_EQ (binop->get_arg1 (), cst_sval[4]); in test_binop_svalue_folding()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MallocOverflowSecurityChecker.cpp | 81 if (const BinaryOperator *binop = dyn_cast<BinaryOperator>(e)) { in CheckMallocArgument() local 82 BinaryOperatorKind opc = binop->getOpcode(); in CheckMallocArgument() 85 mulop = binop; in CheckMallocArgument() 89 const Expr *lhs = binop->getLHS(); in CheckMallocArgument() 90 const Expr *rhs = binop->getRHS(); in CheckMallocArgument()
|
| /netbsd-src/external/mpl/dhcp/dist/common/ |
| H A D | print.c | 727 binop: 747 goto binop; 751 goto binop; 755 goto binop; 759 goto binop; 763 goto binop; 767 goto binop; 771 goto binop; 775 goto binop; 779 goto binop;
|
| H A D | parse.c | 4468 int parse_expression (expr, cfile, lose, context, plhs, binop) in parse_expression() argument 4474 enum expr_op binop; 4627 binop = next_op; 4637 if (binop != expr_none && next_op != expr_none && 4638 op_precedence (binop, next_op) < 0) { 4660 if (binop != expr_none) { 4674 switch(binop) { 4748 (*expr) -> op = binop; 4768 tmp -> op = binop; 4774 binop = next_op;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
| H A D | LangImpl02.rst | 373 // Make sure it's a declared binop. 410 a sequence of [binop,primaryexpr] pairs: 446 // If this is a binop, find its precedence. 450 // If this is a binop that binds at least as tightly as the current binop, 464 // Okay, we know this is a binop. 466 getNextToken(); // eat binop 479 In particular, we could have "(a+b) binop unparsed" or "a + (b binop 480 unparsed)". To determine this, we look ahead at "binop" to determine its 491 If the precedence of the binop to the right of "RHS" is lower or equal 493 parentheses associate as "(a+b) binop ...". In our example, the current [all …]
|
| /netbsd-src/bin/test/ |
| H A D | test.c | 176 static int binop(void); 481 return binop(); in primary() 505 binop(void) in binop() function
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/ |
| H A D | cxx_proto.proto | 55 BinaryOp binop = 3; field
|
| H A D | cxx_loop_proto.proto | 58 BinaryOp binop = 2; field
|
| /netbsd-src/bin/sh/ |
| H A D | arithmetic.c | 303 binop(int token, union a_token_val *val, int op, int noeval) in binop() function 317 intmax_t a = binop(token, val, op, noeval); in and()
|
| /netbsd-src/common/lib/libx86emu/ |
| H A D | x86emu.c | 1094 common_binop_byte_rm_r(struct X86EMU *emu, uint8_t (*binop)(struct X86EMU *, uint8_t, uint8_t)) in common_binop_byte_rm_r() 1105 destval = (*binop)(emu, destval, srcval); in common_binop_byte_rm_r() 1109 *destreg = (*binop)(emu, *destreg, srcval); in common_binop_byte_rm_r() 1114 common_binop_ns_byte_rm_r(struct X86EMU *emu, void (*binop)(struct X86EMU *, uint8_t, uint8_t)) in common_binop_ns_byte_rm_r() 1127 (*binop)(emu, destval, srcval); in common_binop_ns_byte_rm_r() 1131 common_binop_word_rm_r(struct X86EMU *emu, uint16_t (*binop)(struct X86EMU *, uint16_t, uint16_t)) in common_binop_word_rm_r() 1141 destval = (*binop)(emu, destval, srcval); in common_binop_word_rm_r() 1145 *destreg = (*binop)(emu, *destreg, srcval); in common_binop_word_rm_r() 1150 common_binop_byte_r_rm(struct X86EMU *emu, uint8_t (*binop)(struct X86EMU *, uint8_t, uint8_t)) in common_binop_byte_r_rm() 1163 *destreg = (*binop)(emu, *destreg, srcval); in common_binop_byte_r_rm() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/proto-to-cxx/ |
| H A D | loop_proto_to_cxx.cpp | 64 return os << x.binop(); in operator <<()
|
| H A D | proto_to_cxx.cpp | 38 if (x.has_binop()) return os << x.binop(); in operator <<()
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/proto-to-llvm/ |
| H A D | loop_proto_to_llvm.cpp | 77 return BinopToString(os, x.binop()); in RvalueToString()
|
| /netbsd-src/external/gpl3/gcc.old/dist/contrib/ |
| H A D | paranoia.cc | 204 void binop(int code, const real_c_float&); 226 { binop(PLUS_EXPR, b); return *this; } in operator +=() 228 { binop(MINUS_EXPR, b); return *this; } in operator -=() 230 { binop(MULT_EXPR, b); return *this; } in operator *=() 232 { binop(RDIV_EXPR, b); return *this; } in operator /=() 285 real_c_float::binop (int code, const real_c_float &b) in binop() function in real_c_float
|
| /netbsd-src/external/gpl3/gcc/dist/contrib/ |
| H A D | paranoia.cc | 204 void binop(int code, const real_c_float&); 226 { binop(PLUS_EXPR, b); return *this; } in operator +=() 228 { binop(MINUS_EXPR, b); return *this; } in operator -=() 230 { binop(MULT_EXPR, b); return *this; } in operator *=() 232 { binop(RDIV_EXPR, b); return *this; } in operator /=() 285 real_c_float::binop (int code, const real_c_float &b) in binop() function in real_c_float
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | expr.cc | 5033 optab binop; in optimize_bitfield_assignment_op() local 5151 binop = xor_optab; in optimize_bitfield_assignment_op() 5154 binop = code == PLUS_EXPR ? add_optab : sub_optab; in optimize_bitfield_assignment_op() 5159 result = expand_binop (str_mode, binop, str_rtx, in optimize_bitfield_assignment_op() 5183 binop = code == BIT_IOR_EXPR ? ior_optab : xor_optab; in optimize_bitfield_assignment_op() 5193 result = expand_binop (str_mode, binop, str_rtx, in optimize_bitfield_assignment_op() 9321 goto binop; in expand_expr_real_2() 9450 goto binop; in expand_expr_real_2() 9563 goto binop; in expand_expr_real_2() 9575 goto binop; in expand_expr_real_2() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | expr.c | 4755 optab binop; in optimize_bitfield_assignment_op() local 4873 binop = xor_optab; in optimize_bitfield_assignment_op() 4876 binop = code == PLUS_EXPR ? add_optab : sub_optab; in optimize_bitfield_assignment_op() 4881 result = expand_binop (str_mode, binop, str_rtx, in optimize_bitfield_assignment_op() 4905 binop = code == BIT_IOR_EXPR ? ior_optab : xor_optab; in optimize_bitfield_assignment_op() 4915 result = expand_binop (str_mode, binop, str_rtx, in optimize_bitfield_assignment_op() 8896 goto binop; in expand_expr_real_2() 9023 goto binop; in expand_expr_real_2() 9073 goto binop; in expand_expr_real_2() 9124 goto binop; in expand_expr_real_2() [all …]
|
| /netbsd-src/external/mpl/dhcp/dist/keama/ |
| H A D | doc.txt | 244 struct element *lhs, enum expr_op binop) 251 binop: expr_none or binary operation
|
| H A D | parse.c | 3624 struct element *lhs, enum expr_op binop) in parse_expression() argument 3747 binop = next_op; in parse_expression() 3757 if (binop != expr_none && next_op != expr_none && in parse_expression() 3758 op_precedence(binop, next_op) < 0) { in parse_expression() 3779 if (binop != expr_none) { in parse_expression() 3789 switch (binop) { in parse_expression() 3895 binop = next_op; in parse_expression()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/HistoricalNotes/ |
| H A D | 2007-OriginalClangReadme.txt | 135 highlight regions of interesting code (e.g. the LHS and RHS of a binop).
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/array/ |
| H A D | operations.d | 121 …__vector(T[N]) binop(string op, T, size_t N)(const scope __vector(T[N]) a, const scope __vector(T[… in version()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/gcn/ |
| H A D | gcn.md | 1652 ;; {{{ ALU: generic 32-bit binop 1656 (define_code_iterator binop [and ior xor smin smax umin umax 1691 (binop:SI 1746 ;; {{{ ALU: generic 128-bit binop
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/gcn/ |
| H A D | gcn.md | 1450 ;; {{{ ALU: generic 32-bit binop 1454 (define_code_iterator binop [and ior xor smin smax umin umax 1489 (binop:SI
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
| H A D | AMDGPUOperandSyntax.rst | 868 expr ::= expr binop expr | primaryexpr ; 872 binop ::= '&&'
|