Searched refs:MDs (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DStripSymbols.cpp356 SmallVector<MDNode *, 8> MDs; local
359 MDs.push_back(NMD->getOperand(i));
365 for (SmallVector<MDNode *, 8>::iterator I = MDs.begin(),
366 E = MDs.end(); I != E; ++I) {
380 SmallVector<MDNode *, 8> MDs; local
383 MDs.push_back(NMD->getOperand(i));
389 for (SmallVector<MDNode *, 8>::iterator I = MDs.begin(),
390 E = MDs.end(); I != E; ++I) {
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DInstruction.h154 void getAllMetadata(SmallVectorImpl<std::pair<unsigned, MDNode*> > &MDs)const{
156 getAllMetadataImpl(MDs);
162 MDNode*> > &MDs) const {
164 getAllMetadataOtherThanDebugLocImpl(MDs);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DValueMapper.cpp187 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs; local
188 I->getAllMetadata(MDs);
190 MI = MDs.begin(), ME = MDs.end(); MI != ME; ++MI) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Writer/
H A DValueEnumerator.cpp68 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs; local
94 MDs.clear();
95 I->getAllMetadataOtherThanDebugLoc(MDs);
96 for (unsigned i = 0, e = MDs.size(); i != e; ++i)
97 EnumerateMetadata(MDs[i].second);
477 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs; local
478 I->getAllMetadataOtherThanDebugLoc(MDs);
479 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
480 MDNode *N = MDs[i].second;
H A DBitcodeWriter.cpp677 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs; local
682 MDs.clear();
683 I->getAllMetadataOtherThanDebugLoc(MDs);
686 if (MDs.empty()) continue;
690 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
691 Record.push_back(MDs[i].first);
692 Record.push_back(VE.getValueID(MDs[i].second));

Completed in 88 milliseconds