mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
564 lines
15 KiB
C++
564 lines
15 KiB
C++
/* SPDX-License-Identifier: MIT */
|
|
|
|
#include <algorithm>
|
|
#include <assert.h>
|
|
#include <deque>
|
|
#include <inttypes.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <vector>
|
|
|
|
#include "link/output.hpp"
|
|
#include "link/main.hpp"
|
|
#include "link/section.hpp"
|
|
#include "link/symbol.hpp"
|
|
|
|
#include "extern/utf8decoder.hpp"
|
|
|
|
#include "error.hpp"
|
|
#include "itertools.hpp"
|
|
#include "linkdefs.hpp"
|
|
|
|
#define BANK_SIZE 0x4000
|
|
|
|
FILE *outputFile;
|
|
FILE *overlayFile;
|
|
FILE *symFile;
|
|
FILE *mapFile;
|
|
|
|
struct SortedSymbol {
|
|
Symbol const *sym;
|
|
uint16_t addr;
|
|
};
|
|
|
|
struct SortedSections {
|
|
std::deque<Section const *> sections;
|
|
std::deque<Section const *> zeroLenSections;
|
|
};
|
|
|
|
static std::deque<SortedSections> sections[SECTTYPE_INVALID];
|
|
|
|
// Defines the order in which types are output to the sym and map files
|
|
static enum SectionType typeMap[SECTTYPE_INVALID] = {
|
|
SECTTYPE_ROM0,
|
|
SECTTYPE_ROMX,
|
|
SECTTYPE_VRAM,
|
|
SECTTYPE_SRAM,
|
|
SECTTYPE_WRAM0,
|
|
SECTTYPE_WRAMX,
|
|
SECTTYPE_OAM,
|
|
SECTTYPE_HRAM
|
|
};
|
|
|
|
void out_AddSection(Section const §ion)
|
|
{
|
|
static const uint32_t maxNbBanks[SECTTYPE_INVALID] = {
|
|
1, // SECTTYPE_WRAM0
|
|
2, // SECTTYPE_VRAM
|
|
UINT32_MAX, // SECTTYPE_ROMX
|
|
1, // SECTTYPE_ROM0
|
|
1, // SECTTYPE_HRAM
|
|
7, // SECTTYPE_WRAMX
|
|
UINT32_MAX, // SECTTYPE_SRAM
|
|
1, // SECTTYPE_OAM
|
|
};
|
|
|
|
uint32_t targetBank = section.bank - sectionTypeInfo[section.type].firstBank;
|
|
uint32_t minNbBanks = targetBank + 1;
|
|
|
|
if (minNbBanks > maxNbBanks[section.type])
|
|
errx("Section \"%s\" has an invalid bank range (%" PRIu32 " > %" PRIu32 ")",
|
|
section.name.c_str(), section.bank, maxNbBanks[section.type] - 1);
|
|
|
|
for (uint32_t i = sections[section.type].size(); i < minNbBanks; i++)
|
|
sections[section.type].emplace_back();
|
|
|
|
std::deque<Section const *> &bankSections = section.size
|
|
? sections[section.type][targetBank].sections
|
|
: sections[section.type][targetBank].zeroLenSections;
|
|
auto pos = bankSections.begin();
|
|
|
|
while (pos != bankSections.end() && (*pos)->org < section.org)
|
|
pos++;
|
|
|
|
bankSections.insert(pos, §ion);
|
|
}
|
|
|
|
Section const *out_OverlappingSection(Section const §ion)
|
|
{
|
|
uint32_t bank = section.bank - sectionTypeInfo[section.type].firstBank;
|
|
|
|
for (Section const *ptr : sections[section.type][bank].sections) {
|
|
if (ptr->org < section.org + section.size && section.org < ptr->org + ptr->size)
|
|
return ptr;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
/*
|
|
* Performs sanity checks on the overlay file.
|
|
* @return The number of ROM banks in the overlay file
|
|
*/
|
|
static uint32_t checkOverlaySize()
|
|
{
|
|
if (!overlayFile)
|
|
return 0;
|
|
|
|
if (fseek(overlayFile, 0, SEEK_END) != 0) {
|
|
warnx("Overlay file is not seekable, cannot check if properly formed");
|
|
return 0;
|
|
}
|
|
|
|
long overlaySize = ftell(overlayFile);
|
|
|
|
// Reset back to beginning
|
|
fseek(overlayFile, 0, SEEK_SET);
|
|
|
|
if (overlaySize % BANK_SIZE)
|
|
errx("Overlay file must have a size multiple of 0x4000");
|
|
|
|
uint32_t nbOverlayBanks = overlaySize / BANK_SIZE;
|
|
|
|
if (is32kMode && nbOverlayBanks != 2)
|
|
errx("Overlay must be exactly 0x8000 bytes large");
|
|
|
|
if (nbOverlayBanks < 2)
|
|
errx("Overlay must be at least 0x8000 bytes large");
|
|
|
|
return nbOverlayBanks;
|
|
}
|
|
|
|
/*
|
|
* Expand `sections[SECTTYPE_ROMX]` to cover all the overlay banks.
|
|
* This ensures that `writeROM` will output each bank, even if some are not
|
|
* covered by any sections.
|
|
* @param nbOverlayBanks The number of banks in the overlay file
|
|
*/
|
|
static void coverOverlayBanks(uint32_t nbOverlayBanks)
|
|
{
|
|
// 2 if is32kMode, 1 otherwise
|
|
uint32_t nbRom0Banks = sectionTypeInfo[SECTTYPE_ROM0].size / BANK_SIZE;
|
|
// Discount ROM0 banks to avoid outputting too much
|
|
uint32_t nbUncoveredBanks = nbOverlayBanks - nbRom0Banks > sections[SECTTYPE_ROMX].size()
|
|
? nbOverlayBanks - nbRom0Banks
|
|
: 0;
|
|
|
|
if (nbUncoveredBanks > sections[SECTTYPE_ROMX].size()) {
|
|
for (uint32_t i = sections[SECTTYPE_ROMX].size(); i < nbUncoveredBanks; i++)
|
|
sections[SECTTYPE_ROMX].emplace_back();
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Write a ROM bank's sections to the output file.
|
|
* @param bankSections The bank's sections, ordered by increasing address
|
|
* @param baseOffset The address of the bank's first byte in GB address space
|
|
* @param size The size of the bank
|
|
*/
|
|
static void writeBank(std::deque<Section const *> *bankSections, uint16_t baseOffset, uint16_t size)
|
|
{
|
|
uint16_t offset = 0;
|
|
|
|
if (bankSections) {
|
|
for (Section const *section : *bankSections) {
|
|
assert(section->offset == 0);
|
|
// Output padding up to the next SECTION
|
|
while (offset + baseOffset < section->org) {
|
|
putc(overlayFile ? getc(overlayFile) : padValue, outputFile);
|
|
offset++;
|
|
}
|
|
|
|
// Output the section itself
|
|
fwrite(section->data.data(), 1, section->size, outputFile);
|
|
if (overlayFile) {
|
|
// Skip bytes even with pipes
|
|
for (uint16_t i = 0; i < section->size; i++)
|
|
getc(overlayFile);
|
|
}
|
|
offset += section->size;
|
|
}
|
|
}
|
|
|
|
if (!disablePadding) {
|
|
while (offset < size) {
|
|
putc(overlayFile ? getc(overlayFile) : padValue, outputFile);
|
|
offset++;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Writes a ROM file to the output.
|
|
static void writeROM()
|
|
{
|
|
if (outputFileName) {
|
|
if (strcmp(outputFileName, "-")) {
|
|
outputFile = fopen(outputFileName, "wb");
|
|
} else {
|
|
outputFileName = "<stdout>";
|
|
outputFile = fdopen(STDOUT_FILENO, "wb");
|
|
}
|
|
if (!outputFile)
|
|
err("Failed to open output file \"%s\"", outputFileName);
|
|
}
|
|
|
|
if (overlayFile) {
|
|
if (strcmp(overlayFileName, "-")) {
|
|
overlayFile = fopen(overlayFileName, "rb");
|
|
} else {
|
|
overlayFileName = "<stdin>";
|
|
overlayFile = fdopen(STDIN_FILENO, "rb");
|
|
}
|
|
if (!overlayFile)
|
|
err("Failed to open overlay file \"%s\"", overlayFileName);
|
|
}
|
|
|
|
uint32_t nbOverlayBanks = checkOverlaySize();
|
|
|
|
if (nbOverlayBanks > 0)
|
|
coverOverlayBanks(nbOverlayBanks);
|
|
|
|
if (outputFile) {
|
|
writeBank(!sections[SECTTYPE_ROM0].empty() ? §ions[SECTTYPE_ROM0][0].sections : nullptr,
|
|
sectionTypeInfo[SECTTYPE_ROM0].startAddr, sectionTypeInfo[SECTTYPE_ROM0].size);
|
|
|
|
for (uint32_t i = 0 ; i < sections[SECTTYPE_ROMX].size(); i++)
|
|
writeBank(§ions[SECTTYPE_ROMX][i].sections,
|
|
sectionTypeInfo[SECTTYPE_ROMX].startAddr, sectionTypeInfo[SECTTYPE_ROMX].size);
|
|
}
|
|
|
|
if (outputFile)
|
|
fclose(outputFile);
|
|
if (overlayFile)
|
|
fclose(overlayFile);
|
|
}
|
|
|
|
// Checks whether this character is legal as the first character of a symbol's name in a sym file
|
|
static bool canStartSymName(char c)
|
|
{
|
|
return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || c == '_';
|
|
}
|
|
|
|
// Checks whether this character is legal in a symbol's name in a sym file
|
|
static bool isLegalForSymName(char c)
|
|
{
|
|
return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') ||
|
|
c == '_' || c == '@' || c == '#' || c == '$' || c == '.';
|
|
}
|
|
|
|
// Prints a symbol's name to `symFile`, assuming that the first character is legal.
|
|
// Illegal characters are UTF-8-decoded (errors are replaced by U+FFFD) and emitted as `\u`/`\U`.
|
|
static void printSymName(char const *name)
|
|
{
|
|
for (char const *ptr = name; *ptr != '\0'; ) {
|
|
char c = *ptr;
|
|
|
|
if (isLegalForSymName(c)) {
|
|
// Output legal ASCII characters as-is
|
|
putc(c, symFile);
|
|
++ptr;
|
|
} else {
|
|
// Output illegal characters using Unicode escapes
|
|
// Decode the UTF-8 codepoint; or at least attempt to
|
|
uint32_t state = 0, codepoint;
|
|
|
|
do {
|
|
decode(&state, &codepoint, *ptr);
|
|
if (state == 1) {
|
|
// This sequence was invalid; emit a U+FFFD, and recover
|
|
codepoint = 0xFFFD;
|
|
// Skip continuation bytes
|
|
// A NUL byte does not qualify, so we're good
|
|
while ((*ptr & 0xC0) == 0x80)
|
|
++ptr;
|
|
break;
|
|
}
|
|
++ptr;
|
|
} while (state != 0);
|
|
|
|
fprintf(symFile, codepoint <= 0xFFFF ? "\\u%04" PRIx32 : "\\U%08" PRIx32,
|
|
codepoint);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Comparator function for `std::stable_sort` to sort symbols
|
|
// Symbols are ordered by address, then by parentage
|
|
static int compareSymbols(SortedSymbol const &sym1, SortedSymbol const &sym2)
|
|
{
|
|
if (sym1.addr != sym2.addr)
|
|
return sym1.addr < sym2.addr ? -1 : 1;
|
|
|
|
std::string const &sym1_name = sym1.sym->name;
|
|
std::string const &sym2_name = sym2.sym->name;
|
|
bool sym1_local = sym1_name.find(".") != std::string::npos;
|
|
bool sym2_local = sym2_name.find(".") != std::string::npos;
|
|
|
|
if (sym1_local != sym2_local) {
|
|
size_t sym1_len = sym1_name.length();
|
|
size_t sym2_len = sym2_name.length();
|
|
|
|
// Sort parent labels before their child local labels
|
|
if (sym2_name.starts_with(sym1_name) && sym2_name[sym1_len] == '.')
|
|
return -1;
|
|
if (sym1_name.starts_with(sym2_name) && sym1_name[sym2_len] == '.')
|
|
return 1;
|
|
// Sort local labels before unrelated global labels
|
|
return sym1_local ? -1 : 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Write a bank's contents to the sym file
|
|
* @param bankSections The bank's sections
|
|
*/
|
|
static void writeSymBank(SortedSections const &bankSections, enum SectionType type, uint32_t bank)
|
|
{
|
|
#define forEachSortedSection(sect, ...) do { \
|
|
for (auto it = bankSections.zeroLenSections.begin(); it != bankSections.zeroLenSections.end(); it++) { \
|
|
for (Section const *sect = *it; sect; sect = sect->nextu) \
|
|
__VA_ARGS__ \
|
|
} \
|
|
for (auto it = bankSections.sections.begin(); it != bankSections.sections.end(); it++) { \
|
|
for (Section const *sect = *it; sect; sect = sect->nextu) \
|
|
__VA_ARGS__ \
|
|
} \
|
|
} while (0)
|
|
|
|
uint32_t nbSymbols = 0;
|
|
|
|
forEachSortedSection(sect, {
|
|
nbSymbols += sect->symbols.size();
|
|
});
|
|
|
|
if (!nbSymbols)
|
|
return;
|
|
|
|
std::vector<SortedSymbol> symList;
|
|
|
|
symList.reserve(nbSymbols);
|
|
|
|
forEachSortedSection(sect, {
|
|
for (Symbol const *sym : sect->symbols) {
|
|
// Don't output symbols that begin with an illegal character
|
|
if (!sym->name.empty() && canStartSymName(sym->name[0]))
|
|
symList.push_back({
|
|
.sym = sym,
|
|
.addr = (uint16_t)(std::get<Label>(sym->data).offset + sect->org)
|
|
});
|
|
}
|
|
});
|
|
|
|
#undef forEachSortedSection
|
|
|
|
std::stable_sort(RANGE(symList), compareSymbols);
|
|
|
|
uint32_t symBank = bank + sectionTypeInfo[type].firstBank;
|
|
|
|
for (SortedSymbol &sym : symList) {
|
|
fprintf(symFile, "%02" PRIx32 ":%04" PRIx16 " ", symBank, sym.addr);
|
|
printSymName(sym.sym->name.c_str());
|
|
putc('\n', symFile);
|
|
}
|
|
}
|
|
|
|
static void writeEmptySpace(uint16_t begin, uint16_t end)
|
|
{
|
|
if (begin < end) {
|
|
uint16_t len = end - begin;
|
|
|
|
fprintf(mapFile, "\tEMPTY: $%04x-$%04x ($%04" PRIx16 " byte%s)\n",
|
|
begin, end - 1, len, len == 1 ? "" : "s");
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Write a bank's contents to the map file
|
|
*/
|
|
static void writeMapBank(SortedSections const §List, enum SectionType type, uint32_t bank)
|
|
{
|
|
fprintf(mapFile, "\n%s bank #%" PRIu32 ":\n", sectionTypeInfo[type].name.c_str(),
|
|
bank + sectionTypeInfo[type].firstBank);
|
|
|
|
uint16_t used = 0;
|
|
auto section = sectList.sections.begin();
|
|
auto zeroLenSection = sectList.zeroLenSections.begin();
|
|
uint16_t prevEndAddr = sectionTypeInfo[type].startAddr;
|
|
|
|
while (section != sectList.sections.end() || zeroLenSection != sectList.zeroLenSections.end()) {
|
|
// Pick the lowest section by address out of the two
|
|
auto &pickedSection = section == sectList.sections.end() ? zeroLenSection
|
|
: zeroLenSection == sectList.zeroLenSections.end() ? section
|
|
: (*section)->org < (*zeroLenSection)->org ? section : zeroLenSection;
|
|
Section const *sect = *pickedSection;
|
|
|
|
used += sect->size;
|
|
assert(sect->offset == 0);
|
|
|
|
writeEmptySpace(prevEndAddr, sect->org);
|
|
|
|
prevEndAddr = sect->org + sect->size;
|
|
|
|
if (sect->size != 0)
|
|
fprintf(mapFile, "\tSECTION: $%04" PRIx16 "-$%04x ($%04" PRIx16
|
|
" byte%s) [\"%s\"]\n",
|
|
sect->org, prevEndAddr - 1, sect->size, sect->size == 1 ? "" : "s",
|
|
sect->name.c_str());
|
|
else
|
|
fprintf(mapFile, "\tSECTION: $%04" PRIx16 " (0 bytes) [\"%s\"]\n",
|
|
sect->org, sect->name.c_str());
|
|
|
|
if (!noSymInMap) {
|
|
// Also print symbols in the following "pieces"
|
|
for (uint16_t org = sect->org; sect; sect = sect->nextu) {
|
|
for (Symbol *sym : sect->symbols)
|
|
// Space matches "\tSECTION: $xxxx ..."
|
|
fprintf(mapFile, "\t $%04" PRIx32 " = %s\n",
|
|
std::get<Label>(sym->data).offset + org,
|
|
sym->name.c_str());
|
|
|
|
if (sect->nextu) {
|
|
// Announce the following "piece"
|
|
if (sect->nextu->modifier == SECTION_UNION)
|
|
fprintf(mapFile,
|
|
"\t ; Next union\n");
|
|
else if (sect->nextu->modifier == SECTION_FRAGMENT)
|
|
fprintf(mapFile,
|
|
"\t ; Next fragment\n");
|
|
}
|
|
}
|
|
}
|
|
|
|
pickedSection++;
|
|
}
|
|
|
|
if (used == 0) {
|
|
fputs("\tEMPTY\n", mapFile);
|
|
} else {
|
|
uint16_t bankEndAddr = sectionTypeInfo[type].startAddr + sectionTypeInfo[type].size;
|
|
|
|
writeEmptySpace(prevEndAddr, bankEndAddr);
|
|
|
|
uint16_t slack = sectionTypeInfo[type].size - used;
|
|
|
|
fprintf(mapFile, "\tTOTAL EMPTY: $%04" PRIx16 " byte%s\n", slack,
|
|
slack == 1 ? "" : "s");
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Write the total used and free space by section type to the map file
|
|
*/
|
|
static void writeMapSummary()
|
|
{
|
|
fputs("SUMMARY:\n", mapFile);
|
|
|
|
for (uint8_t i = 0; i < SECTTYPE_INVALID; i++) {
|
|
enum SectionType type = typeMap[i];
|
|
uint32_t nbBanks = sections[type].size();
|
|
|
|
// Do not output used space for VRAM or OAM
|
|
if (type == SECTTYPE_VRAM || type == SECTTYPE_OAM)
|
|
continue;
|
|
|
|
// Do not output unused section types
|
|
if (nbBanks == 0)
|
|
continue;
|
|
|
|
uint32_t usedTotal = 0;
|
|
|
|
for (uint32_t bank = 0; bank < nbBanks; bank++) {
|
|
uint16_t used = 0;
|
|
auto §List = sections[type][bank];
|
|
auto section = sectList.sections.begin();
|
|
auto zeroLenSection = sectList.zeroLenSections.begin();
|
|
|
|
while (section != sectList.sections.end()
|
|
|| zeroLenSection != sectList.zeroLenSections.end()) {
|
|
// Pick the lowest section by address out of the two
|
|
auto &pickedSection = section == sectList.sections.end() ? zeroLenSection
|
|
: zeroLenSection == sectList.zeroLenSections.end() ? section
|
|
: (*section)->org < (*zeroLenSection)->org ? section
|
|
: zeroLenSection;
|
|
|
|
used += (*pickedSection)->size;
|
|
pickedSection++;
|
|
}
|
|
|
|
usedTotal += used;
|
|
}
|
|
|
|
fprintf(mapFile, "\t%s: %" PRId32 " byte%s used / %" PRId32 " free",
|
|
sectionTypeInfo[type].name.c_str(), usedTotal, usedTotal == 1 ? "" : "s",
|
|
nbBanks * sectionTypeInfo[type].size - usedTotal);
|
|
if (sectionTypeInfo[type].firstBank != sectionTypeInfo[type].lastBank
|
|
|| nbBanks > 1)
|
|
fprintf(mapFile, " in %u bank%s", nbBanks, nbBanks == 1 ? "" : "s");
|
|
putc('\n', mapFile);
|
|
}
|
|
}
|
|
|
|
// Writes the sym file, if applicable.
|
|
static void writeSym()
|
|
{
|
|
if (!symFileName)
|
|
return;
|
|
|
|
if (strcmp(symFileName, "-")) {
|
|
symFile = fopen(symFileName, "w");
|
|
} else {
|
|
symFileName = "<stdout>";
|
|
symFile = fdopen(STDOUT_FILENO, "w");
|
|
}
|
|
if (!symFile)
|
|
err("Failed to open sym file \"%s\"", symFileName);
|
|
|
|
fputs("; File generated by rgblink\n", symFile);
|
|
|
|
for (uint8_t i = 0; i < SECTTYPE_INVALID; i++) {
|
|
enum SectionType type = typeMap[i];
|
|
|
|
for (uint32_t bank = 0; bank < sections[type].size(); bank++)
|
|
writeSymBank(sections[type][bank], type, bank);
|
|
}
|
|
|
|
fclose(symFile);
|
|
}
|
|
|
|
// Writes the map file, if applicable.
|
|
static void writeMap()
|
|
{
|
|
if (!mapFileName)
|
|
return;
|
|
|
|
if (strcmp(mapFileName, "-")) {
|
|
mapFile = fopen(mapFileName, "w");
|
|
} else {
|
|
mapFileName = "<stdout>";
|
|
mapFile = fdopen(STDOUT_FILENO, "w");
|
|
}
|
|
if (!mapFile)
|
|
err("Failed to open map file \"%s\"", mapFileName);
|
|
|
|
writeMapSummary();
|
|
|
|
for (uint8_t i = 0; i < SECTTYPE_INVALID; i++) {
|
|
enum SectionType type = typeMap[i];
|
|
|
|
for (uint32_t bank = 0; bank < sections[type].size(); bank++)
|
|
writeMapBank(sections[type][bank], type, bank);
|
|
}
|
|
|
|
fclose(mapFile);
|
|
}
|
|
|
|
void out_WriteFiles()
|
|
{
|
|
writeROM();
|
|
writeSym();
|
|
writeMap();
|
|
}
|