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

  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 113 SetVector<GlobalValue *> GVs;
123 GVs.insert(GA);
138 GVs.insert(&*GA);
157 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/lib/Transforms/IPO/
StripSymbols.cpp 331 DIArray GVs = DIC.getGlobalVariables();
333 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) {
334 DIGlobalVariable DIG(GVs.getElement(i));
371 GVs == DIC->getOperand(10) &&
  /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());
468 std::vector<GlobalVariable*> GVs;
473 GVs.push_back(I);
475 if (GVs.size() > 1 && !BugpointIsInterrupted) {
479 unsigned OldSize = GVs.size()
    [all...]
  /external/llvm/lib/IR/
DIBuilder.cpp 70 DIArray GVs = getOrCreateArray(AllGVs);
71 DIType(TempGVs).replaceAllUsesWith(GVs);
    [all...]
DebugInfo.cpp 989 GVs.clear();
    [all...]
  /external/llvm/include/llvm/IR/
DebugInfo.h 882 /// addGlobalVariable - Add global variable into GVs.
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 757 DIArray GVs = CUNode.getGlobalVariables();
758 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i)
759 CU.createGlobalVariableDIE(DIGlobalVariable(GVs.getElement(i)));
    [all...]

Completed in 256 milliseconds