-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.cc
81 lines (66 loc) · 2.02 KB
/
example.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//
// This file is part of pug-vm.
// pug-vm is free software: you can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// pug-vm is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
// even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along with pug-vm. If not,
// see <http://www.gnu.org/licenses/>
//
#include "PugVM.hh"
int main () {
using namespace PugVM;
// Recursive faculty program.
int res = 5;
std::vector<Instruction> program {
{LoadInt, &res}, // +1
{Call, 5},
{PopReduce},
{StoreInt, &res},
{Exit},
// fac(x)
{LoadArg, 0},
{PushInt, 1},
{NotEqualsII},
{JumpRelIfTrue, 3},
{PushInt, 1},
{ReturnTos},
{LoadArg,0},
{DecrementI},
{Call, 5},
{PopReduce},
{LoadArg,0},
{MulII},
{ReturnTos}
};
/*
// Iterative faculty program.
std::vector<Instruction> program{
{LoadInt, &res}, // [local 0]
{Dup}, // [local 1] duplicate input to be used as counter
// start of while loop
{Dup}, // \
{PushInt,1}, // | compare counter to 1
{EqualsII}, // / \
{JumpRelIfTrue, 7}, // quit if counter is 1
{DecrementI},
{LoadLocal, 0},
{LoadLocal, 1},
{MulII},
{StoreLocal, 0},
{Jump, 2},
// loop end
{Pop},
{StoreInt, &res},
{Exit}
};*/
PugVM::StackMachine<true> m(program);
while (!m.halted()) {
m.tick();
}
std::cout << "res: " << res << std::endl;
}