Home
last modified time | relevance | path

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

/external/llvm/lib/Target/Hexagon/
DHexagonOptimizeSZextends.cpp111 BinaryOperator *Ashr = dyn_cast<BinaryOperator>(&I); in runOnFunction() local
112 if (!(Ashr && Ashr->getOpcode() == Instruction::AShr)) in runOnFunction()
114 Value *AshrOp1 = Ashr->getOperand(1); in runOnFunction()
121 Instruction *Shl = dyn_cast<Instruction>(Ashr->getOperand(0)); in runOnFunction()
136 for (auto UI = Ashr->user_begin(), UE = Ashr->user_end(); in runOnFunction()
140 J->replaceUsesOfWith(Ashr, I); in runOnFunction()
/external/llvm-project/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()
/external/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()
/external/swiftshader/third_party/subzero/crosstest/
Dtest_arith.def38 X(Ashr, >>, 0, 1) \
/external/swiftshader/third_party/subzero/src/
DIceInst.def50 X(Ashr, "ashr", 0) \
DIceTargetLoweringX86BaseImpl.h669 case InstArithmetic::Ashr:
1802 case InstArithmetic::Ashr: {
1841 case InstArithmetic::Ashr: {
1879 case InstArithmetic::Ashr: {
1944 case InstArithmetic::Ashr: {
2108 case InstArithmetic::Ashr:
2234 case InstArithmetic::Ashr: {
2363 case InstArithmetic::Ashr:
7437 case InstArithmetic::Ashr:
DIceConverter.cpp295 return convertArithInstruction(Instr, Ice::InstArithmetic::Ashr); in convertInstruction()
DIceTargetLoweringARM32.cpp2793 case InstArithmetic::Ashr: { in lowerInt64Arithmetic()
2794 const bool ASR = Op == InstArithmetic::Ashr; in lowerInt64Arithmetic()
3101 case InstArithmetic::Ashr: in lowerArithmetic()
3475 case InstArithmetic::Ashr: { in lowerArithmetic()
5649 case InstArithmetic::Ashr: { in matchShiftedOffsetReg()
DWasmTranslator.cpp534 Control()->appendInst(InstArithmetic::create(Func, InstArithmetic::Ashr, in Binop()
DIceTargetLoweringMIPS32.cpp2664 case InstArithmetic::Ashr: { in lowerInt64Arithmetic()
2781 case InstArithmetic::Ashr: { in lowerArithmetic()
2895 case InstArithmetic::Ashr: { in lowerArithmetic()
DPNaClTranslator.cpp1812 Op = Ice::InstArithmetic::Ashr; in convertBinopOpcode()
/external/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()
/external/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp545 const auto *Ashr = cast<Instruction>(FalseVal); in foldSelectICmpLshrAshr() local
547 bool IsExact = Ashr->isExact() && cast<Instruction>(TrueVal)->isExact(); in foldSelectICmpLshrAshr()
/external/llvm-project/llvm/unittests/IR/
DConstantRangeTest.cpp1415 TEST_F(ConstantRangeTest, Ashr) { in TEST_F() argument
/external/swiftshader/src/Reactor/
DSubzeroReactor.cpp1325 return createArithmetic(Ice::InstArithmetic::Ashr, lhs, rhs); in createAShr()