Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonOptimizeSZextends.cpp106 BinaryOperator *Ashr = dyn_cast<BinaryOperator>(&I); in runOnFunction() local
107 if (!(Ashr && Ashr->getOpcode() == Instruction::AShr)) in runOnFunction()
109 Value *AshrOp1 = Ashr->getOperand(1); in runOnFunction()
116 Instruction *Shl = dyn_cast<Instruction>(Ashr->getOperand(0)); in runOnFunction()
131 for (auto UI = Ashr->user_begin(), UE = Ashr->user_end(); in runOnFunction()
135 J->replaceUsesOfWith(Ashr, I); in runOnFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dtest_arith.def38 X(Ashr, >>, 0, 1) \
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInst.def50 X(Ashr, "ashr", 0) \
DIceTargetLoweringX8632.cpp523 case InstArithmetic::Ashr: in canRMW()
1557 case InstArithmetic::Ashr: { in lowerShift64()
1596 case InstArithmetic::Ashr: { in lowerShift64()
1634 case InstArithmetic::Ashr: { in lowerShift64()
1699 case InstArithmetic::Ashr: { in lowerShift64()
1862 case InstArithmetic::Ashr: in lowerArithmetic()
1988 case InstArithmetic::Ashr: { in lowerArithmetic()
2116 case InstArithmetic::Ashr: in lowerArithmetic()
6887 case InstArithmetic::Ashr: in genTargetHelperCallFor()
DIceTargetLoweringX8664.cpp532 case InstArithmetic::Ashr: in canRMW()
1480 case InstArithmetic::Ashr: { in lowerShift64()
1519 case InstArithmetic::Ashr: { in lowerShift64()
1557 case InstArithmetic::Ashr: { in lowerShift64()
1622 case InstArithmetic::Ashr: { in lowerShift64()
1788 case InstArithmetic::Ashr: { in lowerArithmetic()
1916 case InstArithmetic::Ashr: in lowerArithmetic()
6175 case InstArithmetic::Ashr: in genTargetHelperCallFor()
DIceConverter.cpp295 return convertArithInstruction(Instr, Ice::InstArithmetic::Ashr); in convertInstruction()
DIceTargetLoweringARM32.cpp2609 case InstArithmetic::Ashr: { in lowerInt64Arithmetic()
2610 const bool ASR = Op == InstArithmetic::Ashr; in lowerInt64Arithmetic()
2917 case InstArithmetic::Ashr: in lowerArithmetic()
3291 case InstArithmetic::Ashr: { in lowerArithmetic()
5453 case InstArithmetic::Ashr: { in matchShiftedOffsetReg()
DWasmTranslator.cpp534 Control()->appendInst(InstArithmetic::create(Func, InstArithmetic::Ashr, in Binop()
DIceTargetLoweringMIPS32.cpp2631 case InstArithmetic::Ashr: { in lowerInt64Arithmetic()
2748 case InstArithmetic::Ashr: { in lowerArithmetic()
2862 case InstArithmetic::Ashr: { in lowerArithmetic()
DPNaClTranslator.cpp1812 Op = Ice::InstArithmetic::Ashr; in convertBinopOpcode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp565 const auto *Ashr = cast<Instruction>(FalseVal); in foldSelectICmpLshrAshr() local
567 bool IsExact = Ashr->isExact() && cast<Instruction>(TrueVal)->isExact(); in foldSelectICmpLshrAshr()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DSubzeroReactor.cpp1324 return createArithmetic(Ice::InstArithmetic::Ashr, lhs, rhs); in createAShr()