-
Notifications
You must be signed in to change notification settings - Fork 0
/
mydc.s
135 lines (117 loc) · 3.61 KB
/
mydc.s
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
### --------------------------------------------------------------------
### mydc.s
###
### Desk Calculator (dc)
### --------------------------------------------------------------------
.equ ARRAYSIZE, 20
.equ EOF, -1
.section ".rodata"
scanfFormat:
.asciz "%s"
### --------------------------------------------------------------------
.section ".data"
### --------------------------------------------------------------------
.section ".bss"
buffer:
.skip ARRAYSIZE
### --------------------------------------------------------------------
.section ".text"
## -------------------------------------------------------------
## int main(void)
## Runs desk calculator program. Returns 0.
## -------------------------------------------------------------
.globl main
.type main,@function
main:
pushl %ebp
movl %esp, %ebp
input:
## dc number stack initialized. %esp = %ebp
## scanf("%s", buffer)
pushl $buffer
pushl $scanfFormat
call scanf
addl $8, %esp
## check if user input EOF
cmpl $EOF, %eax
je quit
## PSEUDO-CODE
## /*
## * In this pseudo-code we assume that you do not use no local variables
## * in the _main_ process stack. In case you want to allocate space for local
## * variables, please remember to update logic for 'empty dc stack' condition
## * (stack.peek() == NULL).
## */
##
## while (1) {
## /* read the current line into buffer */
## if (scanf("%s", buffer) == EOF)
## return 0;
##
## /* is this line a number? */
## if (isdigit(buffer[0]) || buffer[0] == '_') {
## int num;
## if (buffer[0] == '_') buffer[0] = '-';
## num = atoi(buffer);
## stack.push(num); /* pushl num */
## continue;
## }
##
## /* p command */
## if (buffer[0] == 'p') {
## if (stack.peek() == NULL) { /* is %esp == %ebp? */
## printf("dc: stack empty\n");
## } else {
## /* value is already pushed in the stack */
## printf("%d\n", (int)stack.top());
## }
## continue;
## }
##
## /* q command */
## if (buffer[0] == 'q') {
## goto quit;
## }
##
## /* + operation */
## if (buffer[0] == '+') {
## int a, b;
## if (stack.peek() == NULL) {
## printf("dc: stack empty\n");
## continue;
## }
## a = (int)stack.pop();
## if (stack.peek() == NULL) {
## printf("dc: stack empty\n");
## stack.push(a); /* pushl some register value */
## continue;
## }
## b = (int)stack.pop(); /* popl to some register */
## res = a + b;
## stack.push(res);
## continue;
## }
##
## /* - operation */
## if (buffer[0] == '-') {
## /* ... */
## }
##
## /* | operation */
## if (buffer[0] == '|') {
## /* pop two values & call abssum() */
## }
##
## /* other operations and commands */
## if (/* others */) {
## /* ... and so on ... */
## }
##
## } /* end of while */
##
quit:
## return 0
movl $0, %eax
movl %ebp, %esp
popl %ebp
ret