Home
last modified time | relevance | path

Searched refs:StructTypes (Results 1 – 7 of 7) sorted by relevance

/llvm-project/llvm/include/llvm/IR/
H A DTypeFinder.h39 std::vector<StructType*> StructTypes; variable
51 iterator begin() { return StructTypes.begin(); } in begin()
52 iterator end() { return StructTypes.end(); } in end()
54 const_iterator begin() const { return StructTypes.begin(); } in begin()
55 const_iterator end() const { return StructTypes.end(); } in end()
57 bool empty() const { return StructTypes.empty(); } in empty()
58 size_t size() const { return StructTypes.size(); } in size()
59 iterator erase(iterator I, iterator E) { return StructTypes.erase(I, E); } in erase()
61 StructType *&operator[](unsigned Idx) { return StructTypes[Idx]; }
/llvm-project/llvm/lib/Transforms/Utils/
H A DMetaRenamer.cpp198 TypeFinder StructTypes; in MetaRename() local
199 StructTypes.run(M, true); in MetaRename()
200 for (StructType *STy : StructTypes) { in MetaRename()
/llvm-project/llvm/lib/Transforms/IPO/
H A DStripSymbols.cpp90 TypeFinder StructTypes; in StripTypeNames()
91 StructTypes.run(M, false); in StripTypeNames() local
93 for (StructType *STy : StructTypes) { in StripTypeNames()
/llvm-project/llvm/lib/IR/
H A DTypeFinder.cpp116 StructTypes.clear(); in incorporateType()
134 StructTypes.push_back(STy); in incorporateValue()
/llvm-project/llvm/lib/Linker/
H A DIRMover.cpp1747 TypeFinder StructTypes; in findNonOpaque()
1748 StructTypes.run(M, /* OnlyNamed */ false); in findNonOpaque()
1749 for (StructType *Ty : StructTypes) { in findNonOpaque()
1758 for (const auto *MD : StructTypes.getVisitedMetadata()) {
1760 TypeFinder StructTypes; IRMover() local
/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.h304 std::vector<BTFTypeStruct *> StructTypes; variable
H A DBTFDebug.cpp690 StructTypes.push_back(TypeEntry.get()); in visitStructType()
1640 for (const auto &StructType : StructTypes) { in endModule()