Home
last modified time | relevance | path

Searched refs:SecondShift (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
DInstCombineShifts.cpp62 Instruction *SecondShift, InstCombiner &IC, in canEvaluateShiftedShift() argument
64 assert(SecondShift->isLogicalShift() && "Unexpected instruction type"); in canEvaluateShiftedShift()
67 auto *SecondShiftConst = dyn_cast<ConstantInt>(SecondShift->getOperand(1)); in canEvaluateShiftedShift()
72 bool IsSecondShiftLeft = SecondShift->getOpcode() == Instruction::Shl; in canEvaluateShiftedShift()
84 unsigned TypeWidth = SecondShift->getType()->getScalarSizeInBits(); in canEvaluateShiftedShift()
96 if (IC.MaskedValueIsZero(SecondShift->getOperand(0), Mask, 0, CxtI)) in canEvaluateShiftedShift()
/external/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp3392 unsigned SecondShift = Mips::NOP; in expandRotation() local
3423 SecondShift = Mips::SLLV; in expandRotation()
3427 SecondShift = Mips::SRLV; in expandRotation()
3437 TOut.emitRRR(SecondShift, DReg, SReg, TReg, Inst.getLoc(), STI); in expandRotation()
3456 unsigned SecondShift = Mips::NOP; in expandRotationImm() local
3489 SecondShift = Mips::SRL; in expandRotationImm()
3493 SecondShift = Mips::SLL; in expandRotationImm()
3502 TOut.emitRRI(SecondShift, DReg, SReg, 32 - ImmValue, Inst.getLoc(), STI); in expandRotationImm()
3521 unsigned SecondShift = Mips::NOP; in expandDRotation() local
3552 SecondShift = Mips::DSLLV; in expandDRotation()
[all …]