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

/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersChecker.cpp134 SVal IdxVal = State->getSVal(IdxExpr, C.getLocationContext()); local
135 if (IdxVal.isUnknownOrUndef())
137 DefinedSVal Idx = cast<DefinedSVal>(IdxVal);
/external/llvm/lib/VMCore/
H A DConstantFold.cpp760 const APInt &IdxVal = CIdx->getValue(); local
764 if (i == IdxVal) {
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp1630 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPIt.getOperand()); local
1631 if (!IdxVal)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp651 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
653 DAG.getIntPtrConstant(IdxVal + LoVT.getVectorNumElements()));
688 unsigned IdxVal = CIdx->getZExtValue(); local
690 if (IdxVal < LoNumElts)
695 DAG.getIntPtrConstant(IdxVal - LoNumElts));
1066 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
1068 if (IdxVal < LoElts) {
1069 assert(IdxVal + SubVT.getVectorNumElements() <= LoElts &&
1074 DAG.getConstant(IdxVal - LoElts, Idx.getValueType()));
1084 uint64_t IdxVal local
1859 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
[all...]
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp464 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand()); local
465 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp82 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
90 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
118 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
126 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/128)
6777 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue(); local
6780 bool Upper = IdxVal >= NumElems/2;
6785 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
6919 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue(); local
6920 bool Upper = IdxVal >= NumElems/2;
6926 N1, Upper ? DAG.getConstant(IdxVal
[all...]

Completed in 90 milliseconds