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

/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersChecker.cpp126 SVal IdxVal = State->getSVal(IdxExpr, C.getLocationContext()); local
127 if (IdxVal.isUnknownOrUndef())
129 DefinedSVal Idx = IdxVal.castAs<DefinedSVal>();
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp783 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
785 DAG.getConstant(IdxVal + LoVT.getVectorNumElements(),
859 unsigned IdxVal = CIdx->getZExtValue(); local
861 if (IdxVal < LoNumElts)
866 DAG.getConstant(IdxVal - LoNumElts,
1319 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
1321 if (IdxVal < LoElts) {
1322 assert(IdxVal + SubVT.getVectorNumElements() <= LoElts &&
1327 DAG.getConstant(IdxVal - LoElts, Idx.getValueType()));
1337 uint64_t IdxVal local
2198 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp253 uint64_t IdxVal = Idx->getZExtValue();
254 if ((unsigned)IdxVal != IdxVal) return nullptr; // Too large array index.
257 EltTy = STy->getElementType(IdxVal);
259 if (IdxVal >= ATy->getNumElements()) return nullptr;
265 LaterIndices.push_back(IdxVal);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp76 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal, argument
96 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
118 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal, argument
122 return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
126 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal, argument
129 return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
133 unsigned IdxVal, SelectionDAG &DAG,
149 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
163 unsigned IdxVal, SelectionDAG &DAG,
166 return InsertSubVector(Result, Vec, IdxVal, DA
132 InsertSubVector(SDValue Result, SDValue Vec, unsigned IdxVal, SelectionDAG &DAG, SDLoc dl, unsigned vectorWidth) argument
162 Insert128BitVector(SDValue Result, SDValue Vec, unsigned IdxVal, SelectionDAG &DAG, SDLoc dl) argument
169 Insert256BitVector(SDValue Result, SDValue Vec, unsigned IdxVal, SelectionDAG &DAG, SDLoc dl) argument
[all...]
/external/llvm/lib/IR/
H A DConstantFold.cpp780 const APInt &IdxVal = CIdx->getValue(); local
785 if (i == IdxVal) {
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp1722 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPIt.getOperand()); local
1723 if (!IdxVal)
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp442 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand()); local
443 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)

Completed in 183 milliseconds