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

  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 356 SmallVector<MDNode *, 8> MDs;
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;
383 MDs.push_back(NMD->getOperand(i));
389 for (SmallVector<MDNode *, 8>::iterator I = MDs.begin(),
390 E = MDs.end(); I != E; ++I) {
  /external/llvm/include/llvm/IR/
Instruction.h 155 void getAllMetadata(SmallVectorImpl<std::pair<unsigned, MDNode*> > &MDs)const{
157 getAllMetadataImpl(MDs);
163 MDNode*> > &MDs) const {
165 getAllMetadataOtherThanDebugLocImpl(MDs);
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 202 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
203 I->getAllMetadata(MDs);
205 MI = MDs.begin(), ME = MDs.end(); MI != ME; ++MI) {
  /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);
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 650 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
664 Record.append(MDS->begin(), MDS->end());
728 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
733 MDs.clear();
734 I->getAllMetadataOtherThanDebugLoc(MDs);
737 if (MDs.empty()) continue;
741 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
742 Record.push_back(MDs[i].first);
743 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);
501 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
502 I->getAllMetadataOtherThanDebugLoc(MDs);
503 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
504 MDNode *N = MDs[i].second;
BitcodeWriter.cpp 618 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
632 Record.append(MDS->begin(), MDS->end());
696 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
701 MDs.clear();
702 I->getAllMetadataOtherThanDebugLoc(MDs);
705 if (MDs.empty()) continue;
709 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
710 Record.push_back(MDs[i].first);
711 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);
501 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
502 I->getAllMetadataOtherThanDebugLoc(MDs);
503 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
504 MDNode *N = MDs[i].second;
BitcodeWriter.cpp 572 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
586 Record.append(MDS->begin(), MDS->end());
650 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
655 MDs.clear();
656 I->getAllMetadataOtherThanDebugLoc(MDs);
659 if (MDs.empty()) continue;
663 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
664 Record.push_back(MDs[i].first);
665 Record.push_back(VE.getValueID(MDs[i].second))
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
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);
491 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
492 I->getAllMetadataOtherThanDebugLoc(MDs);
493 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
494 MDNode *N = MDs[i].second;
BitcodeWriter.cpp 610 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
624 Record.append(MDS->begin(), MDS->end());
688 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
693 MDs.clear();
694 I->getAllMetadataOtherThanDebugLoc(MDs);
697 if (MDs.empty()) continue;
701 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
702 Record.push_back(MDs[i].first);
703 Record.push_back(VE.getValueID(MDs[i].second))
    [all...]

Completed in 3143 milliseconds