Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in assembly

What does multicore assembly language look like?

assembly x86 cpu multicore smp

How to run a program without an operating system?

Why does Java switch on contiguous ints appear to run faster with added cases?

Is it possible to "decompile" a Windows .exe? Or at least view the Assembly?

Using GCC to produce readable assembly?

c gcc assembly

How do you get assembler output from C/C++ source in gcc?

c++ c debugging gcc assembly

When is assembly faster than C? [closed]

c performance assembly

How do I achieve the theoretical maximum of 4 FLOPs per cycle?

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

Is < faster than <=?

Why doesn't GCC optimize a*a*a*a*a*a to (a*a*a)*(a*a*a)?