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

/freebsd-9.3-release/contrib/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");
/freebsd-9.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsLongBranch.cpp440 int ShVal = TM.getSubtarget<MipsSubtarget>().inMicroMipsMode() ? 2 : 4; local
443 if (!ForceLongBranch && isInt<16>(computeOffset(I->Br) / ShVal))
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DGVN.cpp1233 Value *ShVal = Builder.CreateShl(Val, NumBytesSet*8); local
1234 Val = Builder.CreateOr(Val, ShVal);
1240 Value *ShVal = Builder.CreateShl(Val, 1*8); local
1241 Val = Builder.CreateOr(OneElt, ShVal);
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp1033 SDValue ShVal = N.getNode()->getOperand(0); local
1038 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
1039 AM.IndexReg = ShVal.getNode()->getOperand(0);
1041 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
1047 AM.IndexReg = ShVal;
H A DX86ISelLowering.cpp5136 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5164 ShVal = SVOp->getOperand(OpSrc);
5171 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5199 ShVal = SVOp->getOperand(OpSrc);
5206 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5212 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5213 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
7356 SDValue ShVal; local
7357 bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7358 if (isShift && ShVal
5135 isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG, bool &isLeft, SDValue &ShVal, unsigned &ShAmt) argument
5170 isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG, bool &isLeft, SDValue &ShVal, unsigned &ShAmt) argument
5205 isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG, bool &isLeft, SDValue &ShVal, unsigned &ShAmt) argument
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp955 uint64_t ShVal = ShAmt->getZExtValue(); local
957 TLO.DAG.getConstant(ShVal, getShiftAmountTy(Op.getValueType()));
1014 unsigned ShVal = Op.getValueType().getSizeInBits()-1; local
1015 SDValue ShAmt = TLO.DAG.getConstant(ShVal, Op.getValueType());
/freebsd-9.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp256 Value *ShVal = Op->getOperand(0); local
257 ShVal = Builder->CreateLShr(ShVal, OpRHS, Op->getName());
258 return BinaryOperator::CreateAnd(ShVal, AndRHS, TheAnd.getName());

Completed in 155 milliseconds