Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in assembly

Assembly: REP MOVS mechanism

assembly x86

Does one assembler instruction always execute atomically? [duplicate]

Handling calls to (potentially) far away ahead-of-time compiled functions from JITed code

How can I load values from memory without polluting the cache?

assembly caching x86

64-bit registers under 32-bit windows

assembly x86 x86-64

How to read input from STDIN in x86_64 assembly?

assembly stdin x86-64

Changing bios code/flashing the bios

How to embed LLVM assembly or intrinsics in C program with Clang?

assembly llvm clang embedding

Vectorizing with unaligned buffers: using VMASKMOVPS: generating a mask from a misalignment count? Or not using that insn at all

gcc assembly x86 sse avx

Why does GCC drop the frame pointer on 64-bit?

Does Java strictfp modifier have any effect on modern CPUs?

How to produce a minimal BIOS hello world boot sector with GCC that works from a USB stick on real hardware?

Why can't GCC assume that std::vector::size won't change in this loop?

c++ gcc assembly

GCC 4.4: Avoid range check on switch/case statement in gcc?

how multicore processors boot?

Fast sine/cosine for ARMv7+NEON: looking for testers…

Improving field get and set performance with ASM or Javassist

Which 2's complement integer operations can be used without zeroing high bits in the inputs, if only the low part of the result is wanted?

Why does this difference in asm matter for performance (in an un-optimized ptr++ vs. ++ptr loop)?

Why is typeA == typeB slower than typeA == typeof(TypeB)?

c# .net assembly x86-64