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

References

lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
   45   return std::move(G);
   94     CommonSection = &G->createSection(CommonSectionName, Prot);
  165     NSec.GraphSection = &G->createSection(*Name, Prot);
  287       Data ? G->createContentBlock(GraphSec, StringRef(Data, Size), Address,
  289            : G->createZeroFillBlock(GraphSec, Size, Address, Alignment, 0);
  290   auto &Sym = G->addAnonymousSymbol(B, 0, Size, false, IsLive);
  315         NSym.GraphSymbol = &G->addCommonSymbol(
  324         NSym.GraphSymbol = &G->addExternalSymbol(*NSym.Name, 0);
  331       NSym.GraphSymbol = &G->addAbsoluteSymbol(
  467               ? G->createContentBlock(
  471               : G->createZeroFillBlock(*NSec.GraphSection, BlockSize,
  500                 ? G->addDefinedSymbol(B, NSym.Value - BlockStart, *NSym.Name,
  503                 : G->addAnonymousSymbol(B, NSym.Value - BlockStart,
lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.h
  148   LinkGraph &getGraph() const { return *G; }