Tagged Questions
This tag is for assembly language programming questions not specific to any one processor. Please specify the processor or (instruction set) architecture (ISA) your question is related to as well as what assembler you are using. Also consider adding tags related the specific processor family, ARM, 6502, avr, etc.
128
votes
31answers
41k views
“Hello World” in less than 20 bytes [closed]
We have had an interesting competition once, where everyone would write their implementation of hello world program. One requirement was that is should be less than 20 bytes in compiled form. the ...
114
votes
34answers
8k 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 language, C in particular. ...
89
votes
11answers
4k views
Is 'switch' faster than 'if'?
Is a switch statement actually faster than an if statement?
I ran the code below on Visual Studio 2010's x64 C++ compiler with the /Ox flag:
#include <stdlib.h>
#include <stdio.h>
...
87
votes
4answers
2k views
how to achieve 4 flops per cycle
How can the theoretical peak performance of 4 floating point operations (double precision) per cycle be achieved on a modern x86-64 Intel cpu?
As far as I understand does it take 3 cycles for an sse ...
85
votes
11answers
2k views
How are everyday machines programmed?
I'm an undergraduate CS student, and I'm currently taking my required Operating Systems course. I originally thought the material would be quite dry, but to my surprise I'm really interested in it.
...
81
votes
18answers
4k views
Protecting executable from reverse engineering?
I've been contemplating how to protect my C/C++ code from disassembly and reverse engineering. Normally I would never condone this behavior myself in my code; however the current protocol I've been ...
76
votes
8answers
8k views
Help me understand this JavaScript exploit
I usually do not have difficulty to read JavaScript script but this one I can't figure out the logic. The code is from an Exploit that has been published 4 days ago. You can find it at milw0rm.
Here ...
72
votes
45answers
18k views
Is learning Assembly Language worth the effort?
Please explain/exemplify your answers.
If yes, what architecture do you recommend to get started with?
52
votes
29answers
4k views
Why aren't programs written in Assembly more often?
It seems to be a mainstream opinion that assembly programming takes longer and is more difficult to program in than a higher level language such as C. Therefore it seems to be recommend or assumed ...
49
votes
8answers
4k views
What does “multicore” assembly language look like?
Once upon a time, to write x86 assembler, for example, you would have instructions stating "load the EDX register with the value 5", "increment the EDX" register, etc.
With modern CPUs that have 4 ...
48
votes
8answers
3k views
Which is faster : if (bool) or if(int)?
Which value is better to use? Boolean true or Integer 1?
The above topic made me do some experiments with bool and int in if condition. So just out of curiosity I wrote this program:
int f(int ...
46
votes
6answers
22k views
x86 asm: What's the purpose of the LEA instruction?
For me, it just seems like a funky MOV. What's its purpose and when should I use it?
43
votes
20answers
4k views
How can I build a small operating system on an old desktop computer?
This might be in vain, as I know writing an operating system is unbearably complicated (especially by oneself).
I don't expect to build the next linux, or windows.
I know it will be horrible, and ...
40
votes
3answers
898 views
Why does GCC pad functions with NOPs?
I've been working with C for a short while and very recently started to get into ASM. When I compile a program:
int main(void)
{
int a = 0;
a += 1;
return 0;
}
The objdump disassembly has ...
40
votes
3answers
726 views
Is this “should not happen” crash an AMD Fusion CPU bug?
My company has started having a number of customers call in because our program is crashing with an access violation on their systems.
The crash happens in SQLite 3.6.23.1, which we ship as part of ...
40
votes
10answers
2k views
Why is x86 ugly? aka Why is x86 considered inferior when compared to others?
Recently I've been reading some SO archives and encountered statements against x86 architecture.
Why do we need different CPU architecture for server & mini/mainframe & mixed-core? says "PC ...
37
votes
37answers
4k views
Best program you have written in assembly language, so far? [closed]
Back to the golden days of assembly language.
As we know, assembly language is a low-level language with many hidden powers in it. If one can program well in it, many powerful and useful application ...
36
votes
15answers
7k views
Good x86 assembly book
I'm looking to teach myself basic hardware architecture; specifically, I'd like to learn x86 assembly for Linux or OSX. What books does this community recommend?
34
votes
7answers
5k views
Using GCC to produce readable assembly?
I was wondering how to use GCC on my C source file to dump a mnemonic version of the machine code so I could see what my code was being compiled into. You can do this with Java but I haven't been able ...
34
votes
28answers
4k views
Why do you program in assembly?
I have a question for all the hardcore low level hackers out there. I ran across this sentence in a blog. I don't really think the source matters (it's Haack if you really care) because it seems to ...
33
votes
3answers
802 views
If registers are so blazingly fast, why don't we have more of them?
In 32bit, we got 8 "general purpose" registers. With 64bit, the amount doubles, but it seems independent from the 64bit change itself.
Now, if registers are so fast (no memory access), why aren't ...
32
votes
10answers
4k views
Fastest way to calculate a 128-bit integer modulo a 64-bit integer
I have a 128-bit unsigned integer A and a 64-bit unsigned integer B. What's the fastest way to calculate A % B - that is the (64-bit) remainder from dividing A by B?
I'm looking to do this in either ...
31
votes
8answers
15k views
Resources for learning ARM assembly
I am looking for resources, either online tutorials or books, for learning ARM assembly. What would you recommend?
29
votes
23answers
6k views
Learning assembly
I decided to learn the Assembly language. The main reason to do so resides in being able to understand deassembled code and maybe being able to write more efficient parts of code(for example, through ...
28
votes
6answers
1k views
How does C code call assembly code (e.g. optimized strlen)?
I always read things about how certain functions within the C programming language are optimized by being written in assembly. Let me apologize if that sentence sounds a little misguided.
So, I'll ...
27
votes
12answers
1k views
Using Assembly Language in C/C++
I remember reading somewhere that to really optimize & speed up certain section of the code, programmers write that section in Assembly language. My questions are -
Is this practice still done? ...
27
votes
19answers
3k views
What's the purpose of the nop opcode?
I'm going through MSIL and noticing there are a lot of nop instructions. The MSDN article says they take no action and are used to fill space if the opcode is patched. They're used a lot more in debug ...
27
votes
10answers
14k views
How do you get assembler output from C/C++ source in gcc?
How does one do this?
If I want to analyze how something is getting compiled, how would I get the emitted assembly code?
26
votes
2answers
336 views
Why does compiler inlining produce slower code than manual inlining?
Background
The following critical loop of a piece of numerical software, written in C++, basically compares two objects by one of their members:
for(int j=n;--j>0;)
asd[j%16]=a.e<b.e;
a ...
25
votes
3answers
327 views
Why reading a volatile and writing to a field member is not scalable in Java?
Observe the following program written in Java (complete runnable version follows, but the important part of the program is in the snippet a little bit further below):
import java.util.ArrayList;
...
25
votes
11answers
1k views
How does an assembly instruction turn into voltage changes on the CPU?
I've been working in C and CPython for the past 3 - 5 years. Consider that my base of knowledge here.
If I were to use an assembly instruction such as MOV AL, 61h to a processor that supported it, ...
23
votes
2answers
24k views
What's a good C decompiler?
I am searching for a decompiler for a C program. The binary is a 32-bit Linux executable. Objdump works fine, so basically I am searching for something which attempts to reconstruct the C source from ...
23
votes
5answers
12k views
x86 Assembly - 'testl' eax against eax?
I am trying to understand some assembly.
Assembly as follows, I am interested in the testl line:
000319df 8b4508 movl 0x08(%ebp),%eax
000319e2 8b4004 movl 0x04(%eax),%eax
...
22
votes
7answers
770 views
How can adding a function call cause other symbols to become undefined when linking?
Hey Guys, I'm hoping someone will be able to help troubleshoot what I think is a linker script issue.
I'm encountering a strange problem after adding a call to a new function. Without the function ...
22
votes
8answers
3k views
What is your favourite anti-debugging trick?
At my previous employer we used a third party component which basically was just a DLL and a header file. That particular module handled printing in Win32. However, the company that made the component ...
21
votes
3answers
2k views
What's the point of LEA EAX, [EAX]?
LEA EAX, [EAX]
I encountered this instruction in a binary compiled with the Microsoft C compiler. It clearly can't change the value of EAX. Then why is it there at all?
21
votes
3answers
4k views
Why is SSE scalar sqrt(x) slower than rsqrt(x) * x?
I've been profiling some of our core math on an Intel Core Duo, and while looking at various approaches to square root I've noticed something odd: using the SSE scalar operations, it is faster to take ...
21
votes
8answers
16k views
What is exactly the base pointer and stack pointer? To what do they point?
Using this example coming from wikipedia, in which DrawSquare() calls DrawLine(),
could anyone explain me what the ebp and esp are in this context?
From what I see, I'd say the stack pointer ...
21
votes
5answers
2k views
C++ try/throw/catch => machine code
Mentally, I've always wondered how try/throw/catch looks behind the scenes, when the C++ compiles translates it to assembler. But since I never use it, I never got around to checking it out (some ...
21
votes
11answers
49k views
Is it possible to “decompile” a Windows .exe? Or at least view the Assembly?
A friend of mine downloaded some malware from Facebook, and I'm curious to see what it does without infecting myself. I know that you can't really decompile an .exe, but can I at least view it in ...
21
votes
4answers
10k views
How do you use gcc to generate assembly code in Intel syntax?
The gcc -S option will generate assembly code in AT&T syntax, is there a way to generate files in Intel syntax? Or is there a way to convert between the two?
21
votes
31answers
2k views
Is there a need to use assembly these days?
Many claim that, when performance is at a premium, it's sufficient to write and compile C code to get near-optimal code that is additionally quite portable. I don't see much of a assembly/assembler ...
21
votes
22answers
4k views
Should I learn Assembly programming? [closed]
I know this might seem like a duplicate post... but precisely what I am trying to compare here is the developers getting driven by zeal to create great web apps and profitable apps... to the spirit of ...
20
votes
8answers
2k views
How do I atomically swap 2 ints in C#?
What (if any) is the C# equivalent of the ASM command "XCHG".
With that command, which imo is a genuine exchange (unlike Interlocked.Exchange), I could simply atomically swap two ints, which is what ...
20
votes
5answers
477 views
Insight into how things get printed onto the screen (cout,printf) and origin of really complex stuff that I cant seem to find on textbooks
I've always wondered this, and still haven't found the answer. Whenever we use "cout" or "printf" how exactly is that printed on the screen?. How does the text come out as it does...(probably quite a ...
20
votes
4answers
2k views
Assembly - 32 bit vs 64 bit…?
I'm really wanting to learn assembly. I'm pretty good at c/c++, but want a better understanding of what's going on at a lower level.
I realize that asembly related questions have been asked before, ...
20
votes
11answers
11k views
How does the stack work in assembly language?
I'm currently trying to understand how the stack works, so I've decided teach myself some assembly language, I'm using this book:
http://savannah.nongnu.org/projects/pgubook/
I'm using Gas and ...
20
votes
8answers
5k views
Best resource for serious Commodore 64 programming
What is the best resource for serious Commodore 64 programming?
Assume that serious programming on the Commodore 64 is not done in BASIC V2 that ships with the Commodore 64.
I feel like most of the ...
19
votes
5answers
7k views
What is the purpose of the frame pointer?
I'm a beginner in assembly language and have noticed that the x86 code emitted by compilers usually keeps the frame pointer around even in release/optimized mode, when it could use the EBP register ...
18
votes
4answers
849 views
Debugging of a C program (Redis server)
Premise
Hi,
I received multiple reports from a Redis user that experienced server crashes, using a Redis stable release (latest, 2.4.6). The bug is strange since the user is not doing esoteric ...