HomeSort by relevance Sort by last modified time
    Searched refs:IdxVal (Results 1 - 13 of 13) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersChecker.cpp 131 SVal IdxVal = State->getSVal(IdxExpr, C.getLocationContext());
132 if (IdxVal.isUnknownOrUndef())
134 DefinedSVal Idx = IdxVal.castAs<DefinedSVal>();
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 614 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
616 DAG.getIntPtrConstant(IdxVal + LoVT.getVectorNumElements()));
651 unsigned IdxVal = CIdx->getZExtValue();
653 if (IdxVal < LoNumElts)
658 DAG.getIntPtrConstant(IdxVal - LoNumElts));
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 839 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
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();
866 if ((IdxVal == 0) && (IdxVal + SubElems <= VecElems / 2)) {
    [all...]
LegalizeFloatTypes.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineCompares.cpp 229 uint64_t IdxVal = Idx->getZExtValue();
230 if ((unsigned)IdxVal != IdxVal) return 0; // Too large array index.
233 EltTy = STy->getElementType(IdxVal);
235 if (IdxVal >= ATy->getNumElements()) return 0;
241 LaterIndices.push_back(IdxVal);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 404 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
405 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
GlobalOpt.cpp 466 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
467 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 264 uint64_t IdxVal = Idx->getZExtValue();
265 if ((unsigned)IdxVal != IdxVal) return nullptr; // Too large array index.
268 EltTy = STy->getElementType(IdxVal);
270 if (IdxVal >= ATy->getNumElements()) return nullptr;
276 LaterIndices.push_back(IdxVal);
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelLowering.cpp 96 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
104 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
132 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
140 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/128)
    [all...]

Completed in 533 milliseconds