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

  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 902 const ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(C);
906 if (CDV) {
907 elemNum = CDV->getNumElements();
908 ElemTy = CDV->getElementType();
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 80 ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(C);
81 if (!CDV)
91 Result |= CDV->getElementAsInteger(NumSrcElts-i-1);
93 Result |= CDV->getElementAsInteger(i);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 603 auto CDV = dyn_cast<ConstantDataVector>(II->getArgOperand(1));
605 if (!CDV && !CInt)
608 if (CDV)
609 Count = cast<ConstantInt>(CDV->getElementAsConstant(0));
    [all...]

Completed in 888 milliseconds