Searched refs:ShVal (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp308 Value *ShVal = ConstantInt::get(V->getType(), i); local
309 ShVal = Builder.CreateLShr(V, ShVal, "ctlz.sh");
310 V = Builder.CreateOr(V, ShVal, "ctlz.step");
/external/llvm/lib/Target/Mips/
H A DMipsLongBranch.cpp483 int ShVal = STI.inMicroMipsMode() ? 2 : 4; local
484 int64_t Offset = computeOffset(I->Br) / ShVal;
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp1253 Value *ShVal = Builder.CreateShl(Val, NumBytesSet*8); local
1254 Val = Builder.CreateOr(Val, ShVal);
1260 Value *ShVal = Builder.CreateShl(Val, 1*8); local
1261 Val = Builder.CreateOr(OneElt, ShVal);
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp1187 SDValue ShVal = N.getNode()->getOperand(0); local
1192 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
1193 AM.IndexReg = ShVal.getNode()->getOperand(0);
1195 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
1201 AM.IndexReg = ShVal;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1024 uint64_t ShVal = ShAmt->getZExtValue(); local
1025 Shift = TLO.DAG.getConstant(ShVal, dl,
1085 unsigned ShVal = Op.getValueType().getSizeInBits()-1; local
1086 SDValue ShAmt = TLO.DAG.getConstant(ShVal, dl, Op.getValueType());
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp285 Value *ShVal = Op->getOperand(0); local
286 ShVal = Builder->CreateLShr(ShVal, OpRHS, Op->getName());
287 return BinaryOperator::CreateAnd(ShVal, AndRHS, TheAnd.getName());
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp270 unsigned ShVal = AArch64_AM::getShifterImm(AArch64_AM::LSL, ShiftAmt); local
273 Shift = CurDAG->getTargetConstant(ShVal, dl, MVT::i32);
352 unsigned ShVal = AArch64_AM::getShifterImm(ShType, Val); local
355 Shift = CurDAG->getTargetConstant(ShVal, SDLoc(N), MVT::i32);

Completed in 220 milliseconds