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

References

lib/Object/WasmObjectFile.cpp
  213   Section.Offset = Ctx.Ptr - Ctx.Start;
  213   Section.Offset = Ctx.Ptr - Ctx.Start;
  214   Section.Type = readUint8(Ctx);
  216   uint32_t Size = readVaruint32(Ctx);
  220   if (Ctx.Ptr + Size > Ctx.End)
  220   if (Ctx.Ptr + Size > Ctx.End)
  225     SectionCtx.Start = Ctx.Ptr;
  226     SectionCtx.Ptr = Ctx.Ptr;
  227     SectionCtx.End = Ctx.Ptr + Size;
  232     Ctx.Ptr += SectionNameSize;
  242   Section.Content = ArrayRef<uint8_t>(Ctx.Ptr, Size);
  243   Ctx.Ptr += Size;