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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp930 const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(C); local
935 } else if (CV || CAZ) {
946 if (CAZ) {
968 if (CAZ) {
990 if (CAZ) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp2217 else if (auto CAZ = dyn_cast<ConstantAggregateZero>(&C)) {
2218 if (!CAZ->getType()->isVectorTy())
2221 if (CAZ->getNumElements() == 1)
2222 return translateCopy(C, *CAZ->getElementValue(0u), *EntryBuilder.get());
2224 for (unsigned i = 0; i < CAZ->getNumElements(); ++i) {
2225 Constant &Elt = *CAZ->getElementValue(i);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp406 if (const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(this))
407 return Elt < CAZ->getNumElements() ? CAZ->getElementValue(Elt) : nullptr;
2727 // If the elements are all zero or there are no elements, return a CAZ, which
H A DConstantFold.cpp839 // CAZ of type ScalableVectorType and n < CAZ->getMinNumElements() =>
840 // extractelt CAZ, n -> 0
843 if (auto *CAZ = dyn_cast<ConstantAggregateZero>(Val))
844 return CAZ->getElementValue(CIdx->getZExtValue());

Completed in 79 milliseconds