diff options
| author | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-18 00:31:54 +0200 |
|---|---|---|
| committer | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-18 00:31:54 +0200 |
| commit | 268a53de823a6750d6256ee1fb1e7707b4b45740 (patch) | |
| tree | 42c1799a9a82b2f7d9790ee9fe181d72a7274751 /device/lib/stm8/qsort.asm | |
| download | sdcc-gas-268a53de823a6750d6256ee1fb1e7707b4b45740.tar.gz | |
sdcc-3.9.0 fork implementing GNU assembler syntax
This fork aims to provide better support for stm8-binutils
Diffstat (limited to 'device/lib/stm8/qsort.asm')
| -rw-r--r-- | device/lib/stm8/qsort.asm | 169 |
1 files changed, 169 insertions, 0 deletions
diff --git a/device/lib/stm8/qsort.asm b/device/lib/stm8/qsort.asm new file mode 100644 index 0000000..f425ea9 --- /dev/null +++ b/device/lib/stm8/qsort.asm @@ -0,0 +1,169 @@ +;-------------------------------------------------------- +; File Created by SDCC : free open source ANSI-C Compiler +; Version 3.9.3 #11345 (Linux) +;-------------------------------------------------------- + .module qsort + .optsdcc -mstm8 + +;-------------------------------------------------------- +; Public variables in this module +;-------------------------------------------------------- + .globl _qsort +;-------------------------------------------------------- +; ram data +;-------------------------------------------------------- + .area DATA +;-------------------------------------------------------- +; ram data +;-------------------------------------------------------- + .area INITIALIZED +;-------------------------------------------------------- +; absolute external ram data +;-------------------------------------------------------- + .area DABS (ABS) + +; default segment ordering for linker + .area HOME + .area GSINIT + .area GSFINAL + .area CONST + .area INITIALIZER + .area CODE + +;-------------------------------------------------------- +; global & static initialisations +;-------------------------------------------------------- + .area HOME + .area GSINIT + .area GSFINAL + .area GSINIT +;-------------------------------------------------------- +; Home +;-------------------------------------------------------- + .area HOME + .area HOME +;-------------------------------------------------------- +; code +;-------------------------------------------------------- + .area CODE +; ../qsort.c: 33: static void swap(void *restrict dst, void *restrict src, size_t n) +; ----------------------------------------- +; function swap +; ----------------------------------------- +_swap: + sub sp, #6 +; ../qsort.c: 35: unsigned char *restrict d = dst; + ldw x, (0x09, sp) +; ../qsort.c: 36: unsigned char *restrict s = src; + ldw y, (0x0b, sp) +; ../qsort.c: 38: while(n--) + ldw (0x03, sp), y + ldw y, (0x0d, sp) + ldw (0x05, sp), y +00101$: + ldw y, (0x05, sp) + ldw (0x01, sp), y + ldw y, (0x05, sp) + decw y + ldw (0x05, sp), y + ldw y, (0x01, sp) + jreq 00104$ +; ../qsort.c: 40: unsigned char tmp = *d; + ld a, (x) + ld (0x02, sp), a +; ../qsort.c: 41: *d = *s; + ldw y, (0x03, sp) + ld a, (y) + ld (x), a +; ../qsort.c: 42: *s = tmp; + ldw y, (0x03, sp) + ld a, (0x02, sp) + ld (y), a +; ../qsort.c: 43: d++; + incw x +; ../qsort.c: 44: s++; + ldw y, (0x03, sp) + incw y + ldw (0x03, sp), y + jra 00101$ +00104$: +; ../qsort.c: 46: } + addw sp, #6 + ret +; ../qsort.c: 48: void qsort(void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *) __reentrant) +; ----------------------------------------- +; function qsort +; ----------------------------------------- +_qsort: + sub sp, #12 +; ../qsort.c: 50: unsigned char *b = base; + ldw y, (0x0f, sp) + ldw (0x0b, sp), y + ldw (0x01, sp), y +; ../qsort.c: 52: if(nmemb <= 1) + ldw x, (0x11, sp) + cpw x, #0x0001 +; ../qsort.c: 53: return; + jrule 00112$ +; ../qsort.c: 55: for(unsigned char *i = base; i < b + nmemb * size; i += size) + ldw y, (0x0b, sp) + ldw (0x03, sp), y + ldw y, (0x13, sp) + ldw (0x05, sp), y + ldw x, y + pushw x + ldw x, (0x13, sp) + pushw x + call __mulint + addw sp, #4 + addw x, (0x01, sp) + ldw (0x07, sp), x +00110$: + ldw x, (0x03, sp) + cpw x, (0x07, sp) + jrnc 00112$ +; ../qsort.c: 57: for(unsigned char *j = i; (j > b) && (*compar)(j, j - size) < 0; j -= size) + ldw y, (0x03, sp) +00107$: + exgw x, y + cpw x, (0x01, sp) + exgw x, y + jrule 00111$ + ldw x, y + subw x, (0x05, sp) + ldw (0x09, sp), x + ldw (0x0b, sp), y + pushw x + ldw x, (0x0d, sp) + pushw x + ldw x, (0x19, sp) + call (x) + addw sp, #4 + tnzw x + jrpl 00111$ +; ../qsort.c: 58: swap(j, j - size, size); + ldw x, (0x09, sp) + ldw y, (0x05, sp) + pushw y + pushw x + ldw x, (0x0f, sp) + pushw x + call _swap + addw sp, #6 +; ../qsort.c: 57: for(unsigned char *j = i; (j > b) && (*compar)(j, j - size) < 0; j -= size) + ldw y, (0x09, sp) + jra 00107$ +00111$: +; ../qsort.c: 55: for(unsigned char *i = base; i < b + nmemb * size; i += size) + ldw x, (0x03, sp) + addw x, (0x05, sp) + ldw (0x03, sp), x + jra 00110$ +00112$: +; ../qsort.c: 60: } + addw sp, #12 + ret + .area CODE + .area CONST + .area INITIALIZER + .area CABS (ABS) |
