Home | History | Annotate | Download | only in X86

Lines Matching refs:CDS

1225       if (auto *CDS = dyn_cast<ConstantDataSequential>(C)) {
1227 for (int i = 0, NumElements = CDS->getNumElements(); i < NumElements; ++i) {
1230 if (CDS->getElementType()->isIntegerTy())
1231 CS << CDS->getElementAsInteger(i);
1232 else if (CDS->getElementType()->isFloatTy())
1233 CS << CDS->getElementAsFloat(i);
1234 else if (CDS->getElementType()->isDoubleTy())
1235 CS << CDS->getElementAsDouble(i);