Home | History | Annotate | Download | only in AsmPrinter

Lines Matching refs:CA

1719   if (const ConstantArray *CA = dyn_cast<ConstantArray>(V)) {
1722 assert(CA->getNumOperands() != 0 && "Should be a CAZ");
1723 int Byte = isRepeatedByteSequence(CA->getOperand(0), TM);
1726 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
1727 int ThisByte = isRepeatedByteSequence(CA->getOperand(i), TM);
1805 static void emitGlobalConstantArray(const ConstantArray *CA, AsmPrinter &AP) {
1808 int Value = isRepeatedByteSequence(CA, AP.TM);
1811 uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CA->getType());
1815 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1816 emitGlobalConstantImpl(CA->getOperand(i), AP);