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

  /external/llvm/include/llvm/IR/
Instruction.h 158 void getAllMetadata(SmallVectorImpl<std::pair<unsigned, MDNode*> > &MDs)const{
160 getAllMetadataImpl(MDs);
166 MDNode*> > &MDs) const {
168 getAllMetadataOtherThanDebugLocImpl(MDs);
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 73 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);
490 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
491 I->getAllMetadataOtherThanDebugLoc(MDs);
492 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
493 MDNode *N = MDs[i].second;
BitcodeWriter.cpp 779 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
793 Record.append(MDS->begin(), MDS->end());
857 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
862 MDs.clear();
863 I->getAllMetadataOtherThanDebugLoc(MDs);
866 if (MDs.empty()) continue;
870 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
871 Record.push_back(MDs[i].first);
872 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 617 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
631 Record.append(MDS->begin(), MDS->end());
695 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
700 MDs.clear();
701 I->getAllMetadataOtherThanDebugLoc(MDs);
704 if (MDs.empty()) continue;
708 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
709 Record.push_back(MDs[i].first);
710 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 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))
    [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);
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 605 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
619 Record.append(MDS->begin(), MDS->end());
683 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
688 MDs.clear();
689 I->getAllMetadataOtherThanDebugLoc(MDs);
692 if (MDs.empty()) continue;
696 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
697 Record.push_back(MDs[i].first);
698 Record.push_back(VE.getValueID(MDs[i].second))
    [all...]
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 211 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
212 I->getAllMetadata(MDs);
214 MI = MDs.begin(), ME = MDs.end(); MI != ME; ++MI) {
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 321 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
322 Op->getAllMetadataOtherThanDebugLoc(MDs);
326 MI = MDs.begin(), ME = MDs.end(); MI != ME; ++MI)

Completed in 1037 milliseconds