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

  /external/swiftshader/third_party/subzero/src/
IceInstrumentation.h 67 virtual void instrumentIcmp(LoweringContext &, class InstIcmp *) {}
WasmTranslator.cpp 546 InstIcmp::create(Func, InstIcmp::Ne, TmpDest, Left, Right));
556 InstIcmp::create(Func, InstIcmp::Eq, TmpDest, Left, Right));
566 InstIcmp::create(Func, InstIcmp::Slt, TmpDest, Left, Right));
576 InstIcmp::create(Func, InstIcmp::Sle, TmpDest, Left, Right));
586 InstIcmp::create(Func, InstIcmp::Uge, TmpDest, Left, Right))
    [all...]
IceConverter.cpp 410 Ice::InstIcmp::ICond Cond;
415 Cond = Ice::InstIcmp::Eq;
418 Cond = Ice::InstIcmp::Ne;
421 Cond = Ice::InstIcmp::Ugt;
424 Cond = Ice::InstIcmp::Uge;
427 Cond = Ice::InstIcmp::Ult;
430 Cond = Ice::InstIcmp::Ule;
433 Cond = Ice::InstIcmp::Sgt;
436 Cond = Ice::InstIcmp::Sge;
439 Cond = Ice::InstIcmp::Slt
    [all...]
IceInst.h 548 class InstIcmp : public InstHighLevel {
549 InstIcmp() = delete;
550 InstIcmp(const InstIcmp &) = delete;
551 InstIcmp &operator=(const InstIcmp &) = delete;
561 static InstIcmp *create(Cfg *Func, ICond Condition, Variable *Dest,
563 return new (Func->allocate<InstIcmp>())
564 InstIcmp(Func, Condition, Dest, Source1, Source2);
573 InstIcmp(Cfg *Func, ICond Condition, Variable *Dest, Operand *Source1
    [all...]
IceTargetLoweringMIPS32.cpp 332 InstIcmp::ICond Cond = llvm::cast<InstIcmp>(Instr)->getCondition();
349 Context.insert<InstIcmp>(Cond, Dst, Op0, Op1);
    [all...]
IceInstrumentation.cpp 85 instrumentIcmp(Context, llvm::cast<InstIcmp>(Instr));
IceTargetLoweringX86BaseImpl.h 168 if (llvm::isa<InstIcmp>(Instr)) {
861 } else if (auto *Icmp = llvm::dyn_cast<InstIcmp>(Next)) {
865 NewInst = InstIcmp::create(Func, Icmp->getCondition(),
    [all...]
IceInst.cpp 68 InstIcmp::ICond Reverse;
71 { str, InstIcmp::ICond::reverse } \
376 InstIcmp::InstIcmp(Cfg *Func, ICond Condition, Variable *Dest, Operand *Source1,
813 void InstIcmp::dump(const Cfg *Func) const {
1089 void InstIcmp::reverseConditionAndOperands() {
    [all...]
PNaClTranslator.cpp     [all...]
IceTargetLoweringARM32.h 252 CondWhenTrue lowerInt8AndInt16IcmpCond(InstIcmp::ICond Condition,
254 CondWhenTrue lowerInt32IcmpCond(InstIcmp::ICond Condition, Operand *Src0,
256 CondWhenTrue lowerInt64IcmpCond(InstIcmp::ICond Condition, Operand *Src0,
258 CondWhenTrue lowerIcmpCond(InstIcmp::ICond Condition, Operand *Src0,
260 CondWhenTrue lowerIcmpCond(const InstIcmp *Instr);
261 void lowerIcmp(const InstIcmp *Instr) override;
    [all...]
IceTargetLoweringARM32.cpp 154 CondARM32::Cond getIcmp32Mapping(InstIcmp::ICond Cond) {
178 static constexpr int _icmp_hl_##tag = InstIcmp::tag;
    [all...]
IceTargetLoweringX8632.cpp 449 #define X(tag, reverse, str) static const int _table1_##tag = InstIcmp::tag;
IceTargetLoweringX86Base.h 275 void lowerIcmp(const InstIcmp *Instr) override;
    [all...]
IceTargetLowering.h 409 virtual void lowerIcmp(const InstIcmp *Instr) = 0;
IceTargetLoweringMIPS32.h 776 void lowerIcmp(const InstIcmp *Instr) override;
777 void lower64Icmp(const InstIcmp *Instr);
    [all...]
IceTargetLowering.cpp 442 lowerIcmp(llvm::cast<InstIcmp>(Instr));
    [all...]
IceTargetLoweringX8632Traits.h 781 static Cond::BrCond getIcmp32Mapping(InstIcmp::ICond Cond) {
    [all...]
IceTargetLoweringX8664.cpp 784 #define X(tag, reverse, str) static const int _table1_##tag = InstIcmp::tag;
IceCfgNode.cpp 245 if (llvm::isa<InstIcmp>(InsertionPoint) ||
    [all...]
IceTargetLoweringX8664Traits.h     [all...]
  /external/swiftshader/src/Reactor/
SubzeroReactor.cpp 1067 static Value *createIntCompare(Ice::InstIcmp::ICond condition, Value *lhs, Value *rhs)
1072 auto cmp = Ice::InstIcmp::create(::function, condition, result, lhs, rhs);
1080 return createIntCompare(Ice::InstIcmp::Eq, lhs, rhs);
1085 return createIntCompare(Ice::InstIcmp::Ne, lhs, rhs);
1090 return createIntCompare(Ice::InstIcmp::Ugt, lhs, rhs);
1095 return createIntCompare(Ice::InstIcmp::Uge, lhs, rhs);
1100 return createIntCompare(Ice::InstIcmp::Ult, lhs, rhs);
1105 return createIntCompare(Ice::InstIcmp::Ule, lhs, rhs);
1110 return createIntCompare(Ice::InstIcmp::Sgt, lhs, rhs);
1115 return createIntCompare(Ice::InstIcmp::Sge, lhs, rhs)
    [all...]

Completed in 606 milliseconds