Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in x86-64

Why is %eax zeroed before a call to printf?

Porting 32 bit C++ code to 64 bit - is it worth it? Why?

What registers are preserved through a linux x86-64 function call

Does it make any sense to use the LFENCE instruction on x86/x86_64 processors?

Intel 64, rsi and rdi registers

assembly x86-64

How does malloc work in a multithreaded environment?

c linux gcc malloc x86-64

Why does GCC call libc's sqrt() without using its result?

c++ gcc assembly x86-64

Difference between x86, x32, and x64 architectures?

What happens if you use the 32-bit int 0x80 Linux ABI in 64-bit code?

What does the endbr64 instruction actually do?

What is the difference between x64 and IA-64?

Is there a 128 bit integer in gcc?

c gcc x86-64 bigint 128-bit

What are the names of the new X86_64 processors registers?

Performance difference between Windows and Linux using Intel compiler: looking at the assembly

What is the purpose of the "PAUSE" instruction in x86?

How to use gdb with LD_PRELOAD

c linux gcc gdb x86-64

To learn assembly - should I start with 32 bit or 64 bit?

assembly x86 x86-64 low-level

Where is the x86-64 System V ABI documented?

Why is memcmp(a, b, 4) only sometimes optimized to a uint32 comparison?

Why is the construction of std::optional<int> more expensive than a std::pair<int, bool>?