• Home
  • Raw
  • Download

Lines Matching refs:InstMIPS32Br

797 class InstMIPS32Br : public InstMIPS32 {
798 InstMIPS32Br() = delete;
799 InstMIPS32Br(const InstMIPS32Br &) = delete;
800 InstMIPS32Br &operator=(const InstMIPS32Br &) = delete;
804 static InstMIPS32Br *create(Cfg *Func, CfgNode *Target) { in create()
807 return new (Func->allocate<InstMIPS32Br>()) in create()
808 InstMIPS32Br(Func, NoCondTarget, Target, NoLabel, CondMIPS32::AL); in create()
811 static InstMIPS32Br *create(Cfg *Func, CfgNode *Target, in create()
814 return new (Func->allocate<InstMIPS32Br>()) in create()
815 InstMIPS32Br(Func, NoCondTarget, Target, Label, CondMIPS32::AL); in create()
819 static InstMIPS32Br *create(Cfg *Func, CfgNode *TargetTrue, in create()
823 return new (Func->allocate<InstMIPS32Br>()) in create()
824 InstMIPS32Br(Func, TargetTrue, TargetFalse, Src0, Src1, NoLabel, Cond); in create()
827 static InstMIPS32Br *create(Cfg *Func, CfgNode *TargetTrue, in create()
831 return new (Func->allocate<InstMIPS32Br>()) in create()
832 InstMIPS32Br(Func, TargetTrue, TargetFalse, Src0, NoLabel, Cond); in create()
835 static InstMIPS32Br *create(Cfg *Func, CfgNode *TargetTrue, in create()
839 return new (Func->allocate<InstMIPS32Br>()) in create()
840 InstMIPS32Br(Func, TargetTrue, TargetFalse, Src0, Src1, Label, Cond); in create()
858 InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue, const CfgNode *TargetFalse,
861 InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue, const CfgNode *TargetFalse,
865 InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue, const CfgNode *TargetFalse,