Home | History | Annotate | Download | only in IR

Lines Matching full:opcode

91   static const char* getOpcodeName(unsigned OpCode);
93 static inline bool isTerminator(unsigned OpCode) {
94 return OpCode >= TermOpsBegin && OpCode < TermOpsEnd;
97 static inline bool isBinaryOp(unsigned Opcode) {
98 return Opcode >= BinaryOpsBegin && Opcode < BinaryOpsEnd;
101 /// @brief Determine if the Opcode is one of the shift instructions.
102 static inline bool isShift(unsigned Opcode) {
103 return Opcode >= Shl && Opcode <= AShr;
117 /// @brief Determine if the OpCode is one of the CastInst instructions.
118 static inline bool isCast(unsigned OpCode) {
119 return OpCode >= CastOpsBegin && OpCode < CastOpsEnd;