kvisc/pc/instrs/mov.c

56 lines
698 B
C
Raw Normal View History

2019-05-30 18:31:50 +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 "instrs.h"
#include "arch_i.h"
2019-05-30 20:23:27 +02:00
IMPL_COND(mov);
IMPL_COND(lea);
IMPL_COND(xchg);
2019-06-02 16:33:28 +02:00
IMPL_COND(cmpxchg);
2019-05-30 20:23:27 +02:00
2019-05-30 18:31:50 +02:00
//
// Movement instructions
//
IMPL_START_2(mov)
{
v1 = v2;
}
IMPL_OUT;
IMPL_START_2(xchg)
{
ulong t = v1;
v1 = v2;
v2 = t;
}
IMPL_OUT;
IMPL_START_1(lea)
{
2019-06-02 16:33:28 +02:00
v1 = (p2->type == A_REG ? R(p2->val) : p2->val) + p2->off;
2019-05-30 18:31:50 +02:00
}
IMPL_OUT;
IMPL_START_1(gcs)
{
2019-06-02 16:33:28 +02:00
v1 = cr1;
}
IMPL_OUT;
IMPL_START_2(cmpxchg)
{
if (rax == v1) {
flg |= ZF;
v1 = v2;
}
else {
flg &= ~ZF;
rax = v1;
}
2019-05-30 18:31:50 +02:00
}
IMPL_OUT;