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

References

lib/AsmParser/LLParser.cpp
 1092     M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
 1092     M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
lib/Bitcode/Reader/BitcodeReader.cpp
 2987     TheModule->getGlobalList().push_back(Pair.second);
lib/IR/Globals.cpp
  375     Before->getParent()->getGlobalList().insert(Before->getIterator(), this);
  377     M.getGlobalList().push_back(this);
  381   getParent()->getGlobalList().remove(getIterator());
  385   getParent()->getGlobalList().erase(getIterator());
lib/Target/NVPTX/NVPTXAsmPrinter.cpp
  903   Module::GlobalListType &global_list = M.getGlobalList();
lib/Transforms/IPO/GlobalOpt.cpp
  472   Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
  946     GV->getParent()->getGlobalList().insert(GV->getIterator(), InitBool);
 1636   GV->getParent()->getGlobalList().insert(GV->getIterator(), NewGV);
lib/Transforms/IPO/WholeProgramDevirt.cpp
  782   Bits.reserve(M.getGlobalList().size());
lib/Transforms/Scalar/SCCP.cpp
 2227     M.getGlobalList().erase(GV);
lib/Transforms/Utils/CtorUtils.cpp
   50   GCL->getParent()->getGlobalList().insert(GCL->getIterator(), NGV);
tools/clang/lib/CodeGen/CGObjCMac.cpp
 7279     CGM.getModule().getGlobalList().push_back(GV);
tools/lldb/source/Expression/IRExecutionUnit.cpp
  385   for (llvm::GlobalVariable &global_var : m_module->getGlobalList()) {
unittests/IR/ModuleTest.cpp
   46     M.getGlobalList().sort(compare);