Home | History | Annotate | Download | only in BitWriter_2_9_func

Lines Matching refs:MDs

571     } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
585 Record.append(MDS->begin(), MDS->end());
649 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
654 MDs.clear();
655 I->getAllMetadataOtherThanDebugLoc(MDs);
658 if (MDs.empty()) continue;
662 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
663 Record.push_back(MDs[i].first);
664 Record.push_back(VE.getValueID(MDs[i].second));