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

/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp919 const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(C); local
924 } else if (CV || CAZ) {
935 if (CAZ) {
957 if (CAZ) {
979 if (CAZ) {
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp3062 else if (auto CAZ = dyn_cast<ConstantAggregateZero>(&C)) {
3063 if (!isa<FixedVectorType>(CAZ->getType()))
3066 unsigned NumElts = CAZ->getElementCount().getFixedValue();
3068 return translateCopy(C, *CAZ->getElementValue(0u), *EntryBuilder);
3071 Constant &Elt = *CAZ->getElementValue(I);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp440 auto *CAZ = ConstantAggregateZero::get(I->getType()); local
441 Cache[I] = CAZ;
442 setKnownBase(CAZ, /* IsKnownBase */true, KnownBases);
443 return CAZ;
/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DConstants.cpp425 if (const auto *CAZ = dyn_cast<ConstantAggregateZero>(this))
426 return Elt < CAZ->getElementCount().getKnownMinValue()
427 ? CAZ->getElementValue(Elt)
2898 // If the elements are all zero or there are no elements, return a CAZ, which

Completed in 284 milliseconds