Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in assembly

What is the purpose of XORing a register with itself? [duplicate]

assembly x86

What does `dword ptr` mean?

assembly x86 dword pointers

What is the meaning of "non temporal" memory accesses in x86

x86 sse assembly

How can I see the assembly code for a C++ program?

c++ assembly disassembly

How does this milw0rm heap spraying exploit work?

How are everyday machines programmed? [closed]

Why do x86-64 instructions on 32-bit registers zero the upper part of the full 64-bit register?

What is the best way to set a register to zero in x86 assembly: xor, mov or and?

Why do ARM chips have an instruction with Javascript in the name (FJCVTZS)?

javascript assembly arm

How do you use gcc to generate assembly code in Intel syntax?

gcc x86 gnu intel assembly

Can num++ be atomic for 'int num'?

What is the difference between MOV and LEA?

What are the calling conventions for UNIX & Linux system calls (and user-space functions) on i386 and x86-64

The point of test %eax %eax [duplicate]

assembly x86 att

Why does GCC generate such radically different assembly for nearly the same C code?

Is inline assembly language slower than native C++ code?

c++ c performance assembly

Show current assembly instruction in GDB

assembly gdb

Protecting executable from reverse engineering?

c++ c obfuscation assembly

Why aren't programs written in Assembly more often? [closed]

Why would introducing useless MOV instructions speed up a tight loop in x86_64 assembly?