-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathutility.cpp
239 lines (214 loc) · 4.74 KB
/
utility.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
/*This file contains function helpfull for functioningof other files
Function declared here rarelly changes
This file also contains important files to #include*/
#include<iostream>
#include<fstream>
#include<string>
#include<sstream>
#include<iomanip>
#include<map>
#include<algorithm>
using namespace std;
string intToStringHex(int x,int fill = 5){
stringstream s;
s << setfill('0') << setw(fill) << hex << x;
string temp = s.str();
temp = temp.substr(temp.length()-fill,fill);
transform(temp.begin(), temp.end(),temp.begin(),::toupper);
return temp;
}
string expandString(string data,int length,char fillChar,bool back=false){
if(back){
if(length<=data.length()){
return data.substr(0,length);
}
else{
for(int i = length-data.length();i>0;i--){
data += fillChar;
}
}
}
else{
if(length<=data.length()){
return data.substr(data.length()-length,length);
}
else{
for(int i = length-data.length();i>0;i--){
data = fillChar + data;
}
}
}
return data;
}
int stringHexToInt(string x){
return stoul(x,nullptr,16);
}
string stringToHexString(const string& input){
static const char* const lut = "0123456789ABCDEF";
size_t len = input.length();
string output;
output.reserve(2 * len);
for (size_t i = 0; i < len; ++i)
{
const unsigned char c = input[i];
output.push_back(lut[c >> 4]);
output.push_back(lut[c & 15]);
}
return output;
}
bool checkWhiteSpace(char x){
if(x==' ' || x=='\t'){
return true;
}
return false;
}
bool checkCommentLine(string line){
if(line[0]=='.'){
return true;
}
return false;
}
bool if_all_num(string x){
bool all_num = true;
int i = 0;
while(all_num && (i<x.length())){
all_num &= isdigit(x[i++]);
}
return all_num;
}
void readFirstNonWhiteSpace(string line,int& index,bool& status,string& data,bool readTillEnd=false){
data = "";
status = true;
if(readTillEnd){
data = line.substr(index,line.length() - index);
if(data==""){
status = false;
}
return;
}
while(index<line.length()&&!checkWhiteSpace(line[index])){//If no whitespace then data
data += line[index];
index++;
}
if(data==""){
status = false;
}
while(index<line.length()&&checkWhiteSpace(line[index])){//Increase index to pass all whitespace
index++;
}
}
void readByteOperand(string line,int& index,bool& status,string& data){
data = "";
status = true;
if(line[index]=='C'){
data += line[index++];
char identifier = line[index++];
data += identifier;
while(index<line.length() && line[index]!=identifier){//Copy all data until next identifier regardless of whitespace
data += line[index];
index++;
}
data += identifier;
index++;//Shift to next of identifier
}
else{
while(index<line.length()&&!checkWhiteSpace(line[index])){//In no whitespace then data
data += line[index];
index++;
}
}
if(data==""){
status = false;
}
while(index<line.length()&&checkWhiteSpace(line[index])){//Increase index to pass all whitespace
index++;
}
}
void writeToFile(ofstream& file,string data,bool newline=true){
if(newline){
file<<data<<endl;
}else{
file<<data;
}
}
string getRealOpcode(string opcode){
if(opcode[0] == '+' || opcode[0] == '@'){
return opcode.substr(1,opcode.length() - 1);
}
return opcode;
}
char getFlagFormat(string data){
if(data[0] == '#' || data[0] == '+' || data[0] == '@' || data[0] == '='){
return data[0];
}
return ' ';
}
class EvaluateString{
public:
int getResult();
EvaluateString(string data);
private:
string storedData;
int index;
char peek();
char get();
int term();
int factor();
int number();
};
EvaluateString::EvaluateString(string data){
storedData = data;
index=0;
}
int EvaluateString::getResult(){
int result = term();
while(peek()=='+' || peek() == '-'){
if(get() == '+'){
result += term();
}else{
result -= term();
}
}
return result;
}
int EvaluateString::term(){
int result = factor();
while(peek() == '*' || peek() == '/'){
if(get()=='*'){
result *= factor();
}
else{
result /= factor();
}
}
return result;
}
int EvaluateString::factor(){
if(peek() >= '0' && peek() <= '9'){
return number();
}
else if(peek() == '('){
get();
int result = getResult();
get();
return result;
}
else if(peek()=='-'){
get();
return -factor();
}
return 0;
}
int EvaluateString::number(){
int result = get() - '0';
while(peek() >= '0' && peek() <= '9'){
result = 10*result + get()-'0';
}
return result;
}
char EvaluateString::get(){
return storedData[index++];
}
char EvaluateString::peek(){
return storedData[index];
}