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

References

lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
  119       NSec.Address = Sec64.addr;
  120       NSec.Size = Sec64.size;
  121       NSec.Alignment = 1ULL << Sec64.align;
  122       NSec.Flags = Sec64.flags;
  126       NSec.Address = Sec32.addr;
  127       NSec.Size = Sec32.size;
  128       NSec.Alignment = 1ULL << Sec32.align;
  129       NSec.Flags = Sec32.flags;
  134       dbgs() << "  " << *Name << ": " << formatv("{0:x16}", NSec.Address)
  135              << " -- " << formatv("{0:x16}", NSec.Address + NSec.Size)
  135              << " -- " << formatv("{0:x16}", NSec.Address + NSec.Size)
  136              << ", align: " << NSec.Alignment << ", index: " << SecIndex
  142       unsigned SectionType = NSec.Flags & MachO::SECTION_TYPE;
  146         if (DataOffset + NSec.Size > Obj.getData().size())
  150         NSec.Data = Obj.getData().data() + DataOffset;
  158     if (NSec.Flags & MachO::S_ATTR_PURE_INSTRUCTIONS)
  165     NSec.GraphSection = &G->createSection(*Name, Prot);
  166     IndexToSection.insert(std::make_pair(SecIndex, std::move(NSec)));