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

/external/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp36 explicit GVExtractorPass(std::vector<GlobalValue*>& GVs, bool deleteS = true) argument
37 : ModulePass(ID), Named(GVs.begin(), GVs.end()), deleteStuff(deleteS) {}
132 ModulePass *llvm::createGVExtractionPass(std::vector<GlobalValue*>& GVs, argument
134 return new GVExtractorPass(GVs, deleteFn);
/external/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp112 SetVector<GlobalValue *> GVs; local
122 GVs.insert(GA);
137 GVs.insert(&*GA);
156 GVs.insert(GV);
171 GVs.insert(&*GV);
190 GVs.insert(GV);
205 GVs.insert(&*F);
218 for (size_t i = 0, e = GVs.size(); i != e; ++i) {
219 GlobalValue *GV = GVs[i];
229 // Deleting. Materialize every GV that's *not* in GVs
[all...]
/external/llvm/tools/bugpoint/
H A DBugDriver.cpp239 void llvm::PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs) { argument
240 unsigned NumPrint = GVs.size();
243 outs() << " " << GVs[i]->getName();
244 if (NumPrint < GVs.size())
245 outs() << "... <" << GVs.size() << " total>";
H A DCrashDebugger.cpp123 bool TestGlobalVariables(std::vector<GlobalVariable*> &GVs);
129 std::vector<GlobalVariable*> &GVs) {
137 for (unsigned i = 0, e = GVs.size(); i != e; ++i) {
138 GlobalVariable* CMGV = cast<GlobalVariable>(VMap[GVs[i]]);
144 PrintGlobalVariableList(GVs);
162 GVs.assign(GVSet.begin(), GVSet.end());
467 std::vector<GlobalVariable*> GVs; local
472 GVs.push_back(I);
474 if (GVs.size() > 1 && !BugpointIsInterrupted) {
478 unsigned OldSize = GVs
128 TestGlobalVariables( std::vector<GlobalVariable*> &GVs) argument
[all...]
H A DBugDriver.h317 void PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs);
/external/llvm/include/llvm/Transforms/
H A DIPO.h81 ModulePass *createGVExtractionPass(std::vector<GlobalValue*>& GVs, bool
/external/llvm/include/llvm/
H A DDebugInfo.h756 /// addGlobalVariable - Add global variable into GVs.
773 iterator global_variable_begin() const { return GVs.begin(); }
774 iterator global_variable_end() const { return GVs.end(); }
781 unsigned global_variable_count() const { return GVs.size(); }
789 SmallVector<MDNode *, 8> GVs; // Global Variables; member in class:llvm::DebugInfoFinder
/external/llvm/lib/IR/
H A DDebugInfo.cpp878 GVs.clear();
890 DIArray GVs = CU.getGlobalVariables(); local
891 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) {
892 DIGlobalVariable DIG(GVs.getElement(i));
1043 /// addGlobalVariable - Add global variable into GVs.
1051 GVs.push_back(DIG);
H A DDIBuilder.cpp62 DIArray GVs = getOrCreateArray(AllGVs); local
63 DIType(TempGVs).replaceAllUsesWith(GVs);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp874 DIArray GVs = CUNode.getGlobalVariables(); local
875 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i)
876 CU->createGlobalVariableDIE(GVs.getElement(i));

Completed in 383 milliseconds