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

Derived Classes

tools/lld/wasm/OutputSections.h
   58 class CodeSection : public OutputSection {
   76 class DataSection : public OutputSection {
  101 class CustomSection : public OutputSection {
tools/lld/wasm/SyntheticSections.h
   36 class SyntheticSection : public OutputSection {

Declarations

tools/lld/wasm/InputChunks.h
   34 class OutputSection;
tools/lld/wasm/OutputSections.h
   21 class OutputSection;
tools/lld/wasm/Symbols.h
   37 class OutputSection;

References

tools/lld/wasm/InputChunks.h
  214   OutputSection *outputSec = nullptr;
tools/lld/wasm/OutputSections.cpp
   27 std::string toString(const wasm::OutputSection &sec) {
tools/lld/wasm/OutputSections.h
   23 std::string toString(const wasm::OutputSection &section);
   58 class CodeSection : public OutputSection {
   76 class DataSection : public OutputSection {
  101 class CustomSection : public OutputSection {
tools/lld/wasm/Symbols.h
  228   OutputSectionSymbol(const OutputSection *s)
  237   const OutputSection *section;
tools/lld/wasm/SyntheticSections.h
   36 class SyntheticSection : public OutputSection {
  326   RelocSection(StringRef name, OutputSection *sec)
  332   OutputSection *sec;
tools/lld/wasm/Writer.cpp
   75   void addSection(OutputSection *sec);
   96   std::vector<OutputSection *> outputSections;
  131     OutputSection *sec = make<CustomSection>(name, pair.second);
  149     OutputSection *sec = outputSections[i];
  310 void Writer::addSection(OutputSection *sec) {
  364   for (OutputSection *s : outputSections) {