Home | History | Annotate | Download | only in src

Lines Matching refs:OpKind

311   enum OpKind {
318 static InstArithmetic *create(Cfg *Func, OpKind Op, Variable *Dest,
323 OpKind getOp() const { return Op; }
327 static const char *getOpName(OpKind Op);
336 InstArithmetic(Cfg *Func, OpKind Op, Variable *Dest, Operand *Source1,
339 const OpKind Op;
465 enum OpKind {
472 static const char *getCastName(OpKind Kind);
474 static InstCast *create(Cfg *Func, OpKind CastKind, Variable *Dest,
479 OpKind getCastKind() const { return CastKind; }
485 InstCast(Cfg *Func, OpKind CastKind, Variable *Dest, Operand *Source);
487 const OpKind CastKind;