Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocOverflowSecurityChecker.cpp83 if (const BinaryOperator *binop = dyn_cast<BinaryOperator>(e)) { in CheckMallocArgument() local
84 BinaryOperatorKind opc = binop->getOpcode(); in CheckMallocArgument()
87 mulop = binop; in CheckMallocArgument()
91 const Expr *lhs = binop->getLHS(); in CheckMallocArgument()
92 const Expr *rhs = binop->getRHS(); in CheckMallocArgument()
/freebsd/bin/sh/
H A Dshow.c77 goto binop; in shtree()
80 goto binop; in shtree()
83 binop: in shtree()
H A Darith_yacc.c233 static arith_t binop(int token, union yystype *val, int op, int noeval) in binop() function
246 arith_t a = binop(token, val, op, noeval); in and()
/freebsd/sys/contrib/x86emu/
H A Dx86emu.c1109 uint8_t (*binop)(struct x86emu *, uint8_t, uint8_t)) in common_binop_byte_rm_r()
1120 destval = (*binop)(emu, destval, srcval); in common_binop_byte_rm_r()
1124 *destreg = (*binop)(emu, *destreg, srcval); in common_binop_byte_rm_r()
1130 void (*binop)(struct x86emu *, uint8_t, uint8_t)) in common_binop_ns_byte_rm_r()
1143 (*binop)(emu, destval, srcval); in common_binop_ns_byte_rm_r()
1148 uint16_t (*binop)(struct x86emu *, uint16_t, uint16_t)) in common_binop_word_rm_r()
1158 destval = (*binop)(emu, destval, srcval); in common_binop_word_rm_r()
1162 *destreg = (*binop)(emu, *destreg, srcval); in common_binop_word_rm_r()
1168 uint8_t (*binop)(struct x86emu *, uint8_t, uint8_t)) in common_binop_byte_r_rm()
1181 *destreg = (*binop)(emu, *destreg, srcval); in common_binop_byte_r_rm()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoSFB.td49 // TODO: Can we use DefaultOperands on the regular binop to accomplish this more
H A DRISCVInstrInfoZb.td207 class binop_with_non_imm12<SDPatternOperator binop>
208 : PatFrag<(ops node:$x, node:$y), (binop node:$x, node:$y), [{
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/
H A DCombine.td573 // binop (select cond, K0, K1), K2 ->
574 // select cond, (binop K0, K2), (binop K1, K2)
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSemaKinds.td11222 …tement of form '++x;', '--x;', 'x++;', 'x--;', 'x binop= expr;', 'x = x binop expr' or 'x = expr b…
11225 …tement of form '++x;', '--x;', 'x++;', 'x--;', 'x binop= expr;', 'x = x binop expr' or 'x = expr b…
11232 …', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x binop= expr;', 'v = x = x binop expr' or 'v = x = ex…
11235 …atomic capture' must be a compound statement of form '{v = x; x binop= expr;}', '{x binop= expr; v…
11236 …" '{v = x; x = x binop expr;}', '{v = x; x = expr binop x;}', '{x = x binop expr; v = x;}', '{x = …
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DFLATInstructions.td1095 // atomic store follows atomic binop convention so the address comes
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstrInfo.td1548 /// binop that produces a value.