kvisc/vm/in/string.c

39 lines
1.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-08-03 19:01:12 +02:00
static void scas_impl(acc_t *p1, acc_t *p2, uint len)
2019-06-13 22:20:35 +02:00
{
2019-08-03 17:41:44 +02:00
if (p1->type != A_REG)
2019-08-03 19:01:12 +02:00
_except(E_ILL, "SCASX given a non-REG operand");
2019-08-03 17:41:44 +02:00
2019-08-14 20:23:05 +02:00
while (R(RCX) > 0)
{
ulong x = readmemzx(R(p1->reg), len);
2019-06-13 22:20:35 +02:00
2019-08-14 20:23:05 +02:00
if (x == 0 || x == p2->val)
break;
R(p1->reg) += len;
2019-06-13 22:20:35 +02:00
2019-08-14 20:23:05 +02:00
R(RCX)--;
2019-06-13 22:20:35 +02:00
}
}
2019-08-08 18:39:12 +02:00
IMPL_START(scasb, 2) { scas_impl(p1, p2, 1); return 0; }
IMPL_START(scasw, 2) { scas_impl(p1, p2, 2); return 0; }
IMPL_START(scasd, 2) { scas_impl(p1, p2, 4); return 0; }
IMPL_START(scasq, 2) { scas_impl(p1, p2, 8); return 0; }
2019-06-13 15:32:24 +02:00
//----------------------------------------------------------------------------//