/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Instruction.h | 87 bool isShift() { return isShift(getOpcode()); } in isShift() function 101 static inline bool isShift(unsigned Opcode) { in isShift() function
|
/external/llvm/include/llvm/IR/ |
D | Instruction.h | 107 bool isShift() { return isShift(getOpcode()); } 122 static inline bool isShift(unsigned Opcode) {
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Instruction.h | 116 bool isShift() { return isShift(getOpcode()); } in isShift() function 131 static inline bool isShift(unsigned Opcode) { in isShift() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Instruction.h | 132 bool isShift() { return isShift(getOpcode()); } 151 static inline bool isShift(unsigned Opcode) {
|
D | PatternMatch.h | 866 bool isOpType(unsigned Opcode) { return Instruction::isShift(Opcode); } in isOpType()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineShifts.cpp | 366 if (TrOp && I.isLogicalShift() && TrOp->isShift() && in FoldShiftByConstant() 527 if (ShiftOp && !ShiftOp->isShift()) in FoldShiftByConstant()
|
D | InstCombineAndOrXor.cpp | 200 if (!Op->isShift()) in OptAndOp() 1260 if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() && in visitAnd() 1945 if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() && in visitOr() 2244 if (Op0I && Op1I && Op0I->isShift() && in visitXor()
|
D | InstCombineCompares.cpp | 1120 if (Shift && !Shift->isShift()) in visitICmpInstWithInstAndIntCst()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineShifts.cpp | 378 if (TrOp && I.isLogicalShift() && TrOp->isShift() && in FoldShiftByConstant() 544 if (ShiftOp && !ShiftOp->isShift()) in FoldShiftByConstant()
|
D | InstCombineAndOrXor.cpp | 156 if (!Op->isShift()) in OptAndOp()
|
D | InstCombineCompares.cpp | 1683 if (Shift && !Shift->isShift()) in visitICmpInstWithInstAndIntCst()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZInstrInfo.cpp | 458 static bool isShift(MachineInstr *MI, unsigned Opcode, int64_t Imm) { in isShift() function 483 if (!RLL || !isShift(RLL, SystemZ::RLL, 31)) in removeIPMBasedCompare() 487 if (!SRL || !isShift(SRL, SystemZ::SRL, SystemZ::IPM_CC)) in removeIPMBasedCompare()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/ |
D | SystemZInstrInfo.cpp | 569 static bool isShift(MachineInstr *MI, unsigned Opcode, int64_t Imm) { in isShift() function 594 if (!RLL || !isShift(RLL, SystemZ::RLL, 31)) in removeIPMBasedCompare() 598 if (!SRL || !isShift(SRL, SystemZ::SRL, SystemZ::IPM_CC)) in removeIPMBasedCompare()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineVectorOps.cpp | 1219 (Instruction::isIntDivRem(BOpcode) || Instruction::isShift(BOpcode)); in foldSelectShuffleWith1Binop() 1300 (Instruction::isIntDivRem(BOpc) || Instruction::isShift(BOpc)); in foldSelectShuffle()
|
D | InstCombineShifts.cpp | 386 if (TrOp && I.isLogicalShift() && TrOp->isShift() && in FoldShiftByConstant()
|
D | InstructionCombining.cpp | 469 return Instruction::isBitwiseLogicOp(LOp) && Instruction::isShift(ROp); in rightDistributesOverLeft() 1425 if (Inst.isIntDivRem() || (Inst.isShift() && ConstOp1)) in foldShuffledBinop()
|
D | InstCombineCompares.cpp | 1518 if (!Shift || !Shift->isShift()) in foldICmpAndShift()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | SeparateConstOffsetFromGEP.cpp | 1264 if (FirstOffsetDef && FirstOffsetDef->isShift() && in isLegalToSwapOperand()
|
/external/llvm/lib/Transforms/Scalar/ |
D | SeparateConstOffsetFromGEP.cpp | 1216 if (FirstOffsetDef && FirstOffsetDef->isShift() && in isLegalToSwapOperand()
|
/external/clang/include/clang/Basic/ |
D | arm_neon.td | 265 bit isShift = 0; 605 let isShift = 1 in { 1035 let isShift = 1 in {
|
/external/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 4745 if (!UI->isShift()) continue; in optimizeShuffleVectorInst()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonInstrInfo.td | 2767 bit isSat = 0, bit isShift = 0> 2771 #!if(isShift, ":<<1", "")
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 5785 if (!UI->isShift()) continue; in optimizeShuffleVectorInst()
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86ISelLowering.cpp | 6631 bool isShift = getSubtarget()->hasXMMInt() && in LowerVECTOR_SHUFFLE() local 6633 if (isShift && ShVal.hasOneUse()) { in LowerVECTOR_SHUFFLE() 6675 if (isShift) { in LowerVECTOR_SHUFFLE()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 6169 bool isShift = BinOpLHSVal->getOpcode() == ISD::SHL || in visitShiftByConstant() local 6175 if ((!isShift || !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1))) && in visitShiftByConstant()
|