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

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
TypeFinder.cpp 50 SmallVector<std::pair<unsigned, MDNode *>, 4> MDForInst;
73 I.getAllMetadataOtherThanDebugLoc(MDForInst);
74 for (const auto &MD : MDForInst)
76 MDForInst.clear();
  /external/llvm/lib/IR/
TypeFinder.cpp 43 SmallVector<std::pair<unsigned, MDNode *>, 4> MDForInst;
68 I.getAllMetadataOtherThanDebugLoc(MDForInst);
69 for (unsigned i = 0, e = MDForInst.size(); i != e; ++i)
70 incorporateMDNode(MDForInst[i].second);
72 MDForInst.clear();
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Module.cpp 451 SmallVector<std::pair<unsigned, MDNode*>, 4> MDForInst;
469 I.getAllMetadataOtherThanDebugLoc(MDForInst);
470 for (unsigned i = 0, e = MDForInst.size(); i != e; ++i)
471 incorporateMDNode(MDForInst[i].second);
472 MDForInst.clear();
AsmWriter.cpp 487 SmallVector<std::pair<unsigned, MDNode*>, 4> MDForInst;
512 I->getAllMetadata(MDForInst);
513 for (unsigned i = 0, e = MDForInst.size(); i != e; ++i)
514 CreateMetadataSlot(MDForInst[i].second);
515 MDForInst.clear();
    [all...]

Completed in 354 milliseconds