Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DTypeFinder.h37 std::vector<StructType*> StructTypes; variable
49 iterator begin() { return StructTypes.begin(); } in begin()
50 iterator end() { return StructTypes.end(); } in end()
52 const_iterator begin() const { return StructTypes.begin(); } in begin()
53 const_iterator end() const { return StructTypes.end(); } in end()
55 bool empty() const { return StructTypes.empty(); } in empty()
56 size_t size() const { return StructTypes.size(); } in size()
57 iterator erase(iterator I, iterator E) { return StructTypes.erase(I, E); } in erase()
59 StructType *&operator[](unsigned Idx) { return StructTypes[Idx]; }
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DMetaRenamer.cpp113 TypeFinder StructTypes; in MetaRename() local
114 StructTypes.run(M, true); in MetaRename()
115 for (StructType *STy : StructTypes) { in MetaRename()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DStripSymbols.cpp181 TypeFinder StructTypes; in StripTypeNames() local
182 StructTypes.run(M, false); in StripTypeNames()
184 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) { in StripTypeNames()
185 StructType *STy = StructTypes[i]; in StripTypeNames()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DTypeFinder.cpp87 StructTypes.clear(); in clear()
105 StructTypes.push_back(STy); in incorporateType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Linker/
H A DIRMover.cpp1610 TypeFinder StructTypes; in IRMover() local
1611 StructTypes.run(M, /* OnlyNamed */ false); in IRMover()
1612 for (StructType *Ty : StructTypes) { in IRMover()
1621 for (auto *MD : StructTypes.getVisitedMetadata()) { in IRMover()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBTFDebug.h266 std::vector<BTFTypeStruct *> StructTypes; variable
H A DBTFDebug.cpp498 StructTypes.push_back(TypeEntry.get()); in visitStructType()
1343 for (const auto &StructType : StructTypes) { in endModule()