Searched refs:MDs (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/Transforms/IPO/ |
D | StripSymbols.cpp | 356 SmallVector<MDNode *, 8> MDs; in runOnModule() local 359 MDs.push_back(NMD->getOperand(i)); in runOnModule() 365 for (SmallVector<MDNode *, 8>::iterator I = MDs.begin(), in runOnModule() 366 E = MDs.end(); I != E; ++I) { in runOnModule() 380 SmallVector<MDNode *, 8> MDs; in runOnModule() local 383 MDs.push_back(NMD->getOperand(i)); in runOnModule() 389 for (SmallVector<MDNode *, 8>::iterator I = MDs.begin(), in runOnModule() 390 E = MDs.end(); I != E; ++I) { in runOnModule()
|
/external/llvm/lib/Bitcode/Writer/ |
D | ValueEnumerator.cpp | 68 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs; in ValueEnumerator() local 94 MDs.clear(); in ValueEnumerator() 95 I->getAllMetadataOtherThanDebugLoc(MDs); in ValueEnumerator() 96 for (unsigned i = 0, e = MDs.size(); i != e; ++i) in ValueEnumerator() 97 EnumerateMetadata(MDs[i].second); in ValueEnumerator() 477 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs; in incorporateFunction() local 478 I->getAllMetadataOtherThanDebugLoc(MDs); in incorporateFunction() 479 for (unsigned i = 0, e = MDs.size(); i != e; ++i) { in incorporateFunction() 480 MDNode *N = MDs[i].second; in incorporateFunction()
|
D | BitcodeWriter.cpp | 677 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs; in WriteMetadataAttachment() local 682 MDs.clear(); in WriteMetadataAttachment() 683 I->getAllMetadataOtherThanDebugLoc(MDs); in WriteMetadataAttachment() 686 if (MDs.empty()) continue; in WriteMetadataAttachment() 690 for (unsigned i = 0, e = MDs.size(); i != e; ++i) { in WriteMetadataAttachment() 691 Record.push_back(MDs[i].first); in WriteMetadataAttachment() 692 Record.push_back(VE.getValueID(MDs[i].second)); in WriteMetadataAttachment()
|
/external/llvm/include/llvm/ |
D | Instruction.h | 154 void getAllMetadata(SmallVectorImpl<std::pair<unsigned, MDNode*> > &MDs)const{ in getAllMetadata() argument 156 getAllMetadataImpl(MDs); in getAllMetadata() 162 MDNode*> > &MDs) const { in getAllMetadataOtherThanDebugLoc() 164 getAllMetadataOtherThanDebugLocImpl(MDs); in getAllMetadataOtherThanDebugLoc()
|
/external/llvm/lib/Transforms/Utils/ |
D | ValueMapper.cpp | 187 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs; in RemapInstruction() local 188 I->getAllMetadata(MDs); in RemapInstruction() 190 MI = MDs.begin(), ME = MDs.end(); MI != ME; ++MI) { in RemapInstruction()
|