Searched refs:CDV (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp902 const ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(C); local
906 if (CDV) {
907 elemNum = CDV->getNumElements();
908 ElemTy = CDV->getElementType();
934 if(CDV)
936 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i);
956 if(CDV)
958 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i);
982 if(CDV)
985 CDV
[all...]
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp80 ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(C); local
81 if (!CDV)
91 Result |= CDV->getElementAsInteger(NumSrcElts-i-1);
93 Result |= CDV->getElementAsInteger(i);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp603 auto CDV = dyn_cast<ConstantDataVector>(II->getArgOperand(1)); local
605 if (!CDV && !CInt)
608 if (CDV)
609 Count = cast<ConstantInt>(CDV->getElementAsConstant(0));

Completed in 101 milliseconds