x86-assembly-cheat
x86-assembly-cheat copied to clipboard
MOVED TO: https://cirosantilli.com/linux-kernel-module-cheat/userland-assembly with code at https://github.com/cirosantilli/linux-kernel-module-cheat/tree/master/userland/arch/x86_64 SEE README. x86 I...
x86 Assembly Cheat
THIS REPO HAS MOVED TO: https://github.com/cirosantilli/linux-kernel-module-cheat#userland-assembly
All the most valuable content has already been moved: the bulk of the x86 instruction examples with assertions.
There is some stuff left here, e.g. 32-bit x86 and some useless prose. Maybe one day I'll migrate them, let's see.
No major new features are intended to be added here.
Notable advantages of LKMC repository include:
- a single unified cross arch setup for ARM and x86_64, with cross arch concepts all nicely factored out
- gem5 support. This is because we have integration of QEMU / gem5 / Buildroot setups already done there
- parallel testing. Mostly because the build system there is Python, which is more flexible.
- other stuff I can't remember right now. That setup just has a ton of features, and will continue to get more and more ;-)
The bulk of this repo had been written a long time ago, and so it was semi-crappy. All content that moved to LKMC was reviewed and improved.
In particular, the use of NASM was a bad choice from before I understood that GCC uses GNU GAS assembly by default. I intend to just migrate NASM examples to GAS, and let NASM die: if you really, want NASM, please checkout just before the migration. NASM devs are cool, but GCC wins.
However, the LKMC infrastructure is already working and completely superior, all that is left if to migrate some missing key concept examples there.
Old README
x86 IA-32 and x86-64 userland minimal examples tutorial. Hundreds of runnable asserts. Nice GDB setup. IO done with libc, so OS portable in theory. NASM and GAS covered. Tested in Ubuntu 18.04. Containers (ELF), linking, calling conventions. System land cheat at: https://github.com/cirosantilli/x86-bare-metal-examples, ARM cheat at: https://github.com/cirosantilli/arm-assembly-cheat
- Getting started
- IA-32
- Base concepts
-
Registers
- Segment registers
- Endianess
-
Registers
- Instructions
- Data transfer instructions
- Synchronization
- Stack data transfer instructions
- pusha
- Data transfer instructions
-
Calling conventions
- cdecl
- cdecl examples
- stdcall
-
Linux
- min
- hello_world
- hello_world_min
- stack_top.asm
- C from assembly
- Custom entry
- Custom entry GCC
- Base concepts
-
x86-64
- x86_64 general principles
- cmp sign extend
- x86_64 instructions
- movabs
- main
- x86_64 Linux system calls
- x86_64 calling convention
- C from assembly
- x86_64 C from assembly hello
- x86_64 printf
- x86_64 general principles
-
Assemblers
-
GAS
- GAS Linux hello world
- Symbol scope
- Local symbol
- Local label
- Current address
- Directives
- .ascii
- .asciz
- .equ
- .extern
- .gasversion.
- .global
- .type
- Macros
-
.macro
- .altmacro
- .irp
-
.macro
- Bibliography
-
NASM
-
RAM
- Symbol colon
- local labels
- equ
- ptr
- current address
- Preprocessor
- %define
- %if
- %include
- comments
-
RAM
-
GAS
- Introduction
- How to learn
-
Instruction sets
-
Other architectures
- ARM
- Microcontrollers
-
RISC vs CISC
- Microcode
- System vs application programming
- Flynn's Taxonomy
-
Other architectures
- Pros and cons of assembly
- Intel processor history
-
Intel vs AT&T syntax
- intel2gas
- Implementations
- Extensions
-
CPU architecture
- CPU Optimizations
- CPU bugs
- Cache
-
Instruction level parallelism
- Pipeline
- Branch prediction
- Superscalar
- VLIW
- SIMT
- CPU benchmarks
- Containers
- Dynamic libraries
-
ld-linux.so
- ldd
-
ld-linux.so
- Compiler generated
-
Binutils
-
ld
- Linker scripts
- readelf
- objcopy
- objdump
- size
-
ld
- Related tutorials
- Bibliography