diff options
author | pppp <pppp@yandex-team.ru> | 2022-02-10 16:51:52 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:51:52 +0300 |
commit | fcb328858da947c52819d89cea4a4357cc207ae4 (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb /util/system/context_i686.asm | |
parent | 2717b42639e035e1da0e7963a61d9fb71a3abcee (diff) | |
download | ydb-fcb328858da947c52819d89cea4a4357cc207ae4.tar.gz |
Restoring authorship annotation for <pppp@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system/context_i686.asm')
-rw-r--r-- | util/system/context_i686.asm | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/util/system/context_i686.asm b/util/system/context_i686.asm index dc864bc31e..11f8cecc8e 100644 --- a/util/system/context_i686.asm +++ b/util/system/context_i686.asm @@ -1,23 +1,23 @@ - [bits 32] - - %define MJB_BX 0 - %define MJB_SI 1 - %define MJB_DI 2 - %define MJB_BP 3 - %define MJB_SP 4 - %define MJB_PC 5 - %define MJB_RSP MJB_SP - %define MJB_SIZE 24 - - %define LINKAGE 4 - %define PCOFF 0 - %define PTR_SIZE 4 + [bits 32] + + %define MJB_BX 0 + %define MJB_SI 1 + %define MJB_DI 2 + %define MJB_BP 3 + %define MJB_SP 4 + %define MJB_PC 5 + %define MJB_RSP MJB_SP + %define MJB_SIZE 24 + + %define LINKAGE 4 + %define PCOFF 0 + %define PTR_SIZE 4 + + %define PARMS LINKAGE + %define JMPBUF PARMS + %define JBUF PARMS + %define VAL JBUF + PTR_SIZE - %define PARMS LINKAGE - %define JMPBUF PARMS - %define JBUF PARMS - %define VAL JBUF + PTR_SIZE - EXPORT __mylongjmp mov ecx, [esp + JBUF] mov eax, [esp + VAL] @@ -27,8 +27,8 @@ EXPORT __mylongjmp mov edi, [ecx + MJB_DI*4] mov ebp, [ecx + MJB_BP*4] mov esp, [ecx + MJB_SP*4] - jmp edx - + jmp edx + EXPORT __mysetjmp mov eax, [esp + JMPBUF] mov [eax + MJB_BX*4], ebx |