enum TIL_BinaryOpcode
Description
Opcode for binary arithmetic operations.
Declared at: clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h:92
Enumerators
Name | Value | Comment |
---|---|---|
BOP_Add | 0 | |
BOP_Sub | 1 | |
BOP_Mul | 2 | |
BOP_Div | 3 | |
BOP_Rem | 4 | |
BOP_Shl | 5 | |
BOP_Shr | 6 | |
BOP_BitAnd | 7 | |
BOP_BitXor | 8 | |
BOP_BitOr | 9 | |
BOP_Eq | 10 | |
BOP_Neq | 11 | |
BOP_Lt | 12 | |
BOP_Leq | 13 | |
BOP_Cmp | 14 | |
BOP_LogicAnd | 15 | |
BOP_LogicOr | 16 |