Home
last modified time | relevance | path

Searched refs:InstMIPS32Br (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceInstMIPS32.h797 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()
[all …]
DIceInstMIPS32.cpp174 InstMIPS32Br::InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue, in InstMIPS32Br() function in Ice::MIPS32::InstMIPS32Br
180 InstMIPS32Br::InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue, in InstMIPS32Br() function in Ice::MIPS32::InstMIPS32Br
188 InstMIPS32Br::InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue, in InstMIPS32Br() function in Ice::MIPS32::InstMIPS32Br
202 bool InstMIPS32Br::optimizeBranch(const CfgNode *NextNode) { in optimizeBranch()
238 bool InstMIPS32Br::repointEdges(CfgNode *OldNode, CfgNode *NewNode) { in repointEdges()
436 void InstMIPS32Br::emitIAS(const Cfg *Func) const { in emitIAS()
473 void InstMIPS32Br::emit(const Cfg *Func) const { in emit()
525 void InstMIPS32Br::dump(const Cfg *Func) const { in dump()
DIceTargetLoweringMIPS32.h182 void _br(CfgNode *Target) { Context.insert<InstMIPS32Br>(Target); } in _br()
185 Context.insert<InstMIPS32Br>(Target, Label); in _br()
190 Context.insert<InstMIPS32Br>(TargetTrue, TargetFalse, Src0, Src1, in _br()
196 Context.insert<InstMIPS32Br>(TargetTrue, TargetFalse, Src0, Condition); in _br()
202 Context.insert<InstMIPS32Br>(TargetTrue, TargetFalse, Src0, Src1, Label, in _br()
DIceTargetLoweringMIPS32.cpp1013 if (auto *Br = llvm::dyn_cast<InstMIPS32Br>(Instr)) { in doBranchOpt()