Tagged Questions

3
votes
2answers
44 views

Which assemblers currently support the AVX instruction set?

I'd like to start and play with some AVX (advanced vector extension) instructions. I know Intel provides an emulator to test software containing these instructions (see this questi …
6
votes
10answers
235 views

What is the best way to go about writing a simple x86 assembler?

I'm interested in writing an x86 assembler for a hobby project. At first it seemed fairly straight forward to me but the more I read into it, the more unanswered questions I fin …
56
votes
31answers
3k views

When is assembler faster than C?

One of the stated reasons for knowing assembler is that, on occasion, it can be employed to write code that will be more performant than writing that code in a higher-level languag …
2
votes
3answers
195 views

Writing an z80 assembler - Lexing ASM and building a parse tree using composition?

Hi guys, I'm very new to the concept of writing an assembler and even after reading a great deal of material, I'm still having difficulties wrapping my head around a couple of conc …
4
votes
6answers
235 views

gas vs. nasm: which assembler produces the best code?

Both tools translate assembly instructions directly into machine code, but is it possible to determine which one produces the fastest and cleanest code?
3
votes
3answers
228 views

Z80 ASM BNF structure… I’m am on the right track?

I'm currently trying to get to grips with BNF and attempting to assemble some Z80 ASM code. Since I'm new to both fields So my question is, Am I even on the right track? I am curre …
2
votes
1answer
66 views

Definition of fix-up?

I've seen this term in the Python Lisp compiler and some C linker's sources. My guess is that a fix-up is just some wrapper around an Assembly routine that makes sure the alignmen …
1
vote
8answers
344 views

Is it possible to compile assembly code in MSVC++?

Is it possible to create, edit, link, compile (is compile the word?) etc. assembly code in MSVC++? Also, if it's not possible, how can I create an .exe out of plain text, ie: conv …
6
votes
5answers
577 views

How do modern compilers use mmx/3dnow/sse instructions?

I've been reading up on the x86 instruction set extensions, and they only seem useful in some quite specific circumstances (eg HADDPD - (Horizontal-Add-Packed-Double) in SSE3). The …
1
vote
5answers
202 views

“Assembly” vs. “Assembler”

I've been taught that "assembly" is what you write in your files, to have your "assembler" convert it into binary code. But I see these two terms mixed and matched in various work …
4
votes
12answers
595 views

Which x86 assembler do you use?

For anyone who works with x86 assembly, I'm curious which assembler you use. Preferably, the name should be an acronym and end in "ASM" =)
1
vote
2answers
127 views

Is IMUL AX valid?

Hi all, I spent last hour googling, trying to find out if IMUL AX is valid command in 80x86 assembler. Sorry for not trying out, I just don't have tools at PC I'm currently using. …
2
votes
2answers
294 views

compile AMR-nb codec with RVCT for WinCE/Window Mobile

Hello everybody, I'm working on amr speech codec (porting/optimization) I have an arm (for WinCE) optimized version from voiceage and I use it as a reference in performance testing …
2
votes
9answers
282 views

What are good or interesting Assembler-like languages, but at a higher level?

I've been looking at L.in.oleum and am intrigued by it's mix of higher-level constructs (loops, dynamic variables) with low-level assembler power (registers). Are there other lan …
5
votes
6answers
379 views

Why do programmers confuse the term “assembler” with “assembly”?

As programmers we need to be precise with our verbal and written communication. Why do so many programmers confuse the term "assembler" (the object code generator) with "assembly" …

1 2 3 next
15 30 50 per page