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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibCalls.cpp890 ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(opr1); local
893 CF = CDV ? dyn_cast_or_null<ConstantFP>(CDV->getSplatValue()) : nullptr;
894 CINT = CDV ? dyn_cast_or_null<ConstantInt>(CDV->getSplatValue()) : nullptr;
1041 ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(opr0); local
1043 if (!CDV) {
1047 assert ((int)CDV->getNumElements() == getVecSize(FInfo) &&
1053 ? (double)CDV->getElementAsFloat(i)
1054 : CDV
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp928 const ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(C); local
932 if (CDV) {
933 elemNum = CDV->getNumElements();
934 ElemTy = CDV->getElementType();
960 if(CDV)
962 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i);
982 if(CDV)
984 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i);
1008 if(CDV)
1011 CDV
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp428 auto CDV = dyn_cast<ConstantDataVector>(Amt); local
429 if (!CDV)
442 auto SubElt = cast<ConstantInt>(CDV->getElementAsConstant(SubEltIdx));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp1940 if (const ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(V)) {
1941 // We know that CDV must be a vector of integers. Take the intersection of
1944 for (unsigned i = 0, e = CDV->getNumElements(); i != e; ++i) {
1947 APInt Elt = CDV->getElementAsAPInt(i);

Completed in 90 milliseconds