Code Monkey home page Code Monkey logo

Comments (14)

PikalaxALT avatar PikalaxALT commented on May 14, 2024

This would certainly reduce a lot of ROM bloat, such as in Pokemon Crystal EN-US.

from rgbds.

AntonioND avatar AntonioND commented on May 14, 2024

I'm not sure if this would be possible in all cases. Example:

    SECTION "A", ROMX[$4000], BANK[1]
LABEL_A:
    SECTION "B", ROMX[$4000], BANK[2]
LABEL_B:
    SECTION "C", ROMX[$4000], BANK[3]
LABEL_C:
    SECTION "D", ROMX[$4000], BANK[4]
LABEL_D:

SECTION "Code", ROM0
Function: ; a = Bank to read from
    ld [$2000],a
    ld a,[LABEL_A]
    ret

But maybe for floating sections...

from rgbds.

ISSOtm avatar ISSOtm commented on May 14, 2024

Such sections could be specially marked as "preserve", couldn't they?

from rgbds.

JL2210 avatar JL2210 commented on May 14, 2024

Is there an IRC channel?

from rgbds.

ISSOtm avatar ISSOtm commented on May 14, 2024

#gbdev on EFNet, or the GBDev Discord server, why?

from rgbds.

JL2210 avatar JL2210 commented on May 14, 2024

from rgbds.

pinobatch avatar pinobatch commented on May 14, 2024

toxa on gbdev Discord reports that dropping unused sections (those not reachable from -s entry_label) still isn't implemented in ISSOtm's rewritten linker.

from rgbds.

JL2210 avatar JL2210 commented on May 14, 2024

I'm pretty sure it isn't a priority right now.

from rgbds.

Rangi42 avatar Rangi42 commented on May 14, 2024

This is not possible in general for non-floating sections, as AntonioND mentioned. People sometimes do write code that uses raw hex values for banks or addresses when they know what code/data to expect at those locations, so just looking at which labels are referenced wouldn't catch that.

There's also a case in pokecrystal where two data tables (for mon pics and Unown pics) are both orged to the same address in different banks, and only one label gets loaded into hl, but either table may be needed depending on which bank it switches to. And more generally, tricks like "I know hl == $4200 right now, so let's inc h to read the content I know is at $4300, which may not be referenced or labeled at all."

Perhaps floating sections could opt in to being left out if not referenced, like SECTION "Library Function Foo", ROMX, OPTIONAL, but even then the linker should print a notification if it gets omitted. (And any reference should count, whether it's ld hl, FunctionFoo or ld b, BANK("Library Function Foo") or dw FunctionFoo + 42.)

from rgbds.

pinobatch avatar pinobatch commented on May 14, 2024

We could assign -s - (or something like that) to mean treat every non-floating section as an entry label.

from rgbds.

aaaaaa123456789 avatar aaaaaa123456789 commented on May 14, 2024

Enabling a feature like this by default is downright insane; I don't think anyone was even proposing this. It's pretty clear something like this should only be enabled by a flag. Isn't there already a flag for this purpose (that perhaps doesn't work very well)?

from rgbds.

aaaaaa123456789 avatar aaaaaa123456789 commented on May 14, 2024

@Rangi42 labels like those are trivial to reference with an assert, and in fact that's a good idea anyway. (Adding assert(PokemonPicPointers == UnownPicPointers) or whatever the labels are to pokecrystal would probably be a smart call.)
That being said, assemblers/linkers automatically discarding code and data from assembly input by default is still insanity, and I don't think anyone would want that to be the default.

from rgbds.

Rangi42 avatar Rangi42 commented on May 14, 2024

@aaaaaa123456789 True, an assert would be ideal there (it falls under pret/pokecrystal#706), but the code is valid without one, and a "smart linker" should not break it.

It seems to me that since this would be a section-based feature, putting OPTIONAL instead of BANK[$XX] at the SECTION declaration would be a convenient method, since it relies on the developer to be explicit that they're not relying on the section. Rather than a -s linker flag that has to judge for all the sections (or at least for the floating ones).

from rgbds.

aaaaaa123456789 avatar aaaaaa123456789 commented on May 14, 2024

Maybe another section "kind", like we have SECTION UNION and SECTION FRAGMENT already?

from rgbds.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.