Home
last modified time | relevance | path

Searched refs:binop (Results 1 – 25 of 55) sorted by relevance

123

/netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/
H A Dregion-model-manager.cc431 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 Dregion-model.cc3044 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 DMallocOverflowSecurityChecker.cpp81 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 Dprint.c727 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 Dparse.c4468 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 DLangImpl02.rst373 // 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 Dtest.c176 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 Dcxx_proto.proto55 BinaryOp binop = 3; field
H A Dcxx_loop_proto.proto58 BinaryOp binop = 2; field
/netbsd-src/bin/sh/
H A Darithmetic.c303 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 Dx86emu.c1094 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 Dloop_proto_to_cxx.cpp64 return os << x.binop(); in operator <<()
H A Dproto_to_cxx.cpp38 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 Dloop_proto_to_llvm.cpp77 return BinopToString(os, x.binop()); in RvalueToString()
/netbsd-src/external/gpl3/gcc.old/dist/contrib/
H A Dparanoia.cc204 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 Dparanoia.cc204 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 Dexpr.cc5033 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 Dexpr.c4755 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 Ddoc.txt244 struct element *lhs, enum expr_op binop)
251 binop: expr_none or binary operation
H A Dparse.c3624 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 D2007-OriginalClangReadme.txt135 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 Doperations.d121 …__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 Dgcn.md1652 ;; {{{ 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 Dgcn.md1450 ;; {{{ 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 DAMDGPUOperandSyntax.rst868 expr ::= expr binop expr | primaryexpr ;
872 binop ::= '&&'

123