reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/Module.h
  904 GlobalVariable *collectUsedGlobalVariables(const Module &M,

References

include/llvm/Transforms/Utils/FunctionImportUtils.h
  103     collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false);
  105     collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ true);
lib/Analysis/ModuleSummaryAnalysis.cpp
  657   collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false);
  659   collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ true);
lib/Object/IRSymtab.cpp
  123   collectUsedGlobalVariables(*M, Used, /*CompilerUsed*/ false);
lib/Transforms/IPO/GlobalOpt.cpp
 2640     UsedV = collectUsedGlobalVariables(M, Used, false);
 2641     CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true);
lib/Transforms/IPO/Internalize.cpp
  154   collectUsedGlobalVariables(M, Used, false);
lib/Transforms/IPO/LowerTypeTests.cpp
  354     if (GlobalVariable *GV = collectUsedGlobalVariables(M, Used, false))
  356     if (GlobalVariable *GV = collectUsedGlobalVariables(M, CompilerUsed, true))
tools/clang/lib/CodeGen/BackendUtil.cpp
 1603   GlobalVariable *Used = collectUsedGlobalVariables(*M, UsedGlobals, true);