Searched defs:VTBits (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp830 unsigned VTBits = Op->getValueType(0).getScalarType().getSizeInBits(); local
832 TLO.DAG.ComputeNumSignBits(InOp) >= VTBits-ShAmt+1;
H A DLegalizeIntegerTypes.cpp1428 unsigned VTBits = N->getValueType(0).getSizeInBits(); local
1433 if (Amt.ugt(VTBits)) {
1463 if (Amt.ugt(VTBits)) {
1484 if (Amt.ugt(VTBits)) {
H A DSelectionDAG.cpp2526 unsigned VTBits = VT.getScalarType().getSizeInBits(); local
2537 return VTBits-Tmp+1;
2540 return VTBits-Tmp;
2549 VTBits-Op.getOperand(0).getValueType().getScalarType().getSizeInBits();
2556 Tmp = VTBits-Tmp+1;
2566 if (Tmp > VTBits) Tmp = VTBits;
2573 if (C->getZExtValue() >= VTBits || // Bad shift.
2625 return VTBits;
2631 return VTBits;
[all...]
H A DDAGCombiner.cpp5752 unsigned VTBits = SVT.getSizeInBits(); local
5770 Elts.push_back(DAG.getConstant(C.sext(VTBits), DL, SVT));
5772 Elts.push_back(DAG.getConstant(C.zext(VTBits), DL, SVT));
6895 unsigned VTBits = VT.getScalarType().getSizeInBits(); local
6906 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
6926 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
6944 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
6948 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp4398 unsigned VTBits = VT.getSizeInBits(); local
4408 DAG.getConstant(VTBits, dl, MVT::i64), ShAmt);
4421 DAG.getConstant(VTBits, dl, MVT::i64));
4440 DAG.getConstant(VTBits - 1, dl, MVT::i64))
4456 unsigned VTBits = VT.getSizeInBits(); local
4464 DAG.getConstant(VTBits, dl, MVT::i64), ShAmt);
4477 DAG.getConstant(VTBits, dl, MVT::i64));
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp4258 unsigned VTBits = VT.getSizeInBits(); local
4269 DAG.getConstant(VTBits, dl, MVT::i32), ShAmt);
4272 DAG.getConstant(VTBits, dl, MVT::i32));
4294 unsigned VTBits = VT.getSizeInBits(); local
4303 DAG.getConstant(VTBits, dl, MVT::i32), ShAmt);
4306 DAG.getConstant(VTBits, dl, MVT::i32));

Completed in 331 milliseconds