Lines Matching refs:OpKind
318 enum OpKind { enum
325 static InstArithmetic *create(Cfg *Func, OpKind Op, Variable *Dest, in create()
330 OpKind getOp() const { return Op; } in getOp()
334 static const char *getOpName(OpKind Op);
343 InstArithmetic(Cfg *Func, OpKind Op, Variable *Dest, Operand *Source1,
346 const OpKind Op;
472 enum OpKind { enum
479 static const char *getCastName(OpKind Kind);
481 static InstCast *create(Cfg *Func, OpKind CastKind, Variable *Dest, in create()
486 OpKind getCastKind() const { return CastKind; } in getCastKind()
492 InstCast(Cfg *Func, OpKind CastKind, Variable *Dest, Operand *Source);
494 const OpKind CastKind;