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

References

tools/lld/COFF/Writer.cpp
 1292   buf += sizeof(*coff);
 1293   coff->Machine = config->machine;
 1294   coff->NumberOfSections = outputSections.size();
 1295   coff->Characteristics = IMAGE_FILE_EXECUTABLE_IMAGE;
 1297     coff->Characteristics |= IMAGE_FILE_LARGE_ADDRESS_AWARE;
 1299     coff->Characteristics |= IMAGE_FILE_32BIT_MACHINE;
 1301     coff->Characteristics |= IMAGE_FILE_DLL;
 1303     coff->Characteristics |= IMAGE_FILE_RELOCS_STRIPPED;
 1305     coff->Characteristics |= IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP;
 1307     coff->Characteristics |= IMAGE_FILE_NET_RUN_FROM_SWAP;
 1308   coff->SizeOfOptionalHeader =
 1449   coff->PointerToSymbolTable = pointerToSymbolTable;
 1451   coff->NumberOfSymbols = numberOfSymbols;
 1453       buffer->getBufferStart() + coff->PointerToSymbolTable);