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

  /external/swiftshader/third_party/subzero/src/
IceInstrumentation.h 66 virtual void instrumentFcmp(LoweringContext &, class InstFcmp *) {}
IceConverter.cpp 454 Ice::InstFcmp::FCond Cond;
461 Cond = Ice::InstFcmp::False;
464 Cond = Ice::InstFcmp::Oeq;
467 Cond = Ice::InstFcmp::Ogt;
470 Cond = Ice::InstFcmp::Oge;
473 Cond = Ice::InstFcmp::Olt;
476 Cond = Ice::InstFcmp::Ole;
479 Cond = Ice::InstFcmp::One;
482 Cond = Ice::InstFcmp::Ord;
485 Cond = Ice::InstFcmp::Ueq
    [all...]
IceInst.h 523 class InstFcmp : public InstHighLevel {
524 InstFcmp() = delete;
525 InstFcmp(const InstFcmp &) = delete;
526 InstFcmp &operator=(const InstFcmp &) = delete;
536 static InstFcmp *create(Cfg *Func, FCond Condition, Variable *Dest,
538 return new (Func->allocate<InstFcmp>())
539 InstFcmp(Func, Condition, Dest, Source1, Source2);
547 InstFcmp(Cfg *Func, FCond Condition, Variable *Dest, Operand *Source1
    [all...]
IceInstrumentation.cpp 82 instrumentFcmp(Context, llvm::cast<InstFcmp>(Instr));
PNaClTranslator.cpp     [all...]
WasmTranslator.cpp 646 InstFcmp::create(Func, InstFcmp::Ueq, TmpDest, Left, Right));
656 InstFcmp::create(Func, InstFcmp::Une, TmpDest, Left, Right));
666 InstFcmp::create(Func, InstFcmp::Ule, TmpDest, Left, Right));
676 InstFcmp::create(Func, InstFcmp::Ult, TmpDest, Left, Right));
686 InstFcmp::create(Func, InstFcmp::Uge, TmpDest, Left, Right))
    [all...]
IceTargetLoweringMIPS32.cpp 305 InstFcmp::FCond Cond = llvm::cast<InstFcmp>(Instr)->getCondition();
321 Context.insert<InstFcmp>(Cond, Dst, Op0, Op1);
    [all...]
IceInst.cpp 369 InstFcmp::InstFcmp(Cfg *Func, FCond Condition, Variable *Dest, Operand *Source1,
852 void InstFcmp::dump(const Cfg *Func) const {
    [all...]
IceTargetLoweringX8632.cpp 417 #define X(tag, str) static const int _table1_##tag = InstFcmp::tag;
IceTargetLoweringX86BaseImpl.h 173 if (llvm::isa<InstFcmp>(Instr))
234 return Traits::TableFcmp[llvm::cast<InstFcmp>(Instr)->getCondition()].C2 !=
868 } else if (auto *Fcmp = llvm::dyn_cast<InstFcmp>(Next)) {
872 NewInst = InstFcmp::create(Func, Fcmp->getCondition(),
    [all...]
IceTargetLowering.h 407 virtual void lowerFcmp(const InstFcmp *Instr) = 0;
IceTargetLoweringX86Base.h 274 void lowerFcmp(const InstFcmp *Instr) override;
    [all...]
IceTargetLoweringARM32.cpp     [all...]
IceTargetLoweringARM32.h 250 CondWhenTrue lowerFcmpCond(const InstFcmp *Instr);
251 void lowerFcmp(const InstFcmp *Instr) override;
    [all...]
IceTargetLowering.cpp 439 lowerFcmp(llvm::cast<InstFcmp>(Instr));
    [all...]
IceTargetLoweringX8664.cpp 759 #define X(tag, str) static const int _table1_##tag = InstFcmp::tag;
IceCfgNode.cpp 246 llvm::isa<InstFcmp>(InsertionPoint)) {
    [all...]
IceTargetLoweringMIPS32.h 775 void lowerFcmp(const InstFcmp *Instr) override;
    [all...]
  /external/swiftshader/src/Reactor/
SubzeroReactor.cpp 1147 static Value *createFloatCompare(Ice::InstFcmp::FCond condition, Value *lhs, Value *rhs)
1153 auto cmp = Ice::InstFcmp::create(::function, condition, result, lhs, rhs);
1161 return createFloatCompare(Ice::InstFcmp::Oeq, lhs, rhs);
1166 return createFloatCompare(Ice::InstFcmp::Ogt, lhs, rhs);
1171 return createFloatCompare(Ice::InstFcmp::Oge, lhs, rhs);
1176 return createFloatCompare(Ice::InstFcmp::Olt, lhs, rhs);
1181 return createFloatCompare(Ice::InstFcmp::Ole, lhs, rhs);
1186 return createFloatCompare(Ice::InstFcmp::One, lhs, rhs);
1191 return createFloatCompare(Ice::InstFcmp::Ord, lhs, rhs);
1196 return createFloatCompare(Ice::InstFcmp::Uno, lhs, rhs)
    [all...]

Completed in 1494 milliseconds