Files
rgbds/src/link/section.cpp
T
ISSOtm f234796428 Avoid allocating for our linkdef names (#2111)
This reverts a change introduced in fd78a9ae8, though it wasn't that commit's main point
so I'm feeling okay with undoing that.

This feels like an overkill change, using a static string is good enough for this
since we never modify this. I have considered using `string_view` instead, to have
the best of both worlds, but that's not NUL-terminated so our print functions
get a little grumpy.
2026-09-17 13:58:30 -04:00

350 lines
9.9 KiB
C++

// SPDX-License-Identifier: MIT
#include "link/section.hpp"
#include <inttypes.h>
#include <memory>
#include <stdint.h>
#include <stdlib.h>
#include <string>
#include <utility>
#include <vector>
#include "helpers.hpp"
#include "itertools.hpp" // InsertionOrderedMap
#include "linkdefs.hpp"
#include "link/main.hpp"
#include "link/warning.hpp"
static InsertionOrderedMap<std::string, std::unique_ptr<Section>> sections;
void sect_ForEach(void (*callback)(Section &)) {
for (std::unique_ptr<Section> &ptr : sections) {
callback(*ptr);
}
}
static void checkPieceCompat(Section &target, Section const &other, size_t delta) {
assume(other.modifier != SECTION_UNION || delta == 0);
if (other.isAddressFixed) {
uint16_t org = other.org - delta;
if (target.isAddressFixed) {
if (target.org != org) {
fatalTwoAt(
target,
other,
"Section \"%s\" is defined with address $%04" PRIx16
", but also with address $%04" PRIx16,
target.name.c_str(),
target.org,
other.org
);
}
} else if (target.isAlignFixed) {
if ((org - target.alignOfs) & target.alignMask) {
fatalTwoAt(
target,
other,
"Section \"%s\" is defined with %d-byte alignment (offset %" PRIu16
"), but also with address $%04" PRIx16,
target.name.c_str(),
target.alignMask + 1,
target.alignOfs,
other.org
);
}
}
target.isAddressFixed = true;
target.org = org;
} else if (other.isAlignFixed) {
uint32_t ofs = (other.alignOfs - delta) & other.alignMask;
if (target.isAddressFixed) {
if ((target.org - ofs) & other.alignMask) {
fatalTwoAt(
target,
other,
"Section \"%s\" is defined with address $%04" PRIx16
", but also with %d-byte alignment (offset %" PRIu16 ")",
target.name.c_str(),
target.org,
other.alignMask + 1,
other.alignOfs
);
}
} else if (target.isAlignFixed
&& (other.alignMask & target.alignOfs) != (target.alignMask & ofs)) {
fatalTwoAt(
target,
other,
"Section \"%s\" is defined with %d-byte alignment (offset %" PRIu16
"), but also with %d-byte alignment (offset %" PRIu16 ")",
target.name.c_str(),
target.alignMask + 1,
target.alignOfs,
other.alignMask + 1,
other.alignOfs
);
} else if (!target.isAlignFixed || other.alignMask > target.alignMask) {
target.isAlignFixed = true;
target.alignMask = other.alignMask;
target.alignOfs = ofs;
}
}
}
static void mergeSections(Section &target, std::unique_ptr<Section> &&other) {
if (target.modifier != other->modifier) {
fatalTwoAt(
target,
*other,
"Section \"%s\" is defined as `SECTION %s`, but also as `SECTION %s`",
target.name.c_str(),
sectionModNames[target.modifier],
sectionModNames[other->modifier]
);
} else if (other->modifier == SECTION_NORMAL) {
fatalTwoAt(target, *other, "Section \"%s\" is already defined", target.name.c_str());
} else if (target.type != other->type) {
fatalTwoAt(
target,
*other,
"Section \"%s\" is defined with type `%s`, but also with type `%s`",
target.name.c_str(),
target.typeInfo().name,
other->typeInfo().name
);
}
if (other->isBankFixed) {
if (!target.isBankFixed) {
target.isBankFixed = true;
target.bank = other->bank;
} else if (target.bank != other->bank) {
fatalTwoAt(
target,
*other,
"Section \"%s\" is defined with bank %" PRIu32 ", but also with bank %" PRIu32,
target.name.c_str(),
target.bank,
other->bank
);
}
}
switch (other->modifier) {
case SECTION_UNION:
checkPieceCompat(target, *other, 0);
if (other->size > target.size) {
target.size = other->size;
}
break;
case SECTION_FRAGMENT:
checkPieceCompat(target, *other, target.size);
// Check that `target.size += other->size` below will not overflow
if (target.size + other->size > UINT16_MAX) {
fatalTwoAt(
target,
*other,
"Section \"%s\" fragments combined are larger than the GB address space",
target.name.c_str()
);
}
// Append `other` to `target`
other->offset = target.size;
target.size += other->size;
// Normally we'd check that `sectTypeHasData`, but SDCC areas may be `_INVALID` here
if (!other->data.empty()) {
target.data.insert(target.data.end(), RANGE(other->data));
// Adjust patches' PC offsets
for (Patch &patch : other->patches) {
patch.pcOffset += other->offset;
}
} else if (!target.data.empty()) {
assume(other->size == 0);
}
break;
case SECTION_NORMAL:
// LCOV_EXCL_START
unreachable_();
}
// LCOV_EXCL_STOP
// Note that the order in which fragments are stored in the `nextPiece` list does not
// really matter, only that offsets were properly computed above
other->nextPiece = std::move(target.nextPiece);
target.nextPiece = std::move(other);
}
void sect_AddSection(std::unique_ptr<Section> &&section) {
// Check if the section already exists; if not, add it
if (Section *target = sect_GetSection(section->name); target) {
mergeSections(*target, std::move(section));
} else if (section->modifier == SECTION_UNION && sectTypeHasData(section->type)) {
fatal(
"Section \"%s\" is of type `%s`, which cannot be `UNION`ized",
section->name.c_str(),
section->typeInfo().name
);
} else {
sections.add(section->name, std::move(section));
}
}
Section *sect_GetSection(std::string const &name) {
auto index = sections.findIndex(name);
return index ? sections[*index].get() : nullptr;
}
static void doSanityChecks(Section &section) {
// Sanity check the section's type
if (section.type < 0 || section.type >= SECTTYPE_INVALID) {
// This is trapped early in RGBDS objects (because then the format is not parseable),
// which leaves SDAS objects.
error(
"Section \"%s\" has not been assigned a type by a linker script", section.name.c_str()
);
return;
}
bool bankModeError = false;
if (options.is32kMode && section.type == SECTTYPE_ROMX) {
if (section.isBankFixed && section.bank != 1) {
error(
"Section \"%s\" has type `ROMX`, which must be in bank 1 (if any) with option '-t'",
section.name.c_str()
);
bankModeError = true;
} else {
section.type = SECTTYPE_ROM0;
section.isBankFixed = false;
}
}
if (options.isWRAM0Mode && section.type == SECTTYPE_WRAMX) {
if (section.isBankFixed && section.bank != 1) {
error(
"Section \"%s\" has type `WRAMX`, which must be in bank 1 with options '-w' or "
"'-d'",
section.name.c_str()
);
bankModeError = true;
} else {
section.type = SECTTYPE_WRAM0;
section.isBankFixed = false;
}
}
if (options.isDmgMode && section.type == SECTTYPE_VRAM && section.isBankFixed
&& section.bank != 0) {
error(
"Section \"%s\" has type `VRAM`, which must be in bank 0 with option '-d'",
section.name.c_str()
);
bankModeError = true;
}
// Check if alignment is reasonable, this is important to avoid UB
// An alignment of zero is equivalent to no alignment, basically
if (section.isAlignFixed && section.alignMask == 0) {
section.isAlignFixed = false;
}
// The section's type is determined now, so we can get its type info
SectionTypeInfo const &typeInfo = section.typeInfo();
// Too large an alignment may not be satisfiable
if (section.isAlignFixed && (section.alignMask & typeInfo.startAddr)) {
error(
"Section \"%s\" has type `%s`, which cannot be aligned to $%04x bytes",
section.name.c_str(),
typeInfo.name,
section.alignMask + 1
);
}
uint32_t minbank = typeInfo.firstBank, maxbank = typeInfo.lastBank;
if (!bankModeError && section.isBankFixed
&& (section.bank < minbank || section.bank > maxbank)) {
error(
minbank == maxbank
? "Cannot place section \"%s\" in bank %" PRIu32 ", it must be %" PRIu32
: "Cannot place section \"%s\" in bank %" PRIu32 ", it must be between %" PRIu32
" and %" PRIu32,
section.name.c_str(),
section.bank,
minbank,
maxbank
);
}
// Check if section has a chance to be placed
if (section.size > typeInfo.size) {
error(
"Section \"%s\" is bigger than the max size for that type: $%" PRIx16 " > $%" PRIx16,
section.name.c_str(),
section.size,
typeInfo.size
);
}
// Translate loose constraints to strong ones when they're equivalent
if (minbank == maxbank) {
section.bank = minbank;
section.isBankFixed = true;
}
if (section.isAddressFixed) {
// It doesn't make sense to have both org and alignment set
if (section.isAlignFixed) {
if ((section.org & section.alignMask) != section.alignOfs) {
error(
"Section \"%s\"'s fixed address does not match its alignment",
section.name.c_str()
);
}
section.isAlignFixed = false;
}
// Ensure the target address is valid
if (section.org < typeInfo.startAddr || section.org > typeInfo.endAddr()) {
error(
"Section \"%s\"'s fixed address $%04" PRIx16 " is outside of range [$%04" PRIx16
"; $%04" PRIx16 "]",
section.name.c_str(),
section.org,
typeInfo.startAddr,
typeInfo.endAddr()
);
} else if (section.org + section.size > typeInfo.endAddr() + 1) {
error(
"Section \"%s\"'s end address $%04x is greater than last address $%04x",
section.name.c_str(),
section.org + section.size,
typeInfo.endAddr() + 1
);
}
}
// An alignment of 16 is impossible to output from RGBASM, since it's treated as
// fixing the address, but is still satisfiable. A fixed address different from the
// alignment offset would not be, but we checked for that already above.
if (section.isAlignFixed && section.alignMask == (1 << 16) - 1) {
assume(!section.isAddressFixed || section.org == section.alignOfs);
section.isAddressFixed = true;
section.org = section.alignOfs;
section.isAlignFixed = false;
section.alignMask = section.alignOfs = 0;
}
}
void sect_DoSanityChecks() {
sect_ForEach(doSanityChecks);
}