Searched refs:GVs (Results 1 - 8 of 8) sorted by relevance

/external/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp122 SetVector<GlobalValue *> GVs; local
132 GVs.insert(GA);
147 GVs.insert(&*GA);
166 GVs.insert(GV);
180 GVs.insert(&GV);
199 GVs.insert(GV);
214 GVs.insert(&*F);
234 for (size_t i = 0, e = GVs.size(); i != e; ++i)
235 Materialize(*GVs[i]);
237 // Deleting. Materialize every GV that's *not* in GVs
[all...]
/external/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp67 explicit GVExtractorPass(std::vector<GlobalValue*>& GVs, bool deleteS = true) argument
68 : ModulePass(ID), Named(GVs.begin(), GVs.end()), deleteStuff(deleteS) {}
157 ModulePass *llvm::createGVExtractionPass(std::vector<GlobalValue *> &GVs, argument
159 return new GVExtractorPass(GVs, deleteFn);
/external/llvm/include/llvm/IR/
H A DDebugInfo.h116 return make_range(GVs.begin(), GVs.end());
128 unsigned global_variable_count() const { return GVs.size(); }
136 SmallVector<DIGlobalVariable *, 8> GVs; member in class:llvm::DebugInfoFinder
/external/llvm/tools/bugpoint/
H A DBugDriver.cpp240 void llvm::PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs) { argument
241 unsigned NumPrint = GVs.size();
244 outs() << " " << GVs[i]->getName();
245 if (NumPrint < GVs.size())
246 outs() << "... <" << GVs.size() << " total>";
H A DCrashDebugger.cpp137 bool TestGlobalVariables(std::vector<GlobalVariable*> &GVs);
143 std::vector<GlobalVariable*> &GVs) {
151 for (unsigned i = 0, e = GVs.size(); i != e; ++i) {
152 GlobalVariable* CMGV = cast<GlobalVariable>(VMap[GVs[i]]);
158 PrintGlobalVariableList(GVs);
175 GVs.assign(GVSet.begin(), GVSet.end());
685 std::vector<GlobalVariable*> GVs; local
690 GVs.push_back(&*I);
692 if (GVs.size() > 1 && !BugpointIsInterrupted) {
696 unsigned OldSize = GVs
142 TestGlobalVariables( std::vector<GlobalVariable*> &GVs) argument
[all...]
H A DBugDriver.h322 void PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs);
/external/llvm/include/llvm/Transforms/
H A DIPO.h86 ModulePass *createGVExtractionPass(std::vector<GlobalValue*>& GVs, bool
/external/llvm/lib/IR/
H A DDebugInfo.cpp91 GVs.clear();
273 GVs.push_back(DIG);

Completed in 184 milliseconds