Compare commits
No commits in common. "38b0c5ee6e8acef51eef756b2d976f941987f67f" and "08f7aa05c2bbb785e17f769db6c0f9355b22f33e" have entirely different histories.
38b0c5ee6e
...
08f7aa05c2
221
main.tex
221
main.tex
@ -1,13 +1,11 @@
|
|||||||
\documentclass[a4paper]{article}
|
\documentclass[a4paper,twocolumn]{article}
|
||||||
|
|
||||||
\usepackage{booktabs}
|
|
||||||
\usepackage{baskervald}
|
\usepackage{baskervald}
|
||||||
\usepackage{courierten}
|
\usepackage{courierten}
|
||||||
\usepackage{cuted}
|
\usepackage{cuted}
|
||||||
\usepackage[hmargin=2.5cm,vmargin=3.5cm]{geometry}
|
\usepackage[margin=2cm]{geometry}
|
||||||
\usepackage{helvet}
|
\usepackage{helvet}
|
||||||
\usepackage{mathtools}
|
\usepackage{mathtools}
|
||||||
\usepackage{multicol}
|
|
||||||
\usepackage{sectsty}
|
\usepackage{sectsty}
|
||||||
\usepackage{tabularx}
|
\usepackage{tabularx}
|
||||||
|
|
||||||
@ -18,140 +16,107 @@
|
|||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
\begin{center}
|
\begin{strip}
|
||||||
\LARGE \bfseries AMD64 Cheatsheet
|
\centering \LARGE \bfseries AMD64 Cheatsheet
|
||||||
\vspace{1em}
|
\vspace{1em}
|
||||||
\end{center}
|
\end{strip}
|
||||||
|
|
||||||
\begin{multicols}{2}
|
\newlength{\colwidth}
|
||||||
|
\setlength{\colwidth}{\linewidth}
|
||||||
|
\addtolength{\colwidth}{-0.5\columnsep}
|
||||||
|
|
||||||
\newlength{\colwidth}
|
\section{Instructions}
|
||||||
\setlength{\colwidth}{\linewidth}
|
|
||||||
\addtolength{\colwidth}{-0.5\columnsep}
|
|
||||||
|
|
||||||
\section{Instructions}
|
\begin{tabularx}{\colwidth}{|>{\ttfamily}l|>{$}X<{$}|}
|
||||||
|
\hline
|
||||||
|
add \ S,D & D \leftarrow S + D \\ \hline
|
||||||
|
sub \ S,D & D \leftarrow D - S \\ \hline
|
||||||
|
neg \ D & D \leftarrow -D \\ \hline
|
||||||
|
inc \ D & D \leftarrow D + 1 \\ \hline
|
||||||
|
dec \ D & D \leftarrow D - 1 \\ \hline
|
||||||
|
imul S,D & D \leftarrow S \times D \\ \hline
|
||||||
|
idiv S & \mathtt{rax} \leftarrow \lfloor\mathtt{rdx}:\mathtt{rax} \div S\rfloor \\
|
||||||
|
& \mathtt{rdx} \leftarrow (\mathtt{rdx}:\mathtt{rax})\mod{S} \\ \hline
|
||||||
|
\hline
|
||||||
|
and S,D & D \leftarrow S \mathbin{\&} D \\ \hline
|
||||||
|
or \ S,D & D \leftarrow S \mathbin{|} D \\ \hline
|
||||||
|
xor S,D & D \leftarrow S \wedge D \\ \hline
|
||||||
|
not D & D \leftarrow \mathord{\sim} D \\ \hline
|
||||||
|
sal n,D & D \leftarrow D \ll n \\ \hline
|
||||||
|
shr n,D & D \leftarrow D \gg n \hspace{1em} \textrm{(logical)} \\ \hline
|
||||||
|
sar n,D & D \leftarrow D \gg n \hspace{1em} \textrm{(arithmetic)} \\ \hline
|
||||||
|
\hline
|
||||||
|
lea S,D & D \leftarrow \mathrm{addressof}(S) \\ \hline
|
||||||
|
mov S,D & D \leftarrow S \\ \hline
|
||||||
|
\hline
|
||||||
|
cmp \ A,B & B - A \hspace{1em} \textrm{(setting cond. flags)} \\ \hline
|
||||||
|
test A,B & A \mathbin{\&} B \hspace{1em} \textrm{(setting cond. flags)} \\ \hline
|
||||||
|
\hline
|
||||||
|
jmp l & \textrm{jump unconditionally} \\ \hline
|
||||||
|
je \ l & \textrm{jump if equal} \\ \hline
|
||||||
|
jne l & \textrm{jump if not equal} \\ \hline
|
||||||
|
js \ l & \textrm{jump if negative} \\ \hline
|
||||||
|
jns l & \textrm{jump if non-negative} \\ \hline
|
||||||
|
jg \ l & \textrm{jump if greater} \\ \hline
|
||||||
|
jge l & \textrm{jump if greater or equal} \\ \hline
|
||||||
|
jl \ l & \textrm{jump if lesser} \\ \hline
|
||||||
|
jle l & \textrm{jump if lesser or equal} \\ \hline
|
||||||
|
ja \ l & \textrm{jump if above} \\ \hline
|
||||||
|
jae l & \textrm{jump if above or equal} \\ \hline
|
||||||
|
jb \ l & \textrm{jump if below} \\ \hline
|
||||||
|
jbe l & \textrm{jump if below or equal} \\ \hline
|
||||||
|
\hline
|
||||||
|
push S & \mathtt{rsp} \leftarrow \mathtt{rsp} - \mathrm{sizeof}(S) \\
|
||||||
|
& \mathrm{at}(\mathtt{rsp}) \leftarrow S \\ \hline
|
||||||
|
pop \ D & D \leftarrow \mathrm{at}(\mathtt{rsp}) \\
|
||||||
|
& \mathtt{rsp} \leftarrow \mathtt{rsp} + \mathrm{sizeof}(S) \\ \hline
|
||||||
|
callq l & \textrm{push instruction pointer then jump} \\ \hline
|
||||||
|
retq & \textrm{pop to instruction pointer} \\ \hline
|
||||||
|
\end{tabularx}
|
||||||
|
|
||||||
\noindent\begin{tabularx}{\colwidth}{>{\ttfamily}l>{\ttfamily}l>{$}X<{$}}
|
\vspace{0.5em}
|
||||||
\toprule
|
|
||||||
\multicolumn{3}{>{\sffamily\bfseries}c}{Arithmetic \& Logic} \\
|
|
||||||
\midrule
|
|
||||||
add & S,D & D \leftarrow S + D \\
|
|
||||||
sub & S,D & D \leftarrow D - S \\
|
|
||||||
neg & D & D \leftarrow -D \\
|
|
||||||
inc & D & D \leftarrow D + 1 \\
|
|
||||||
dec & D & D \leftarrow D - 1 \\
|
|
||||||
imul & S,D & D \leftarrow S \times D \\
|
|
||||||
idiv & S & \mathtt{rax} \leftarrow \lfloor\mathtt{rdx}:\mathtt{rax} \div S\rfloor \\
|
|
||||||
& & \mathtt{rdx} \leftarrow (\mathtt{rdx}:\mathtt{rax})\mod{S} \\
|
|
||||||
and & S,D & D \leftarrow S \mathbin{\&} D \\
|
|
||||||
or & S,D & D \leftarrow S \mathbin{|} D \\
|
|
||||||
xor & S,D & D \leftarrow S \wedge D \\
|
|
||||||
not & D & D \leftarrow \mathord{\sim} D \\
|
|
||||||
sal & n,D & D \leftarrow D \ll n \\
|
|
||||||
shr & n,D & D \leftarrow D \gg n \hspace{1em} \textrm{(logical)} \\
|
|
||||||
sar & n,D & D \leftarrow D \gg n \hspace{1em} \textrm{(arithmetic)} \\
|
|
||||||
\midrule
|
|
||||||
\multicolumn{3}{>{\sffamily\bfseries}c}{Data transfer} \\
|
|
||||||
\midrule
|
|
||||||
lea & S,D & D \leftarrow \mathrm{addressof}(S) \\
|
|
||||||
mov & S,D & D \leftarrow S \\
|
|
||||||
\midrule
|
|
||||||
\multicolumn{3}{>{\sffamily\bfseries}c}{Conditionals \& Branches} \\
|
|
||||||
\midrule
|
|
||||||
cmp & A,B & B - A \hspace{1em} \textrm{(setting cond. flags)} \\
|
|
||||||
test & A,B & A \mathbin{\&} B \hspace{1em} \textrm{(setting cond. flags)} \\
|
|
||||||
jmp & l & \textrm{jump to \texttt{l} unconditionally} \\
|
|
||||||
je & l & \textrm{jump to \texttt{l} if equal} \\
|
|
||||||
jne & l & \textrm{jump to \texttt{l} if not equal} \\
|
|
||||||
js & l & \textrm{jump to \texttt{l} if negative} \\
|
|
||||||
jns & l & \textrm{jump to \texttt{l} if non-negative} \\
|
|
||||||
jg & l & \textrm{jump to \texttt{l} if greater} \\
|
|
||||||
jge & l & \textrm{jump to \texttt{l} if greater or equal} \\
|
|
||||||
jl & l & \textrm{jump to \texttt{l} if lesser} \\
|
|
||||||
jle & l & \textrm{jump to \texttt{l} if lesser or equal} \\
|
|
||||||
ja & l & \textrm{jump to \texttt{l} if above} \\
|
|
||||||
jae & l & \textrm{jump to \texttt{l} if above or equal} \\
|
|
||||||
jb & l & \textrm{jump to \texttt{l} if below} \\
|
|
||||||
jbe & l & \textrm{jump to \texttt{l} if below or equal} \\
|
|
||||||
\midrule
|
|
||||||
\multicolumn{3}{>{\sffamily\bfseries}c}{Stack operations} \\
|
|
||||||
\midrule
|
|
||||||
push & S & \mathtt{rsp} \leftarrow \mathtt{rsp} - \mathrm{sizeof}(S) \\
|
|
||||||
& & \mathrm{at}(\mathtt{rsp}) \leftarrow S \\
|
|
||||||
pop & D & D \leftarrow \mathrm{at}(\mathtt{rsp}) \\
|
|
||||||
& & \mathtt{rsp} \leftarrow \mathtt{rsp} + \mathrm{sizeof}(S) \\
|
|
||||||
callq & l & \textrm{push \texttt{rip} then jump to \texttt{l}} \\
|
|
||||||
retq & & \textrm{pop to \texttt{rip}} \\
|
|
||||||
\bottomrule
|
|
||||||
\end{tabularx}
|
|
||||||
|
|
||||||
\noindent\begin{tabularx}{\colwidth}{lX}
|
\noindent\begin{tabularx}{\colwidth}{|c|l|c|c|X|}
|
||||||
\toprule
|
\multicolumn{2}{c}{\textbf{Suffixes}} & \multicolumn{1}{c}{} & \multicolumn{2}{c}{\textbf{Condition flags}} \\ \cline{1-2} \cline{4-5}
|
||||||
\multicolumn{2}{>{\sffamily\bfseries}c}{Addressing Modes} \\
|
b & 8 bits & & ZF & Zero \\ \cline{1-2} \cline{4-5}
|
||||||
\midrule
|
w & 16 bits & & SF & Sign (set on negative) \\ \cline{1-2} \cline{4-5}
|
||||||
Immediate & \texttt{\$C} \\
|
l & 32 bits & & CF & Carry (unsigned overflow) \\ \cline{1-2} \cline{4-5}
|
||||||
Register & \texttt{\%R} \\
|
q & 64 bits & & OF & Overflow (signed overflow) \\ \cline{1-2} \cline{4-5}
|
||||||
Memory & \texttt{[C\textsubscript{d}](\%R\textsubscript{b}[,\%R\textsubscript{i}[,C\textsubscript{s}])} \\
|
\end{tabularx}
|
||||||
\bottomrule
|
|
||||||
\end{tabularx}
|
|
||||||
|
|
||||||
\[\textrm{Memory Address} = C_d + R_b + C_sR_i\]
|
\section{Addressing Modes}
|
||||||
|
|
||||||
\noindent\begin{center}
|
\begin{tabularx}{\colwidth}{|l|X|}
|
||||||
\begin{tabular}{cl}
|
\hline
|
||||||
\toprule
|
Immediate & \texttt{\$C} \\ \hline
|
||||||
\multicolumn{2}{>{\sffamily\bfseries}c}{Suffixes} \\
|
Register & \texttt{\%R} \\ \hline
|
||||||
\midrule
|
Memory & \texttt{[C\textsubscript{d}](\%R\textsubscript{b}[,\%R\textsubscript{i}[,C\textsubscript{s}])} \\ \hline
|
||||||
b & 8 bits \\
|
\end{tabularx}
|
||||||
w & 16 bits \\
|
|
||||||
l & 32 bits \\
|
|
||||||
q & 64 bits \\
|
|
||||||
\bottomrule
|
|
||||||
\end{tabular}
|
|
||||||
\hspace{1em}
|
|
||||||
\begin{tabular}{cl}
|
|
||||||
\toprule
|
|
||||||
\multicolumn{2}{>{\sffamily\bfseries}c}{Condition Flags} \\
|
|
||||||
\midrule
|
|
||||||
ZF & Zero \\
|
|
||||||
SF & Sign (set on negative) \\
|
|
||||||
CF & Carry \\
|
|
||||||
OF & Overflow \\
|
|
||||||
\bottomrule
|
|
||||||
\end{tabular}
|
|
||||||
\end{center}
|
|
||||||
|
|
||||||
\section{Registers}
|
\vspace{0.5em}
|
||||||
|
|
||||||
\begin{tabularx}{\colwidth}{>{\ttfamily}c>{\ttfamily}c>{\ttfamily}c>{\ttfamily}cX}
|
\[\mathrm{address} = C_d + R_b + C_sR_i\]
|
||||||
\toprule
|
|
||||||
\multicolumn{5}{>{\sffamily\bfseries}c}{Standard} \\
|
|
||||||
\midrule
|
|
||||||
rax & eax & ax & al & Accumulator \\
|
|
||||||
rbx & ebx & bx & bl & DS data pointer \\
|
|
||||||
rcx & ecx & cx & cl & Counter \\
|
|
||||||
rdx & edx & dx & dl & I/O pointer \\
|
|
||||||
rsi & esi & si & sil & Source pointer \\
|
|
||||||
rdi & edi & di & dil & Dest. pointer \\
|
|
||||||
\midrule
|
|
||||||
\multicolumn{5}{>{\sffamily\bfseries}c}{Stack} \\
|
|
||||||
\midrule
|
|
||||||
rsp & esp & sp & spl & Stack pointer \\
|
|
||||||
rbp & ebp & bp & bpl & Base pointer \\
|
|
||||||
\midrule
|
|
||||||
\multicolumn{5}{>{\sffamily\bfseries}c}{64-bit Mode Only} \\
|
|
||||||
\midrule
|
|
||||||
r8 & r8d & r8w & r8b & \multicolumn{1}{c}{\textendash} \\
|
|
||||||
r9 & r9d & r9w & r9b & \multicolumn{1}{c}{\textendash} \\
|
|
||||||
r10 & r10d & r10w & r10b & \multicolumn{1}{c}{\textendash} \\
|
|
||||||
r11 & r11d & r11w & r11b & \multicolumn{1}{c}{\textendash} \\
|
|
||||||
r12 & r12d & r12w & r12b & \multicolumn{1}{c}{\textendash} \\
|
|
||||||
r13 & r13d & r13w & r13b & \multicolumn{1}{c}{\textendash} \\
|
|
||||||
r14 & r14d & r14w & r14b & \multicolumn{1}{c}{\textendash} \\
|
|
||||||
r15 & r15d & r15w & r15b & \multicolumn{1}{c}{\textendash} \\
|
|
||||||
\bottomrule
|
|
||||||
\end{tabularx}
|
|
||||||
|
|
||||||
\end{multicols}
|
\section{Registers}
|
||||||
|
|
||||||
|
\begin{tabularx}{\colwidth}{|>{\ttfamily}l|>{\ttfamily}l|>{\ttfamily}l|>{\ttfamily}l|X|}
|
||||||
|
\hline
|
||||||
|
rax & eax & ax & al & accumulator \\ \hline
|
||||||
|
rbx & ebx & bx & bl & data pointer \\ \hline
|
||||||
|
rcx & ecx & cx & cl & counter \\ \hline
|
||||||
|
rdx & edx & dx & dl & I/O pointer \\ \hline
|
||||||
|
rsi & esi & si & sil & source pointer \\ \hline
|
||||||
|
rdi & edi & di & dil & destination pointer \\ \hline
|
||||||
|
rsp & esp & sp & spl & stack pointer \\ \hline
|
||||||
|
rbp & ebp & bp & bpl & base pointer \\ \hline
|
||||||
|
r8 & r8d & r8w & r8b & general purpose \\ \hline
|
||||||
|
r9 & r9d & r9w & r9b & general purpose \\ \hline
|
||||||
|
r10 & r10d & r10w & r10b & general purpose \\ \hline
|
||||||
|
r11 & r11d & r11w & r11b & general purpose \\ \hline
|
||||||
|
r12 & r12d & r12w & r12b & general purpose \\ \hline
|
||||||
|
r13 & r13d & r13w & r13b & general purpose \\ \hline
|
||||||
|
r14 & r14d & r14w & r14b & general purpose \\ \hline
|
||||||
|
r15 & r15d & r15w & r15b & general purpose \\ \hline
|
||||||
|
\end{tabularx}
|
||||||
|
|
||||||
\end{document}
|
\end{document}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user