-
Notifications
You must be signed in to change notification settings - Fork 1
/
cs235_assign03.cpp
443 lines (419 loc) · 12.3 KB
/
cs235_assign03.cpp
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
/***********************************************************************
* Program:
* Assignment 03, Postfix to Assembly Code Generator
* Brother Ercanbrack, CS235
* Author:
* Tyler Scott
* Summary:
* This program is designed to utilize the provided stack class
* (stack.h). The task was to incorporate and write the member
* functions associated with it. Then using these methods convert
* infix expressons to postfix output. Then interpret the instructions
* and display them in machine code.
*
* Estimated: 5.0 hrs
* Actual: 8.0 hrs
*
************************************************************************/
#include <iostream>
#include <cstdlib>
#include <iomanip>
#include <string>
#include <fstream>
using namespace std;
class Stack
{
private:
int myTop; // index of top of stack
int maxSize; // maximum size of stack
int *stackItems; // pointer for dynamic array
public:
Stack(int size = 100); // default constructor (stack size 100)
Stack(const Stack &aStack); // copy constructor
int top(void); // returns the value of top item in the stack
void push(int item); // store item on the stack
void pop(void); // remove/delete top item off stack
bool empty(void); // is stack empty
bool full(void); // is stack full
~Stack(); // destructor
Stack& operator = (const Stack &rtSide); // overloaded assignment operator
};
//Methods for member functions listed below
/********************************************
*Default Constructor
********************************************/
Stack::Stack(int size) // default constructor (stack size 100)
{
if (size > 0);
{
myTop = 0;
maxSize = size;
stackItems = new int[maxSize];
// as long as the passed in size is greater than 0, set up the array
// with the capacity that size.
if (stackItems != 0)
myTop = -1;// when the array is at 0, the top is a position
// previous, aka -1.
else
{
cerr<< "[Error: Not enough memory to allocate.]\n";
}
}
}
/********************************************
*Copy Constructor
********************************************/
Stack::Stack(const Stack &aStack)// copy constructor
{
myTop = aStack.myTop;//duplicates all the assigned variables to the
//new constructor for myTop, maxSize, and the
//array of stuff.
maxSize = aStack.maxSize;
stackItems = new int[aStack.maxSize];
if (stackItems != 0)
{
for (int i = 0; i <= aStack.myTop; i++)
{
stackItems[i] = aStack.stackItems[i];
//duplicate the array values individually.
}
}
}
/********************************************
* the top makes sure that the stack isnt empty
* and returns the first value as the top of the
* stack
********************************************/
int Stack::top(void) // returns the value of top item in the stack
{
if (!empty())// if its not empty
return(stackItems[myTop]);//return the top value
else
{
cerr << "[Error: Stack is empty -- spewing garbage...]";
}
}
/********************************************
* Push adds items to the stack
********************************************/
void Stack::push(int item) // store item on the stack
{
if (myTop < maxSize -1)// if the top is receded on position
{
++myTop; //increment the top.
stackItems[myTop] = item; //sets the top equal to the new
//passed in
}
else
{
cerr << "ERROR: Stack Overflow\n";
// cerr << "[Error: Stack is full -- can't add a new item...]\n"
// << " Must increase the maximum capacity of the stack.\n";
return;
}
}
/********************************************
*Pop removes an item from the stack
********************************************/
void Stack::pop(void) // remove/delete top item off stack
{
if (!empty())//check empty
myTop--;//decrement 1
else
cerr << "ERROR: Stack Underflow\n";
// cerr << "[Error: Stack is empty -- cant remove items]\n";
}
/********************************************
*Empty checks whether there is anything on the stack
********************************************/
bool Stack::empty(void) // is stack empty
{
return (myTop==-1);//if the value for the postion of
// the stack is -1 its empty
}
/********************************************
*Checks to make sure the stack isnt full
********************************************/
bool Stack::full(void) // is stack full
{
return (maxSize == myTop + 1);// if the max stack size
//is equal to the top position and then some, its full
}
/********************************************
*Destructor
********************************************/
Stack::~Stack() // destructor
{
delete[] stackItems;//clears the stack
stackItems = NULL;
}
/********************************************
*Assignment operator allows you to assign ADTs
********************************************/
Stack& Stack::operator = (const Stack &rtSide) // overloaded assignment operator
{
if (this != &rtSide)//if the left does not equal
{
if(maxSize != rtSide.maxSize)
{
delete[] stackItems;
maxSize = rtSide.maxSize;
stackItems = new int[maxSize];
if (stackItems == 0)
{
cerr << "[Error: Inadequate memory]\n";
}
}
myTop = rtSide.myTop;
for (int i = 0; i <= myTop; i++)
{
stackItems[i] = rtSide.stackItems[i];
}
}
return *this;
}
//function prototypes.
string pfix(string exp);
void displayMachineCode(string exp);
/********************************************
*Main controls where everything happens
********************************************/
int main(int argc, char** argv)
{
string filename = "";
if( argc == 2 )
{
filename = argv[1];
}
else
{
getline(cin, filename);
}
//input the file from the command line
ifstream fin;
fin.open(filename.c_str());//open the file
if(fin.fail())
{
cout << "Error reading File...";
return 0;//if the file cant open display error
}
string infixExp;//declare new string for infix exp
for (; !fin.eof(); )
{
getline(fin, infixExp);//read in the lines as a string
if(!fin.fail())
{
cout << "\nInfix Expression: " << infixExp << endl;
cout << "Postfix expression: " << pfix(infixExp) << endl;
//convert ot postfix
}
displayMachineCode(pfix(infixExp));// call display function
}
fin.close();//close file
return 0;
}
/********************************************
*Postfix conversion
********************************************/
string pfix(string exp)
{
char token;
char topToken;
Stack opStack;
string pfixExp;
const string BLANK = "";
for (int i = 0; i < exp.length(); i++)
{
token = exp[i];
switch(token)
{
case ' ':
break;
case '(':
opStack.push(token);
break;
case ')':
for (;;)
{
if (!opStack.empty())
{
topToken = opStack.top();
opStack.pop();
if (topToken == '(')
break;
pfixExp.append(BLANK + topToken);
}
}
break;
case '+' :
case '-' :
case '*' :
case '/' :
case '%':
for (;;)
{
if (opStack.empty() || opStack.top() == '(' ||
(token == '*' || token == '/' || token == '%') &&
(opStack.top() == '+' || opStack.top() == '-'))
{
opStack.push(token);
break;
}
else
{
topToken = opStack.top();
opStack.pop();
pfixExp.append(BLANK + token);
}
}
break;
default :
pfixExp.append(BLANK + token);
for(;;)
{
if (!isalnum(exp[i+1]))break;
i++;
token = exp[i];
pfixExp.append(1,token);
}
}
}
for (;;)
{
if (opStack.empty())
break;
topToken = opStack.top();
opStack.pop();
if (topToken != '(')
{
pfixExp.append(BLANK + topToken);
}
else
{
cout << "Error in infix notation...\n";
break;
}
}
return pfixExp;
}
/********************************************
*Displaying the assembly code
********************************************/
void displayMachineCode(string exp)
{
Stack here;
string assembly;
//ran out of time to comment
cout << "Assembly Code:\n";
char r;
char l;
char temp = '1';
for (int i = 0; i < exp.length(); i++)
{
switch (exp[i])// char push 1, opreand pop2
{
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
here.push(exp[i]);
break;
case ' ':
break;
case '+':
assembly = "AD ";
r = here.top();
here.pop();
l = here.top();
here.pop();
cout << "LD ";
if (l == 'A' || l == 'B' || l == 'C' || l == 'D' ||
l == 'E' || l == 'F' || l == 'G' || l == 'H')
cout << l << endl;
else
cout << "TEMP" << l << endl;
cout << assembly;
if (r == 'A' || r == 'B' || r == 'C' || r == 'D' ||
r == 'E' || r == 'F' || r == 'G' || r == 'H')
cout << r << endl;
else
cout << "TEMP" << r << endl;
cout << "ST " << "TEMP" << temp << endl;
here.push(temp);
temp++;
break;
case '-':
assembly = "SB ";
r = here.top();
here.pop();
l = here.top();
here.pop();
cout << "LD ";
if (l == 'A' || l == 'B' || l == 'C' || l == 'D' ||
l == 'E' || l == 'F' || l == 'G' || l == 'H')
cout << l << endl;
else
cout << "TEMP" << l << endl;
cout << assembly;
if (r == 'A' || r == 'B' || r == 'C' || r == 'D' ||
r == 'E' || r == 'F' || r == 'G' || r == 'H')
cout << r << endl;
else
cout << "TEMP" << r << endl;
cout << "ST " << "TEMP" << temp << endl;
here.push(temp);
temp++;
break;
case '*':
assembly = "ML ";
r = here.top();
here.pop();
l = here.top();
here.pop();
cout << "LD ";
if (l == 'A' || l == 'B' || l == 'C' || l == 'D' ||
l == 'E' || l == 'F' || l == 'G' || l == 'H')
cout << l << endl;
else
cout << "TEMP" << l << endl;
cout << assembly;
if (r == 'A' || r == 'B' || r == 'C' || r == 'D' ||
r == 'E' || r == 'F' || r == 'G' || r == 'H')
cout << r << endl;
else
cout << "TEMP" << r << endl;
cout << "ST " << "TEMP" << temp << endl;
here.push(temp);
temp++;
break;
case '/':
assembly = "DV ";
r = here.top();
here.pop();
l = here.top();
here.pop();
cout << "LD ";
if (l == 'A' || l == 'B' || l == 'C' || l == 'D' ||
l == 'E' || l == 'F' || l == 'G' || l == 'H')
cout << l << endl;
else
cout << "TEMP" << l << endl;
cout << assembly;
if (r == 'A' || r == 'B' || r == 'C' || r == 'D' ||
r == 'E' || r == 'F' || r == 'G' || r == 'H')
cout << r << endl;
else
cout << "TEMP" << r << endl;
cout << "ST " << "TEMP" << temp << endl;
here.push(temp);
temp++;
break;
default:
break;
}
}
}