Author Topic: Very large ASM file - stalls nasm 2.11.02 and later  (Read 7576 times)

Offline infuscomus

  • Jr. Member
  • *
  • Posts: 2
Very large ASM file - stalls nasm 2.11.02 and later
« on: May 11, 2018, 07:19:32 PM »
I have a very large ASM file, about 71 megs - 2.2 million lines. I've found NASM 2.11.02 and later stall with this file, It just sits there forever. NASM 2.11.01 will work with it though.

Any idea how I can debug what is happening with NASM 2.11.02 and later?

Offline sal55

  • Jr. Member
  • *
  • Posts: 18
Re: Very large ASM file - stalls nasm 2.11.02 and later
« Reply #1 on: May 28, 2018, 08:34:47 PM »
I have a very large ASM file, about 71 megs - 2.2 million lines. I've found NASM 2.11.02 and later stall with this file, It just sits there forever. NASM 2.11.01 will work with it though.

Any idea how I can debug what is happening with NASM 2.11.02 and later?

I'm surprised any version managed to assemble it. I've had problems myself with files of 50K or 100K lines and bigger, in that it's just very slow. That is, a 100Kloc file might take a minute to assemble, which is unreasonable. (Other assemblers would take a fraction of a second.)

However I have noticed that when I synthesise files of 1Mloc, by having lots of repeated elements, the assembly time, while still slowish, becomes more reasonable. So there is something about the contents that slow it down. Perhaps your 2Mloc file is like that.

Suggest trying something like YASM (I only tried it briefly, as I'd already found another solution). If you persist with Nasm, at least use the -O0 option to reduce the number of passes. This might make it 40% faster.

Offline azagaros

  • Jr. Member
  • *
  • Posts: 14
Re: Very large ASM file - stalls nasm 2.11.02 and later
« Reply #2 on: June 04, 2018, 02:57:55 PM »
why are you making a file this large?  I really do not want to know.  I would heavily consider breaking up into modular pieces, such as shared libraries or other data abstract.   I am guessing you are running into memory constraints on the OS and the OS is compensating by using swap space.  The other side is the limitations of tools and large search tables or binary trees.  This plays into to the memory constraints of the OS and both processes will equal slowing down over time because of the amount of things swapped or searched.  The number of tasks that computer, or OS, would have the same effect, regardless how powerful the processor is, will eventually bog down the machine too.
« Last Edit: June 04, 2018, 04:21:37 PM by azagaros »

Offline sal55

  • Jr. Member
  • *
  • Posts: 18
Re: Very large ASM file - stalls nasm 2.11.02 and later
« Reply #3 on: June 05, 2018, 11:54:51 PM »
why are you making a file this large?  I really do not want to know.  I would heavily consider breaking up into modular pieces, such as shared libraries or other data abstract.   I am guessing you are running into memory constraints on the OS and the OS is compensating by using swap space.  The other side is the limitations of tools and large search tables or binary trees.  This plays into to the memory constraints of the OS and both processes will equal slowing down over time because of the amount of things swapped or searched.  The number of tasks that computer, or OS, would have the same effect, regardless how powerful the processor is, will eventually bog down the machine too.

I agree the OP should look into why their file is so big. Making it smaller should help.

But with the sorts of a machines people now have available, big files should not be a problem. I've just finished a compiler project where the multiple source files of an application are compiled into a single large .asm file. The largest real .asm file I have at present, is 330K lines (15% of the OP's file) and 7MB (10% of the OP's), but it assembles in 0.2 seconds and uses 0.03 GB memory (less than 1% of my machine's RAM).

However it's not possible to use Nasm for this, as it seems to scale badly with large inputs. If the OP's 2.2M lines are anything like my code, then it would need splitting up into 100 modules of 20K lines to bring down assembly times, and it still wouldn't be fast.

So if the file can't practically be reduced, I think it's necessary to look at alternative assemblers. (The OP didn't say how long the working Nasm took.)