kvisc/vm/in/string.c

69 lines
2.1 KiB
C
Raw Normal View History

2019-06-13 15:32:24 +02:00
// The OS/K Team licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include <in/instrs.h>
//----------------------------------------------------------------------------//
2019-06-13 16:27:33 +02:00
#define STR_MOVE(reg, len) \
2019-07-17 22:25:50 +02:00
if (!(R(RFX) & DF)) R(reg) += len; \
2019-07-17 20:26:03 +02:00
else R(reg) -= len;
2019-06-13 16:27:33 +02:00
//----------------------------------------------------------------------------//
2019-06-16 19:42:10 +02:00
static void stos_impl(ctx_t *ctx, acc_t *p1, acc_t *p2, uint len)
2019-06-13 16:27:33 +02:00
{
2019-06-17 20:59:30 +02:00
DECV(v2, p2);
writemem(ctx, v2, R(p1->reg), len);
STR_MOVE(p1->reg, len);
2019-06-13 16:27:33 +02:00
}
2019-07-17 20:26:03 +02:00
IMPL_START_0(stosb) { stos_impl(ctx, p1, p2, 1); } IMPL_END;
IMPL_START_0(stosw) { stos_impl(ctx, p1, p2, 2); } IMPL_END;
IMPL_START_0(stosl) { stos_impl(ctx, p1, p2, 4); } IMPL_END;
IMPL_START_0(stosq) { stos_impl(ctx, p1, p2, 8); } IMPL_END;
2019-06-13 17:13:59 +02:00
2019-06-13 15:47:20 +02:00
//----------------------------------------------------------------------------//
2019-06-16 19:42:10 +02:00
static void scas_impl(ctx_t *ctx, acc_t *p1, acc_t *p2, uint len)
2019-06-13 22:20:35 +02:00
{
2019-06-17 20:59:30 +02:00
DECV(v2, p2);
2019-06-13 22:20:35 +02:00
2019-06-17 20:59:30 +02:00
ulong x = readmem(ctx, R(p1->reg), len);
2019-07-18 22:49:31 +02:00
COMPARE_SUB(x, v2);
2019-06-13 22:20:35 +02:00
2019-06-17 20:59:30 +02:00
if (x == 0) {
2019-07-11 18:34:21 +02:00
R(RFX) |= ZF;
2019-06-13 22:20:35 +02:00
}
2019-07-11 18:34:21 +02:00
else if (!(R(RFX)&ZF)) {
2019-06-17 20:59:30 +02:00
STR_MOVE(p1->reg, len);
2019-06-13 22:20:35 +02:00
}
}
2019-07-17 20:26:03 +02:00
IMPL_START_0(scasb) { scas_impl(ctx, p1, p2, 1); } IMPL_END;
IMPL_START_0(scasw) { scas_impl(ctx, p1, p2, 2); } IMPL_END;
IMPL_START_0(scasl) { scas_impl(ctx, p1, p2, 4); } IMPL_END;
IMPL_START_0(scasq) { scas_impl(ctx, p1, p2, 8); } IMPL_END;
2019-06-13 15:47:20 +02:00
//----------------------------------------------------------------------------//
2019-06-16 19:42:10 +02:00
static void movs_impl(ctx_t *ctx, acc_t *p1, acc_t *p2, uint len)
2019-06-13 22:20:35 +02:00
{
2019-06-17 20:59:30 +02:00
ulong x = readmem(ctx, R(p2->reg), len);
writemem(ctx, x, R(p1->reg), len);
2019-06-13 22:20:35 +02:00
2019-07-11 18:34:21 +02:00
R(RFX) = (x == 0 ? R(RFX)|ZF : R(RFX)&~ZF);
2019-06-13 22:20:35 +02:00
2019-06-17 20:59:30 +02:00
STR_MOVE(p1->reg, len);
STR_MOVE(p2->reg, len);
2019-06-13 22:20:35 +02:00
}
2019-07-17 20:26:03 +02:00
IMPL_START_0(movsb) { movs_impl(ctx, p1, p2, 1); } IMPL_END;
IMPL_START_0(movsw) { movs_impl(ctx, p1, p2, 2); } IMPL_END;
IMPL_START_0(movsl) { movs_impl(ctx, p1, p2, 4); } IMPL_END;
IMPL_START_0(movsq) { movs_impl(ctx, p1, p2, 8); } IMPL_END;
2019-06-13 15:32:24 +02:00
//----------------------------------------------------------------------------//