1
0
mirror of https://gitlab.os-k.eu/os-k-team/kvisc.git synced 2023-08-25 14:05:46 +02:00
kvisc/vm/in/stack.c

55 lines
736 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-29 16:57:22 +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-29 16:57:22 +02:00
//
// Stack manipulation instructions
//
IMPL_START_1(push)
{
2019-06-16 12:17:31 +02:00
rsp -= 8;
writemem(ctx, v1, rsp, 8);
2019-05-29 16:57:22 +02:00
}
IMPL_END;
IMPL_START_1(pop)
{
2019-06-16 12:17:31 +02:00
v1 = readmem(ctx, rsp, 8);
rsp += 8;
2019-05-29 16:57:22 +02:00
}
IMPL_OUT;
IMPL_START_1(call)
{
2019-06-16 12:17:31 +02:00
rsp -= 8;
writemem(ctx, rip, rsp, 8);
2019-06-16 12:48:30 +02:00
rip = v1;
2019-05-29 16:57:22 +02:00
}
IMPL_END;
IMPL_START_0(ret)
{
2019-06-16 12:17:31 +02:00
rip = readmem(ctx, rsp, 8);
rsp += 8;
2019-05-29 16:57:22 +02:00
}
IMPL_END;
IMPL_START_0(enter)
{
2019-06-16 12:17:31 +02:00
writemem(ctx, rbp, rsp - 8, 8);
rbp = rsp - 8;
rsp -= (p1->val + 1) * 8;
2019-05-29 16:57:22 +02:00
}
IMPL_END;
IMPL_START_0(leave)
{
2019-06-16 12:17:31 +02:00
rsp = rbp + 8;
rbp = readmem(ctx, rbp, 8);
2019-05-29 16:57:22 +02:00
}
IMPL_END;