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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DTypeFinder.h37 std::vector<StructType*> StructTypes; member in class:llvm::TypeFinder
49 iterator begin() { return StructTypes.begin(); }
50 iterator end() { return StructTypes.end(); }
52 const_iterator begin() const { return StructTypes.begin(); }
53 const_iterator end() const { return StructTypes.end(); }
55 bool empty() const { return StructTypes.empty(); }
56 size_t size() const { return StructTypes.size(); }
57 iterator erase(iterator I, iterator E) { return StructTypes.erase(I, E); }
59 StructType *&operator[](unsigned Idx) { return StructTypes[Idx]; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMetaRenamer.cpp114 TypeFinder StructTypes; variable
115 StructTypes.run(M, true);
116 for (StructType *STy : StructTypes) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DTypeFinder.cpp87 StructTypes.clear();
105 StructTypes.push_back(STy);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DStripSymbols.cpp176 TypeFinder StructTypes; local
177 StructTypes.run(M, false);
179 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) {
180 StructType *STy = StructTypes[i];
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp467 StructTypes.push_back(TypeEntry.get());
684 StructTypes.push_back(TypeEntry.get());
1248 for (const auto &StructType : StructTypes) {
H A DBTFDebug.h251 std::vector<BTFTypeStruct *> StructTypes; member in class:llvm::BTFDebug
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Linker/
H A DIRMover.cpp1564 TypeFinder StructTypes; local
1565 StructTypes.run(M, /* OnlyNamed */ false);
1566 for (StructType *Ty : StructTypes) {
1575 for (auto *MD : StructTypes.getVisitedMetadata()) {

Completed in 139 milliseconds