Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DTypeFinder.h38 std::vector<StructType*> StructTypes; variable
50 iterator begin() { return StructTypes.begin(); } in begin()
51 iterator end() { return StructTypes.end(); } in end()
53 const_iterator begin() const { return StructTypes.begin(); } in begin()
54 const_iterator end() const { return StructTypes.end(); } in end()
56 bool empty() const { return StructTypes.empty(); } in empty()
57 size_t size() const { return StructTypes.size(); } in size()
58 iterator erase(iterator I, iterator E) { return StructTypes.erase(I, E); } in erase()
60 StructType *&operator[](unsigned Idx) { return StructTypes[Idx]; }
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DTypeFinder.h38 std::vector<StructType*> StructTypes; variable
50 iterator begin() { return StructTypes.begin(); } in begin()
51 iterator end() { return StructTypes.end(); } in end()
53 const_iterator begin() const { return StructTypes.begin(); } in begin()
54 const_iterator end() const { return StructTypes.end(); } in end()
56 bool empty() const { return StructTypes.empty(); } in empty()
57 size_t size() const { return StructTypes.size(); } in size()
58 iterator erase(iterator I, iterator E) { return StructTypes.erase(I, E); } in erase()
60 StructType *&operator[](unsigned Idx) { return StructTypes[Idx]; }
/external/llvm/lib/Transforms/Utils/
DMetaRenamer.cpp102 TypeFinder StructTypes; in runOnModule() local
103 StructTypes.run(M, true); in runOnModule()
104 for (StructType *STy : StructTypes) { in runOnModule()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DMetaRenamer.cpp114 TypeFinder StructTypes; in runOnModule() local
115 StructTypes.run(M, true); in runOnModule()
116 for (StructType *STy : StructTypes) { in runOnModule()
/external/llvm/lib/Transforms/IPO/
DStripSymbols.cpp176 TypeFinder StructTypes; in StripTypeNames() local
177 StructTypes.run(M, false); in StripTypeNames()
179 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) { in StripTypeNames()
180 StructType *STy = StructTypes[i]; in StripTypeNames()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DStripSymbols.cpp176 TypeFinder StructTypes; in StripTypeNames() local
177 StructTypes.run(M, false); in StripTypeNames()
179 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) { in StripTypeNames()
180 StructType *STy = StructTypes[i]; in StripTypeNames()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DModule.cpp429 std::vector<StructType*> &StructTypes; member in __anon08bf295f0111::TypeFinder
432 : StructTypes(structTypes) {} in TypeFinder()
492 StructTypes.push_back(STy); in incorporateType()
537 void Module::findUsedStructTypes(std::vector<StructType*> &StructTypes) const { in findUsedStructTypes()
538 TypeFinder(StructTypes).run(*this); in findUsedStructTypes()
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DStripSymbols.cpp178 std::vector<StructType*> StructTypes; in StripTypeNames() local
179 M.findUsedStructTypes(StructTypes); in StripTypeNames()
181 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) { in StripTypeNames()
182 StructType *STy = StructTypes[i]; in StripTypeNames()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DTypeFinder.cpp88 StructTypes.clear(); in clear()
106 StructTypes.push_back(STy); in incorporateType()
/external/llvm/lib/IR/
DTypeFinder.cpp87 StructTypes.clear(); in clear()
105 StructTypes.push_back(STy); in incorporateType()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Linker/
DIRMover.cpp1453 TypeFinder StructTypes; in IRMover() local
1454 StructTypes.run(M, /* OnlyNamed */ false); in IRMover()
1455 for (StructType *Ty : StructTypes) { in IRMover()
1464 for (auto *MD : StructTypes.getVisitedMetadata()) { in IRMover()
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
DCBackend.cpp2041 std::vector<StructType*> StructTypes; in printModuleTypes() local
2042 TheModule->findUsedStructTypes(StructTypes); in printModuleTypes()
2044 if (StructTypes.empty()) return; in printModuleTypes()
2052 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) { in printModuleTypes()
2053 StructType *ST = StructTypes[i]; in printModuleTypes()
2072 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) in printModuleTypes()
2073 if (StructTypes[i]->isStructTy()) in printModuleTypes()
2075 printContainedStructs(StructTypes[i], StructPrinted); in printModuleTypes()
/external/llvm/lib/Linker/
DIRMover.cpp1338 TypeFinder StructTypes; in IRMover() local
1339 StructTypes.run(M, true); in IRMover()
1340 for (StructType *Ty : StructTypes) { in IRMover()
/external/swiftshader/third_party/LLVM/include/llvm/
DModule.h274 void findUsedStructTypes(std::vector<StructType*> &StructTypes) const;