HomeSort by relevance Sort by last modified time
    Searched refs:TargetFalse (Results 1 - 13 of 13) sorted by null

  /external/swiftshader/third_party/subzero/src/
IceInstMIPS32.cpp 177 const CfgNode *TargetFalse,
180 TargetFalse(TargetFalse), Label(Label), Predicate(Cond) {}
183 const CfgNode *TargetFalse, Operand *Src0,
186 TargetFalse(TargetFalse), Label(Label), Predicate(Cond) {
191 const CfgNode *TargetFalse, Operand *Src0,
195 TargetFalse(TargetFalse), Label(Label), Predicate(Cond) {
227 // If TargetFalse is the next node, and TargetTrue is not nullpt
    [all...]
IceInstMIPS32.h 820 CfgNode *TargetFalse, Operand *Src0,
824 InstMIPS32Br(Func, TargetTrue, TargetFalse, Src0, Src1, NoLabel, Cond);
828 CfgNode *TargetFalse, Operand *Src0,
832 InstMIPS32Br(Func, TargetTrue, TargetFalse, Src0, NoLabel, Cond);
836 CfgNode *TargetFalse, Operand *Src0,
840 InstMIPS32Br(Func, TargetTrue, TargetFalse, Src0, Src1, Label, Cond);
844 const CfgNode *getTargetFalse() const { return TargetFalse; }
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,
    [all...]
IceInst.cpp 311 // If TargetTrue==TargetFalse, we turn it into an unconditional branch. This
316 : InstHighLevel(Func, Inst::Br, 1, nullptr), TargetFalse(TargetFalse_),
321 TargetFalse = TargetTrue;
324 } else if (TargetTrue == TargetFalse) {
332 : InstHighLevel(Func, Inst::Br, 0, nullptr), TargetFalse(Target),
338 OutEdges.push_back(TargetFalse);
346 if (TargetFalse == OldNode) {
347 TargetFalse = NewNode;
    [all...]
IceTargetLoweringMIPS32.h 188 void _br(CfgNode *TargetTrue, CfgNode *TargetFalse, Operand *Src0,
190 Context.insert<InstMIPS32Br>(TargetTrue, TargetFalse, Src0, Src1,
194 void _br(CfgNode *TargetTrue, CfgNode *TargetFalse, Operand *Src0,
196 Context.insert<InstMIPS32Br>(TargetTrue, TargetFalse, Src0, Condition);
199 void _br(CfgNode *TargetTrue, CfgNode *TargetFalse, Operand *Src0,
202 Context.insert<InstMIPS32Br>(TargetTrue, TargetFalse, Src0, Src1, Label,
    [all...]
IceInst.h 380 /// Create a conditional branch. If TargetTrue==TargetFalse, it is optimized
383 CfgNode *TargetFalse) {
385 InstBr(Func, Source, TargetTrue, TargetFalse);
397 CfgNode *getTargetFalse() const { return TargetFalse; }
411 InstBr(Cfg *Func, Operand *Source, CfgNode *TargetTrue, CfgNode *TargetFalse);
415 CfgNode *TargetFalse; /// Doubles as unconditional branch target
    [all...]
IceTargetLoweringMIPS32.cpp     [all...]
IceInstARM32.h     [all...]
IceInstARM32.cpp 490 const CfgNode *TargetFalse,
493 TargetTrue(TargetTrue), TargetFalse(TargetFalse), Label(Label) {}
516 TargetFalse = nullptr;
519 // If TargetTrue is the next node, and TargetFalse is not nullptr (which was
526 TargetFalse = nullptr;
534 if (TargetFalse == OldNode) {
535 TargetFalse = NewNode;
    [all...]
IceInstX86BaseImpl.h 109 const CfgNode *TargetFalse,
113 TargetTrue(TargetTrue), TargetFalse(TargetFalse), Label(Label),
138 TargetFalse = nullptr;
141 // If TargetTrue is the next node, and TargetFalse is not nullptr (which was
148 TargetFalse = nullptr;
158 if (TargetFalse == OldNode) {
159 TargetFalse = NewNode;
    [all...]
IceTargetLoweringARM32.h 362 void _br(CfgNode *TargetTrue, CfgNode *TargetFalse,
364 Context.insert<InstARM32Br>(TargetTrue, TargetFalse, Condition);
680 const LowerInt1BranchTarget &TargetFalse,
    [all...]
IceInstX86Base.h 380 CfgNode *TargetFalse, BrCond Condition,
385 InstX86Br(Func, TargetTrue, TargetFalse, NoLabel, Condition, Kind);
415 const CfgNode *getTargetFalse() const { return TargetFalse; }
441 InstX86Br(Cfg *Func, const CfgNode *TargetTrue, const CfgNode *TargetFalse,
446 const CfgNode *TargetFalse;
    [all...]
IceTargetLoweringARM32.cpp     [all...]
IceTargetLoweringX86Base.h 563 void _br(BrCond Condition, CfgNode *TargetTrue, CfgNode *TargetFalse) {
564 Context.insert<InstX86Br>(TargetTrue, TargetFalse, Condition,
    [all...]

Completed in 693 milliseconds