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

  /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/include/llvm/
Instruction.h 154 void getAllMetadata(SmallVectorImpl<std::pair<unsigned, MDNode*> > &MDs)const{
156 getAllMetadataImpl(MDs);
162 MDNode*> > &MDs) const {
164 getAllMetadataOtherThanDebugLocImpl(MDs);
  /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/Bitcode/Writer/
ValueEnumerator.cpp 66 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
92 MDs.clear();
93 I->getAllMetadataOtherThanDebugLoc(MDs);
94 for (unsigned i = 0, e = MDs.size(); i != e; ++i)
95 EnumerateMetadata(MDs[i].second);
443 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
444 I->getAllMetadataOtherThanDebugLoc(MDs);
445 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
446 MDNode *N = MDs[i].second;
BitcodeWriter.cpp 587 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
601 Record.append(MDS->begin(), MDS->end());
665 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
670 MDs.clear();
671 I->getAllMetadataOtherThanDebugLoc(MDs);
674 if (MDs.empty()) continue;
678 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
679 Record.push_back(MDs[i].first);
680 Record.push_back(VE.getValueID(MDs[i].second))
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 66 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
92 MDs.clear();
93 I->getAllMetadataOtherThanDebugLoc(MDs);
94 for (unsigned i = 0, e = MDs.size(); i != e; ++i)
95 EnumerateMetadata(MDs[i].second);
443 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
444 I->getAllMetadataOtherThanDebugLoc(MDs);
445 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
446 MDNode *N = MDs[i].second;
BitcodeWriter.cpp 627 } else if (const MDString *MDS = dyn_cast<MDString>(Vals[i].first)) {
641 Record.append(MDS->begin(), MDS->end());
705 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs;
710 MDs.clear();
711 I->getAllMetadataOtherThanDebugLoc(MDs);
714 if (MDs.empty()) continue;
718 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
719 Record.push_back(MDs[i].first);
720 Record.push_back(VE.getValueID(MDs[i].second))
    [all...]

Completed in 362 milliseconds