kvisc/vm/in/jumps.c

42 lines
711 B
C
Raw Normal View History

2019-05-30 12:44:56 +02:00
// The OS/K Team licenses this file to you under the MIT license.
2019-05-16 19:49:51 +02:00
// See the LICENSE file in the project root for more information.
2019-06-05 12:53:09 +02:00
#include <in/instrs.h>
2019-05-16 19:49:51 +02:00
2019-07-02 20:13:05 +02:00
//----------------------------------------------------------------------------//
2019-05-29 16:57:22 +02:00
2019-06-06 22:07:34 +02:00
IMPL_START_1(j)
{
2019-07-11 18:34:21 +02:00
R(RIP) = v1;
2019-06-06 22:07:34 +02:00
}
IMPL_END;
2019-05-16 19:49:51 +02:00
IMPL_START_1(jmp)
{
2019-07-11 18:34:21 +02:00
R(RIP) = v1;
2019-05-29 18:26:28 +02:00
}
IMPL_END;
IMPL_START_1(loop)
{
2019-07-11 18:34:21 +02:00
if (R(RCX) > 0) {
R(RCX)--;
R(RIP) = v1;
2019-05-29 18:26:28 +02:00
}
2019-05-16 19:49:51 +02:00
}
IMPL_END;
2019-07-02 20:13:05 +02:00
//----------------------------------------------------------------------------//
2019-06-30 13:46:44 +02:00
2019-07-02 20:13:05 +02:00
IMPL_START_3(b)
2019-06-30 13:46:44 +02:00
{
2019-07-02 20:13:05 +02:00
COMPARE(v1, v2);
2019-06-30 13:46:44 +02:00
2019-07-02 20:13:05 +02:00
if (eval_cond(ctx, ctx->cond))
2019-07-11 18:34:21 +02:00
R(RIP) = v3;
2019-06-30 13:46:44 +02:00
}
IMPL_END;
2019-07-02 20:13:05 +02:00
//----------------------------------------------------------------------------//