HomeSort by relevance Sort by last modified time
    Searched defs:MDs (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 187 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
188 I->getAllMetadata(MDs);
190 MI = MDs.begin(), ME = MDs.end(); MI != ME; ++MI) {
  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 355 SmallVector<MDNode *, 8> MDs;
358 MDs.push_back(NMD->getOperand(i));
364 for (SmallVector<MDNode *, 8>::iterator I = MDs.begin(),
365 E = MDs.end(); I != E; ++I) {
379 SmallVector<MDNode *, 8> MDs;
382 MDs.push_back(NMD->getOperand(i));
388 for (SmallVector<MDNode *, 8>::iterator I = MDs.begin(),
389 E = MDs.end(); I != E; ++I) {
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 68 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
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;
478 I->getAllMetadataOtherThanDebugLoc(MDs);
479 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
480 MDNode *N = MDs[i].second;
BitcodeWriter.cpp 596 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
610 Record.append(MDS->begin(), MDS->end());
674 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
679 MDs.clear();
680 I->getAllMetadataOtherThanDebugLoc(MDs);
683 if (MDs.empty()) continue;
687 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
688 Record.push_back(MDs[i].first);
689 Record.push_back(VE.getValueID(MDs[i].second))
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 70 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
96 MDs.clear();
97 I->getAllMetadataOtherThanDebugLoc(MDs);
98 for (unsigned i = 0, e = MDs.size(); i != e; ++i)
99 EnumerateMetadata(MDs[i].second);
489 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
490 I->getAllMetadataOtherThanDebugLoc(MDs);
491 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
492 MDNode *N = MDs[i].second;
BitcodeWriter.cpp 636 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
650 Record.append(MDS->begin(), MDS->end());
714 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
719 MDs.clear();
720 I->getAllMetadataOtherThanDebugLoc(MDs);
723 if (MDs.empty()) continue;
727 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
728 Record.push_back(MDs[i].first);
729 Record.push_back(VE.getValueID(MDs[i].second))
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 70 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
96 MDs.clear();
97 I->getAllMetadataOtherThanDebugLoc(MDs);
98 for (unsigned i = 0, e = MDs.size(); i != e; ++i)
99 EnumerateMetadata(MDs[i].second);
489 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
490 I->getAllMetadataOtherThanDebugLoc(MDs);
491 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
492 MDNode *N = MDs[i].second;
BitcodeWriter.cpp 590 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
604 Record.append(MDS->begin(), MDS->end());
668 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
673 MDs.clear();
674 I->getAllMetadataOtherThanDebugLoc(MDs);
677 if (MDs.empty()) continue;
681 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
682 Record.push_back(MDs[i].first);
683 Record.push_back(VE.getValueID(MDs[i].second))
    [all...]

Completed in 315 milliseconds