Searched defs:CDS (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1734 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V))
1735 return isRepeatedByteSequence(CDS);
1740 static void emitGlobalConstantDataSequential(const ConstantDataSequential *CDS, argument
1744 int Value = isRepeatedByteSequence(CDS, AP.TM);
1746 uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CDS->getType());
1753 if (CDS->isString())
1754 return AP.OutStreamer.EmitBytes(CDS->getAsString());
1757 unsigned ElementByteSize = CDS->getElementByteSize();
1758 if (isa<IntegerType>(CDS->getElementType())) {
1759 for (unsigned i = 0, e = CDS
[all...]

Completed in 557 milliseconds