Searched defs:IdxVal (Results 1 - 10 of 10) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersChecker.cpp131 SVal IdxVal = State->getSVal(IdxExpr, C.getLocationContext()); local
132 if (IdxVal.isUnknownOrUndef())
134 DefinedSVal Idx = IdxVal.castAs<DefinedSVal>();
/external/llvm/lib/IR/
H A DConstantFold.cpp815 uint64_t IdxVal = CIdx->getZExtValue(); local
817 if (i == IdxVal) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp1962 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
1983 if (IdxVal < LoElts)
1987 DAG.getConstant(IdxVal - LoElts, DL,
H A DLegalizeVectorTypes.cpp839 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
841 DAG.getConstant(IdxVal + LoVT.getVectorNumElements(), dl,
861 // TODO: The IdxVal == 0 constraint is artificial, we could do this whenever
865 unsigned IdxVal = ConstIdx->getZExtValue(); local
866 if ((IdxVal == 0) && (IdxVal + SubElems <= VecElems / 2)) {
986 unsigned IdxVal = CIdx->getZExtValue(); local
988 if (IdxVal < LoNumElts)
994 DAG.getConstant(IdxVal - LoNumElts, dl,
1602 uint64_t IdxVal local
1621 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
2803 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
[all...]
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp404 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand()); local
405 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DGlobalOpt.cpp466 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand()); local
467 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp1627 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPIt.getOperand()); local
1628 if (!IdxVal)
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp614 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
616 DAG.getIntPtrConstant(IdxVal + LoVT.getVectorNumElements()));
651 unsigned IdxVal = CIdx->getZExtValue(); local
653 if (IdxVal < LoNumElts)
658 DAG.getIntPtrConstant(IdxVal - LoNumElts));
1056 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
1058 if (IdxVal < LoElts) {
1059 assert(IdxVal + SubVT.getVectorNumElements() <= LoElts &&
1064 DAG.getConstant(IdxVal - LoElts, Idx.getValueType()));
1074 uint64_t IdxVal local
1845 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86ISelLowering.cpp96 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
104 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
132 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
140 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/128)
6924 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
6927 bool Upper = IdxVal >= NumElems/2;
6932 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
7065 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue(); local
7066 bool Upper = IdxVal >= NumElems/2;
7072 N1, Upper ? DAG.getConstant(IdxVal
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp4416 static SDValue extractSubVector(SDValue Vec, unsigned IdxVal, SelectionDAG &DAG,
4436 IdxVal &= ~(ElemsPerChunk - 1);
4441 dl, ResultVT, makeArrayRef(Vec->op_begin() + IdxVal, ElemsPerChunk));
4443 SDValue VecIdx = DAG.getIntPtrConstant(IdxVal, dl);
4453 static SDValue extract128BitVector(SDValue Vec, unsigned IdxVal, argument
4457 return extractSubVector(Vec, IdxVal, DAG, dl, 128);
4461 static SDValue extract256BitVector(SDValue Vec, unsigned IdxVal, argument
4464 return extractSubVector(Vec, IdxVal, DAG, dl, 256);
4467 static SDValue insertSubVector(SDValue Result, SDValue Vec, unsigned IdxVal, argument
4485 IdxVal
4497 insert128BitVector(SDValue Result, SDValue Vec, unsigned IdxVal, SelectionDAG &DAG, const SDLoc &dl) argument
4547 insert256BitVector(SDValue Result, SDValue Vec, unsigned IdxVal, SelectionDAG &DAG, const SDLoc &dl) argument
4565 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
6951 SDValue IdxVal = DAG.getIntPtrConstant(SubVecNumElts * OpIdx, dl); local
26425 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
[all...]

Completed in 1028 milliseconds