Home
last modified time | relevance | path

Searched refs:OPF_TARGET (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/tools/smatch/src/
H A Dopcode.def17 OPCODE(ADD, BADOP, BADOP, FADD, 2, OPF_TARGET)
18 OPCODE(SUB, BADOP, BADOP, FSUB, 2, OPF_TARGET)
19 OPCODE(MUL, BADOP, BADOP, FMUL, 2, OPF_TARGET)
20 OPCODE(DIVU, BADOP, BADOP, FDIV, 2, OPF_TARGET)
21 OPCODE(DIVS, BADOP, BADOP, FDIV, 2, OPF_TARGET)
22 OPCODE(MODU, BADOP, BADOP, BADOP, 2, OPF_TARGET)
23 OPCODE(MODS, BADOP, BADOP, BADOP, 2, OPF_TARGET)
24 OPCODE(SHL, BADOP, BADOP, BADOP, 2, OPF_TARGET)
25 OPCODE(LSR, BADOP, BADOP, BADOP, 2, OPF_TARGET)
26 OPCODE(ASR, BADOP, BADOP, BADOP, 2, OPF_TARGET)
[all …]
H A Dopcode.h22 #define OPF_TARGET (1 << 0) macro
H A Dsimplify.c407 return opcode_table[insn->opcode].flags & OPF_TARGET; in has_target()