nihonium
/
mipt_clang
Archived
1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

30 lines
949 B
Markdown

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# Notices
## X86
* cmovXX (перемещение с условием)
* setXX (установка бита с условием)
* аргументы через стек в обратном порядке
* удаление из стека лежит на вызывающем
* результат работы - в al, ax, eax (стандартные типы)
* дробные - в регистрах сопроцессора
* cdecl (декларация языка Си)
* push/pop - стек
* base pointer - для доступа к локальным переменным
```
printf(str, x, y)
---
push L1
push dword [y]
push dword [x]
push str
call printf
---
after call:
L1: add esp, 12 ; 3 * 4
---
result in eax register (number of printed arguments)
```
* в стек помещается сначала адрес возврата (адрес, откуда вызвали, плюс длина данной инструкции)