Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in x86

What happens when a computer program runs?

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

What is the difference between Trap and Interrupt?

What Every Programmer Should Know About Memory?

How does the ARM architecture differ from x86? [closed]

x86 arm

What is exactly the base pointer and stack pointer? To what do they point?

What is a retpoline and how does it work?

What does multicore assembly language look like?

assembly x86 cpu multicore smp

How to run a program without an operating system?

How to compile Tensorflow with SSE4.2 and AVX instructions?

Deoptimizing a program for the pipeline in Intel Sandybridge-family CPUs

How can I determine if a .NET assembly was built for x86 or x64?

What's the purpose of the LEA instruction?

assembly x86 x86-64 x86-16

Why does C++ code for testing the Collatz conjecture run faster than hand-written assembly?

Replacing a 32-bit loop counter with 64-bit introduces crazy performance deviations with _mm_popcnt_u64 on Intel CPUs

Why are elementwise additions much faster in separate loops than in a combined loop?