enum BinaryOpcodes

Description

BinaryOpcodes - These are values used in the bitcode files to encode which binop a CST_CODE_CE_BINOP or a XXX refers to. The values of these enums have no fixed relation to the LLVM IR enum values. Changing these will break compatibility with old files.

Declared at: llvm/include/llvm/Bitcode/LLVMBitCodes.h:401

Enumerators

NameValueComment
BINOP_ADD0
BINOP_SUB1
BINOP_MUL2
BINOP_UDIV3
BINOP_SDIV4
BINOP_UREM5
BINOP_SREM6
BINOP_SHL7
BINOP_LSHR8
BINOP_ASHR9
BINOP_AND10
BINOP_OR11
BINOP_XOR12