Home
last modified time | relevance | path

Searched refs:ICond (Results 1 – 12 of 12) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceInst.h568 enum ICond { enum
575 static InstIcmp *create(Cfg *Func, ICond Condition, Variable *Dest, in create()
580 ICond getCondition() const { return Condition; } in getCondition()
587 InstIcmp(Cfg *Func, ICond Condition, Variable *Dest, Operand *Source1,
590 ICond Condition;
DIceInst.cpp62 InstIcmp::ICond Reverse;
64 #define X(tag, reverse, str) {str, InstIcmp::ICond::reverse},
368 InstIcmp::InstIcmp(Cfg *Func, ICond Condition, Variable *Dest, Operand *Source1, in InstIcmp()
DIceTargetLoweringARM32.h252 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,
DPNaClTranslator.cpp1981 Ice::InstIcmp::ICond &Cond) const { in convertNaClBitcICmpOpToIce()
2015 Cond = static_cast<Ice::InstIcmp::ICond>(0); in convertNaClBitcICmpOpToIce()
2383 Ice::InstIcmp::ICond Cond; in ProcessRecord()
DIceTargetLoweringX8632Traits.h724 static Cond::BrCond getIcmp32Mapping(InstIcmp::ICond Cond) {
DIceTargetLoweringX8664Traits.h818 static Cond::BrCond getIcmp32Mapping(InstIcmp::ICond Cond) {
DIceConverter.cpp410 Ice::InstIcmp::ICond Cond; in convertICmpInstruction()
DIceTargetLoweringARM32.cpp153 CondARM32::Cond getIcmp32Mapping(InstIcmp::ICond Cond) { in getIcmp32Mapping()
4441 TargetARM32::lowerInt64IcmpCond(InstIcmp::ICond Condition, Operand *Src0, in lowerInt64IcmpCond()
4566 TargetARM32::lowerInt32IcmpCond(InstIcmp::ICond Condition, Operand *Src0, in lowerInt32IcmpCond()
4603 TargetARM32::lowerInt8AndInt16IcmpCond(InstIcmp::ICond Condition, Operand *Src0, in lowerInt8AndInt16IcmpCond()
4652 TargetARM32::CondWhenTrue TargetARM32::lowerIcmpCond(InstIcmp::ICond Condition, in lowerIcmpCond()
DIceTargetLoweringMIPS32.cpp332 InstIcmp::ICond Cond = llvm::cast<InstIcmp>(Instr)->getCondition(); in genTargetHelperCallFor()
4156 InstIcmp::ICond Condition = Instr->getCondition(); in lower64Icmp()
4310 InstIcmp::ICond Cond = Instr->getCondition(); in lowerIcmp()
DIceTargetLoweringX86BaseImpl.h3661 InstIcmp::ICond Condition = Icmp->getCondition();
3750 InstIcmp::ICond Condition = Icmp->getCondition();
/external/llvm-project/polly/lib/Analysis/
DScopBuilder.cpp485 auto *ICond = dyn_cast<ICmpInst>(Condition); in buildConditionSets() local
486 assert(ICond && in buildConditionSets()
495 bool NonNeg = ICond->isUnsigned(); in buildConditionSets()
496 const SCEV *LeftOperand = SE.getSCEVAtScope(ICond->getOperand(0), L), in buildConditionSets()
497 *RightOperand = SE.getSCEVAtScope(ICond->getOperand(1), L); in buildConditionSets()
502 switch (ICond->getPredicate()) { in buildConditionSets()
526 ConsequenceCondSet = buildConditionSet(ICond->getPredicate(), in buildConditionSets()
/external/swiftshader/src/Reactor/
DSubzeroReactor.cpp1726 static Value *createIntCompare(Ice::InstIcmp::ICond condition, Value *lhs, Value *rhs) in createIntCompare()