HomeSort by relevance Sort by last modified time
    Searched defs:GVs (Results 1 - 6 of 6) sorted by null

  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 112 SetVector<GlobalValue *> GVs;
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/
CrashDebugger.cpp 123 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;
472 GVs.push_back(I);
474 if (GVs.size() > 1 && !BugpointIsInterrupted) {
478 unsigned OldSize = GVs.size()
    [all...]
  /external/llvm/lib/IR/
DIBuilder.cpp 62 DIArray GVs = getOrCreateArray(AllGVs);
63 DIType(TempGVs).replaceAllUsesWith(GVs);
    [all...]
DebugInfo.cpp 878 GVs.clear();
890 DIArray GVs = CU.getGlobalVariables();
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);
    [all...]
  /external/llvm/include/llvm/
DebugInfo.h 756 /// 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;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [all...]

Completed in 201 milliseconds