Fixed Memory leaks curropted heaps as well as other bugs.

Code refinement and cleaning.
master
BillSun 5 years ago
parent 184707eeac
commit ab823ac948

BIN
.DS_Store vendored

Binary file not shown.

Binary file not shown.

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14 # Visual Studio 14
VisualStudioVersion = 14.0.23107.0 VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ConsoleApplication18", "ConsoleApplication18\ConsoleApplication18.vcxproj", "{62CCFC20-46DF-4039-97A5-AA068BD6A016}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BadassPascal", "BadassPascal\BadassPascal.vcxproj", "{62CCFC20-46DF-4039-97A5-AA068BD6A016}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution

@ -1,8 +1,5 @@
// ConsoleApplication18.cpp : Defines the entry point for the console application. #include <limits>
// #include <vector>
#include "stdafx.h"
#include <deque>
#include <stack> #include <stack>
#include <vector> #include <vector>
#include <set> #include <set>
@ -10,7 +7,14 @@
#include <cstdio> #include <cstdio>
#include <valarray> #include <valarray>
#include <iostream> #include <iostream>
#include <cstring>
class NullBuffer : public std::streambuf
{
public:
int overflow(int c) { return c; }
};
#define MAX_BUFFER 102400 #define MAX_BUFFER 102400
char buffer[MAX_BUFFER + 2]; char buffer[MAX_BUFFER + 2];
@ -32,7 +36,7 @@ enum Type { PSR, SYM, NUM };
#define S(a) P(a) + NOTEQ + 1 #define S(a) P(a) + NOTEQ + 1
#define DeS(a) a - 4 - NOTEQ #define DeS(a) a - 4 - NOTEQ
#define _S(a) a >= S(0) && a <= S(FACT) #define _S(a) a >= S(0) && a <= S(FACT)
#define init_follow(...) init_st(__VA_ARGS__, -1)[0] #define init_follow(n, ...) init_st((n + 1), __VA_ARGS__, -1)[0]
#define A_MOD P(EQUAL) #define A_MOD P(EQUAL)
struct IDS { struct IDS {
@ -44,12 +48,11 @@ struct IDS {
} }
}**pres; }**pres;
template <class T>
struct HASH { struct HASH {
IDS *id; IDS *id = 0;
char* value; char* value;
unsigned int* int_value; unsigned int* int_value = 0;
HASH(char* value, int index) HASH(char* value, int index)
{ {
this->value = value; this->value = value;
@ -72,17 +75,19 @@ struct HASH {
{ {
if (int_value != NULL) if (int_value != NULL)
delete(int_value); delete(int_value);
if (id)
delete id;
} }
}; };
vector<HASH<char*> *> sym; vector<HASH *> sym;
vector<HASH<unsigned int*> *> num; vector<HASH *> num;
struct GrammaUnit { struct GrammaUnit {
int *follows; int *follows;
}; };
deque<IDS*> identifiers; vector<IDS*> identifiers;
void GETSYM() { void GETSYM() {
@ -94,10 +99,11 @@ void GETSYM() {
bool takein = false, lastTaken = false; bool takein = false, lastTaken = false;
IDS *lastMatch; IDS *lastMatch;
//init //init
pres = new IDS*[NOTEQ]; pres = new IDS*[NOTEQ + 1];
for (j = 0; j <= NOTEQ; j++) { for (j = 0; j <= NOTEQ; j++) {
pres[j] = new IDS(0, j); pres[j] = new IDS(0, j);
} }
while (*bp) { while (*bp) {
takein = false; takein = false;
lastTaken = false; lastTaken = false;
@ -186,7 +192,7 @@ void GETSYM() {
for (j = 0; j < index; j++) for (j = 0; j < index; j++)
tmp[j] = (bp-index)[j]; tmp[j] = (bp-index)[j];
tmp[index] = 0; tmp[index] = 0;
sym.push_back(new HASH<char *> (tmp,n_ids_const)); sym.push_back(new HASH (tmp,n_ids_const));
lastMatch = sym.back()->id; lastMatch = sym.back()->id;
lastLength = index - 1; lastLength = index - 1;
flags[n_pre_const - 1] = true; flags[n_pre_const - 1] = true;
@ -228,7 +234,7 @@ void GETSYM() {
tmp[j] = (bp - index)[j]; tmp[j] = (bp - index)[j];
tmp[index] = 0; tmp[index] = 0;
num.push_back(new HASH<unsigned int *>(tmp, n_nums_const)); num.push_back(new HASH(tmp, n_nums_const));
lastMatch = num.back()->id; lastMatch = num.back()->id;
lastLength = index - 1; lastLength = index - 1;
flags[n_pre + n_ids_const + 1] = true; flags[n_pre + n_ids_const + 1] = true;
@ -250,27 +256,21 @@ void GETSYM() {
} }
else else
{ {
cout << "undefined identifier " << *bp << endl; cout << "undefined identifier " << *bp << '\n';
exit(1); exit(1);
} }
} }
if (index == 1 && *(bp - index) == '.') if (index == 1 && *(bp - index) == '.')
identifiers.push_back(pres[DOT]); identifiers.push_back(pres[DOT]);
for (IDS *var : identifiers)
for each (IDS *var in identifiers) cout<<var->type<<'\t'<<var->index<< '\n';
{ cout <<'\n' <<"Ints"<< '\n';
cout<<var->type<<'\t'<<var->index<< endl; for (HASH *var : num)
} cout << *(var->int_value) << '\n';
cout <<endl <<"Ints"<< endl; cout << '\n' << "Syms" << '\n';
for each (HASH<unsigned int *> *var in num) for (HASH *var : sym)
{ cout << var->value << '\n';
cout << *(var->int_value) << endl;
}
cout << endl << "Syms" << endl;
for each (HASH<char*> *var in sym)
{
cout << var->value << endl;
}
} }
@ -282,14 +282,14 @@ struct Instruction {
this->rop = rop; this->rop = rop;
} }
} *firstjump; } *firstjump;
deque<pair<int, unsigned int>> *propos[1024]; vector<pair<int, unsigned int>> *propos[1024];
bool checklist[1024];// = { true }; bool checklist[1024];
bool geting_proc = false; bool geting_proc = false;
deque<int> INTS; vector<int> INTS;
int lv = -1, dx[1024] = { 0 }; int lv = -1, dx[1024] = { 0 };
void push(); void push();
template <typename T> template <typename T>
class cheque : public deque<T> { class cheque : public vector<T> {
public: public:
void push_back(T&& _Val ) void push_back(T&& _Val )
{ {
@ -303,11 +303,11 @@ public:
push(); push();
} }
printf("inserting instructions..."); printf("inserting instructions...");
deque<T>::push_back(_Val); vector<T>::push_back(_Val);
} }
void pb(T&& _Val) void pb(T&& _Val)
{ {
deque<T>::push_back(_Val); vector<T>::push_back(_Val);
} }
}; };
cheque<Instruction *> instructions; cheque<Instruction *> instructions;
@ -316,22 +316,20 @@ void push() {
INTS.pop_back(); INTS.pop_back();
} }
inline int** init_st(int i, ...) { inline int** init_st(int i, ...) {
int j = 0, k = 1, t; int j = 0, k = 0, t;
int **p = new int*[16]; int **p = new int*[16];
va_list arg_ptr; va_list arg_ptr;
va_start(arg_ptr, i); va_start(arg_ptr, i);
p[0] = new int[8]; p[0] = new int[12];
t = i;
p[0][0] = i;
do { do {
t = va_arg(arg_ptr, int);
p[j][k++] = t;
if (t == -2) if (t == -2)
{ {
p[++j] = new int[8]; p[++j] = new int[8];
k = 0; k = 0;
} }
t = va_arg(arg_ptr, int);
p[j][k++] = t;
} while (t != -1); } while (t != -1);
p[j + 1] = new int(-3); p[j + 1] = new int(-3);
@ -354,7 +352,7 @@ struct Reduced{
this->type = type; this->type = type;
} }
~Reduced() { ~Reduced() {
free(param); //free(param);
} }
}; };
class Indexes { class Indexes {
@ -379,10 +377,14 @@ public:
return i < a.i; return i < a.i;
} }
}; };
struct Vartable {
};
stack<int> lastSP; stack<int> lastSP;
deque<Reduced *> buf; vector<Reduced *> buf;
deque<pair<deque<pair<int, unsigned int>>, int>> vartable; vector<pair<vector<pair<int, unsigned int>>*, int>> vartable;
deque<IDS *>::iterator it; vector<IDS *>::iterator it;
Reduced *nextSym = 0; Reduced *nextSym = 0;
stack<set<Indexes>> archive; stack<set<Indexes>> archive;
struct Pos { struct Pos {
@ -401,7 +403,7 @@ Reduced* peekNext()
case 2: case 2:
return new Reduced(2, (void *)num[(*it)->index]->int_value); return new Reduced(2, (void *)num[(*it)->index]->int_value);
default: default:
printf("Are you an asshole? An unchecked list? Fuck off."); printf("Unchecked list?");
exit(1); exit(1);
} }
else else
@ -443,11 +445,11 @@ inline void popArchive(const int&i, const int &j) {
} }
inline bool searchTableforVar(const int& param, int &level, int &d, bool &found, const bool con = false) inline bool searchTableforVar(const int& param, int &level, int &d, bool &found, const bool con = false)
{ {
for each (pair<deque<pair<int, unsigned int>>, int> var in vartable) for (pair<vector<pair<int, unsigned int>>*, int> var : vartable)
{ {
if (var.second == 1 || var.second ==0 && con) if (var.second == 1 || (var.second == 0 && con))
{ {
for each (pair<int, unsigned int> v in var.first) for (pair<int, unsigned int> v : *(var.first))
{ {
if (v.first == param) if (v.first == param)
{ {
@ -459,18 +461,15 @@ inline bool searchTableforVar(const int& param, int &level, int &d, bool &found,
} }
if (found) if (found)
{
//level--;
return (bool)var.second; return (bool)var.second;
}
} }
level++; level++;
} }
return false;
} }
Reduced* reduce(int i, int j) { Reduced* reduce(int i, int j) {
//popArchive(i, j);
void *param = new int(0); void *param = new int(0);
switch (i) switch (i)
@ -479,7 +478,7 @@ Reduced* reduce(int i, int j) {
{ {
pop(i, j); pop(i, j);
if (!Next()) if (!Next())
cout << "succeed" << endl; cout << "succeed" << '\n';
} }
break; break;
case SP: case SP:
@ -494,9 +493,9 @@ Reduced* reduce(int i, int j) {
lv++; lv++;
checklist[lv] = 0; checklist[lv] = 0;
if (vartable.empty()) if (vartable.empty())
vartable.push_back(pair<deque<pair<int, unsigned int>>, int>(deque<pair<int, unsigned int>>(), 0)); vartable.push_back(make_pair(new vector<pair<int, unsigned int>>(), 0));
else if (vartable.back().second) else if (vartable.back().second)
vartable.push_back(pair<deque<pair<int, unsigned int>>, int>(deque<pair<int, unsigned int>>(), 0)); vartable.push_back(make_pair(new vector<pair<int, unsigned int>>(), 0));
pop(i, j); pop(i, j);
} }
@ -507,44 +506,43 @@ Reduced* reduce(int i, int j) {
case INIT: case INIT:
{ {
if (vartable.empty()) if (vartable.empty())
vartable.push_back(pair<deque<pair<int, unsigned int>>, int>(deque<pair<int, unsigned int>>(), 0)); vartable.push_back(make_pair(new vector<pair<int, unsigned int>>(), 0));
else else
if (vartable.back().second) if (vartable.back().second)
vartable.push_back(pair<deque<pair<int, unsigned int>>, int>(deque<pair<int, unsigned int>>(), 0)); vartable.push_back(make_pair(new vector<pair<int, unsigned int>>(), 0));
pair<deque<pair<int, unsigned int>>, int> *top = &vartable.back(); pair<vector<pair<int, unsigned int>>*, int> *top = &vartable.back();
Reduced* last = buf.back(); Reduced* last = buf.back();
if (last->type != 2) if (last->type != 2)
cout << "Reducing Error: Expecting a number." << endl; cout << "Reducing Error: Expecting a number." << '\n';
unsigned int intval = *((unsigned int *)last->param); unsigned int intval = *((unsigned int *)last->param);
buf.pop_back(); buf.pop_back();
buf.pop_back(); buf.pop_back();
last = buf.back(); last = buf.back();
if (last->type != 1) if (last->type != 1)
cout << "Reducing Error: Expecting a number." << endl; cout << "Reducing Error: Expecting a number." << '\n';
int index = *((int *)last->param); int index = *((int *)last->param);
top->first.push_back(pair<int, unsigned int>(index, intval)); top->first->push_back(pair<int, unsigned int>(index, intval));
buf.pop_back(); buf.pop_back();
} }
break; break;
case V: case V:
{ {
if (vartable.back().second != 1) if (vartable.back().second != 1)
vartable.push_back(pair<deque<pair<int, unsigned int>>, int>(deque<pair<int, unsigned int>>(), 1)); vartable.push_back(make_pair(new vector<pair<int, unsigned int>>(), 1));
if (j == 1) if (j == 1)
{ {
buf.pop_back(); buf.pop_back();
buf.pop_back(); buf.pop_back();
Reduced *last = buf.back(); Reduced *last = buf.back();
pair<deque<pair<int, unsigned int>>, int> *top = &vartable.back(); pair<vector<pair<int, unsigned int>>*, int> *top = &vartable.back();
top->first.push_back(pair<int, unsigned int>(*((int *)last->param), dx[lv]++)); top->first->push_back(pair<int, unsigned int>(*((int *)last->param), dx[lv]++));
//instructions.push_back(new Instruction(INT, 0, vartable.back().first.size() + 2));
vartable.push_back(pair<deque<pair<int, unsigned int>>, int>(deque<pair<int, unsigned int>>(), 2)); vartable.push_back(make_pair(new vector<pair<int, unsigned int>>(), 2));
propos[lv] = &vartable.back().first; propos[lv] = vartable.back().first;
buf.pop_back(); buf.pop_back();
buf.pop_back(); buf.pop_back();
} }
INTS.push_back(vartable[vartable.size() - 2].first.size() + 2); INTS.push_back(vartable[vartable.size() - 2].first->size() + 2);
} }
break; break;
case VDEF: case VDEF:
@ -553,12 +551,12 @@ Reduced* reduce(int i, int j) {
buf.pop_back(); buf.pop_back();
Reduced *last = buf.back(); Reduced *last = buf.back();
if (vartable.empty()) if (vartable.empty())
vartable.push_back(pair<deque<pair<int, unsigned int>>, int>(deque<pair<int, unsigned int>>(), 1)); vartable.push_back(make_pair(new vector<pair<int, unsigned int>>(), 1));
else else
if (vartable.back().second != 1) if (vartable.back().second != 1)
vartable.push_back(pair<deque<pair<int, unsigned int>>, int>(deque<pair<int, unsigned int>>(), 1)); vartable.push_back(make_pair(new vector<pair<int, unsigned int>>(), 1));
pair<deque<pair<int, unsigned int>>, int> *top = &vartable.back(); pair<vector<pair<int, unsigned int>>*, int> *top = &vartable.back();
top->first.push_back(pair<int, unsigned int>(*((int *)last->param), dx[lv]++)); top->first->push_back(pair<int, unsigned int>(*((int *)last->param), dx[lv]++));
buf.pop_back(); buf.pop_back();
buf.pop_back(); buf.pop_back();
} }
@ -569,17 +567,7 @@ Reduced* reduce(int i, int j) {
buf.pop_back(); buf.pop_back();
buf.pop_back(); buf.pop_back();
buf.pop_back(); buf.pop_back();
/*
if (vartable.empty())
vartable.push_back(pair<deque<pair<int, unsigned int>>, int>(deque < pair<int, unsigned int>>(), 2));
else if (vartable.back().second!=1)
vartable.push_back(pair<deque<pair<int, unsigned int>>, int>(deque < pair<int, unsigned int>>(), 2));
pair<deque<pair<int, unsigned int>>, int> *top = &vartable.back();
Reduced* name = buf.back();
top->first.push_back(pair<int, unsigned int>(*((int *)name->param), lastSP.top()));
lastSP.pop();
*/
buf.pop_back(); buf.pop_back();
buf.pop_back(); buf.pop_back();
@ -598,7 +586,7 @@ Reduced* reduce(int i, int j) {
int level = 0, d; int level = 0, d;
searchTableforVar(pa, level, d, found); searchTableforVar(pa, level, d, found);
if (!found) if (!found)
cout << "Error: undefined identifier " << sym[pa]->value << endl; cout << "Error: undefined identifier " << sym[pa]->value << '\n';
else else
instructions.push_back(new Instruction(STO, level, d)); instructions.push_back(new Instruction(STO, level, d));
} }
@ -610,11 +598,11 @@ Reduced* reduce(int i, int j) {
buf.pop_back(); buf.pop_back();
bool found = false; bool found = false;
int pos = 0; int pos = 0;
for each (pair<deque<pair<int, unsigned int>>, int> var in vartable) for (pair<vector<pair<int, unsigned int>>*, int> var : vartable)
{ {
if (var.second == 2) if (var.second == 2)
{ {
for each (pair<int, unsigned int> v in var.first) for (pair<int, unsigned int> v : *(var.first))
{ {
if (v.first == pa) if (v.first == pa)
{ {
@ -626,7 +614,7 @@ Reduced* reduce(int i, int j) {
} }
} }
if (!found) if (!found)
cout << "Error: undefined procedure " << sym[pa]->value << endl; cout << "Error: undefined procedure " << sym[pa]->value << '\n';
buf.pop_back(); buf.pop_back();
instructions.push_back(new Instruction(JMP, 0, pos)); instructions.push_back(new Instruction(JMP, 0, pos));
} }
@ -669,7 +657,7 @@ Reduced* reduce(int i, int j) {
instructions.push_back(new Instruction(STO, level, d)); instructions.push_back(new Instruction(STO, level, d));
} }
else else
cout << "Error: Undefined parameter: " << sym[*(int*)buf.back()->param]->value << endl; cout << "Error: Undefined parameter: " << sym[*(int*)buf.back()->param]->value << '\n';
buf.pop_back(); buf.pop_back();
buf.pop_back(); buf.pop_back();
buf.pop_back(); buf.pop_back();
@ -687,12 +675,12 @@ Reduced* reduce(int i, int j) {
if(found) if(found)
instructions.push_back(new Instruction(LOD, level, d)); instructions.push_back(new Instruction(LOD, level, d));
else else
cout << "Error: Undefined parameter: " << sym[*(int*)buf.back()->param]->value << endl; cout << "Error: Undefined parameter: " << sym[*(int*)buf.back()->param]->value << '\n';
} }
else if (id->type == 2) else if (id->type == 2)
instructions.push_back(new Instruction(LIT, 0, *((int *)id->param))); instructions.push_back(new Instruction(LIT, 0, *((int *)id->param)));
else else
cout << "Error: Undefined parameter: " << *(int*)buf.back()->param - 3 << endl; cout << "Error: Undefined parameter: " << *(int*)buf.back()->param - 3 << '\n';
instructions.push_back(new Instruction(SIO, 0, 1)); instructions.push_back(new Instruction(SIO, 0, 1));
@ -753,7 +741,7 @@ Reduced* reduce(int i, int j) {
rop = 8; rop = 8;
break; break;
default: default:
cout << "Error: Expected an condition modifier." << endl; cout << "Error: Expected an condition modifier." << '\n';
break; break;
} }
if (rop == 9) if (rop == 9)
@ -785,14 +773,14 @@ Reduced* reduce(int i, int j) {
buf.pop_back(); buf.pop_back();
Pos* pos = (Pos *)buf.back()->param; Pos* pos = (Pos *)buf.back()->param;
int end = pos->end, *start = new int(pos->start); int end = pos->end, *start = new int(pos->start);
deque<Instruction *>::iterator iter = instructions.begin() + end; vector<Instruction *>::iterator iter = instructions.begin() + end;
buf.pop_back(); buf.pop_back();
int ari2 = *((int *)buf.back()->param); int ari2 = *((int *)buf.back()->param);
if (ari2) if (ari2)
(*iter)->rop = 1; (*iter)->rop = 1;
else else
instructions.erase(iter); instructions.erase(iter);
//if((*iter)->)
param = start; param = start;
buf.pop_back(); buf.pop_back();
} }
@ -884,7 +872,7 @@ Reduced* reduce(int i, int j) {
else if(found && !type) else if(found && !type)
instructions.push_back(new Instruction(LIT, 0, d)); instructions.push_back(new Instruction(LIT, 0, d));
else else
cout << "Error: Unfefined identifier: " << sym[*((int *)buf.back()->param)]->value << endl; cout << "Error: Unfefined identifier: " << sym[*((int *)buf.back()->param)]->value << '\n';
} }
break; break;
case 1: case 1:
@ -920,49 +908,49 @@ Reduced* reduce(int i, int j) {
void initStates() { void initStates() {
states = new int**[FACT + 1]; states = new int**[FACT + 1];
states[P] = init_st(S(SP), P(DOT), -1); states[P] = init_st(3, S(SP), P(DOT), -1);
states[SP] = init_st(S(C), S(V), S(PRO), S(ST), P(SEMICOLON), -1); states[SP] = init_st(6, S(C), S(V), S(PRO), S(ST), P(SEMICOLON), -1);
states[C] = init_st(-2, P(CONST), S(INIT), S(CDEF), P(SEMICOLON), -1); states[C] = init_st(6, -2, P(CONST), S(INIT), S(CDEF), P(SEMICOLON), -1);
states[CDEF] = init_st(-2, P(COMMA), S(INIT), S(CDEF), -1); states[CDEF] = init_st(5, -2, P(COMMA), S(INIT), S(CDEF), -1);
states[INIT] = init_st(1, P(EQUAL), 2, -1); states[INIT] = init_st(4, 1, P(EQUAL), 2, -1);
states[V] = init_st(-2, P(VAR), 1, S(VDEF), P(SEMICOLON), -1); states[V] = init_st(6, -2, P(VAR), 1, S(VDEF), P(SEMICOLON), -1);
states[VDEF] = init_st(-2, P(COMMA), 1, S(VDEF), -1); states[VDEF] = init_st(5, -2, P(COMMA), 1, S(VDEF), -1);
states[PRO] = init_st(-2, P(PROCEDURE), 1, P(SEMICOLON), S(SP), S(PRO), -1); states[PRO] = init_st(7, -2, P(PROCEDURE), 1, P(SEMICOLON), S(SP), S(PRO), -1);
states[ST] = init_st(-2, 1, P(ASSIGNMENT), S(EXP), -2, P(CALL), 1, -2, states[ST] = init_st(35, -2, 1, P(ASSIGNMENT), S(EXP), -2, P(CALL), 1, -2,
P(BEGIN), S(ST), S(MORE), P(END), -2, P(IF), S(COND), P(THEN), S(ST), -2, P(BEGIN), S(ST), S(MORE), P(END), -2, P(IF), S(COND), P(THEN), S(ST), -2,
P(WHILE), S(COND), P(DO), S(ST), -2, P(READ), P(LP), 1, P(RP), -2, P(WRITE), P(WHILE), S(COND), P(DO), S(ST), -2, P(READ), P(LP), 1, P(RP), -2, P(WRITE),
P(LP), 1, P(RP), -2, P(SEMICOLON), - 1); P(LP), 1, P(RP), -2, P(SEMICOLON), - 1);
states[MORE] = init_st(-2, P(SEMICOLON), S(ST), S(MORE), -1); states[MORE] = init_st(5, -2, P(SEMICOLON), S(ST), S(MORE), -1);
states[COND] = init_st(P(ODD), S(EXP), -2, S(EXP), A_MOD, S(EXP), -1); states[COND] = init_st(7, P(ODD), S(EXP), -2, S(EXP), A_MOD, S(EXP), -1);
states[EXP] = init_st(S(ARI2), S(TERM), S(EXP2), -1); states[EXP] = init_st(4, S(ARI2), S(TERM), S(EXP2), -1);
states[EXP2] = init_st(-2, S(ARITH), S(TERM), S(EXP2), -1); states[EXP2] = init_st(5, -2, S(ARITH), S(TERM), S(EXP2), -1);
states[ARITH] = init_st(P(PLUS), -2, P(MINUS), -1); states[ARITH] = init_st(4, P(PLUS), -2, P(MINUS), -1);
states[ARI2] = init_st(-2, S(ARITH), - 1); states[ARI2] = init_st(3, -2, S(ARITH), - 1);
states[TERM] = init_st(S(FACT), S(FACTS), -1); states[TERM] = init_st(3, S(FACT), S(FACTS), -1);
states[FACTS] = init_st(-2, S(MULDIV), S(FACT), S(FACTS), -1); states[FACTS] = init_st(5, -2, S(MULDIV), S(FACT), S(FACTS), -1);
states[MULDIV] = init_st(P(MULTIPLE), -2, P(DIVISION), -1); states[MULDIV] = init_st(4, P(MULTIPLE), -2, P(DIVISION), -1);
states[FACT] = init_st(1, -2, 2, -2, P(LP), S(EXP), P(RP), -1); states[FACT] = init_st(8, 1, -2, 2, -2, P(LP), S(EXP), P(RP), -1);
follows = new int*[FACT + 1]; follows = new int*[FACT + 1];
follows[P] = init_follow(-1); follows[P] = init_follow(1, -1);
follows[SP] = init_follow(P(DOT), P(END), P(SEMICOLON), P(BEGIN), P(CALL), P(IF), P(WHILE), P(READ), P(WRITE), 1, P(PROCEDURE)); follows[SP] = init_follow(11, P(DOT), P(END), P(SEMICOLON), P(BEGIN), P(CALL), P(IF), P(WHILE), P(READ), P(WRITE), 1, P(PROCEDURE));
follows[C] = init_follow(P(VAR), P(END), P(SEMICOLON), P(BEGIN), P(CALL), P(IF), P(WHILE), P(READ), P(WRITE), 1, P(PROCEDURE)); follows[C] = init_follow(11, P(VAR), P(END), P(SEMICOLON), P(BEGIN), P(CALL), P(IF), P(WHILE), P(READ), P(WRITE), 1, P(PROCEDURE));
follows[CDEF] = init_follow(P(SEMICOLON)); follows[CDEF] = init_follow(1, P(SEMICOLON));
follows[INIT] = init_follow(P(SEMICOLON), P(COMMA)); follows[INIT] = init_follow(2, P(SEMICOLON), P(COMMA));
follows[V] = init_follow(P(SEMICOLON), P(PROCEDURE), P(END), P(BEGIN), P(CALL), P(IF), P(WHILE), P(READ), P(WRITE), 1); follows[V] = init_follow(10, P(SEMICOLON), P(PROCEDURE), P(END), P(BEGIN), P(CALL), P(IF), P(WHILE), P(READ), P(WRITE), 1);
follows[VDEF] = init_follow(P(SEMICOLON)); follows[VDEF] = init_follow(1, P(SEMICOLON));
follows[PRO] = init_follow(P(END), P(SEMICOLON), P(BEGIN), P(CALL), P(IF), P(WHILE), P(READ), P(WRITE), 1); follows[PRO] = init_follow(9, P(END), P(SEMICOLON), P(BEGIN), P(CALL), P(IF), P(WHILE), P(READ), P(WRITE), 1);
follows[ST] = init_follow(P(END), P(SEMICOLON)); follows[ST] = init_follow(2, P(END), P(SEMICOLON));
follows[MORE] = init_follow(P(END)); follows[MORE] = init_follow(1, P(END));
follows[COND] = init_follow(P(THEN), P(DO)); follows[COND] = init_follow(2, P(THEN), P(DO));
follows[EXP] = init_follow(A_MOD, P(THEN), P(DO), P(RP), P(END), P(SEMICOLON)); follows[EXP] = init_follow(6, A_MOD, P(THEN), P(DO), P(RP), P(END), P(SEMICOLON));
follows[EXP2] = init_follow(A_MOD, P(THEN), P(DO), P(RP), P(END), P(SEMICOLON)); follows[EXP2] = init_follow(6, A_MOD, P(THEN), P(DO), P(RP), P(END), P(SEMICOLON));
follows[ARITH] = init_follow(1, 2, P(LP)); follows[ARITH] = init_follow(3, 1, 2, P(LP));
follows[ARI2] = init_follow(1, 2, P(LP)); follows[ARI2] = init_follow(3, 1, 2, P(LP));
follows[TERM] = init_follow(P(PLUS), P(MINUS), A_MOD, P(THEN), P(DO), P(RP), P(END), P(SEMICOLON)); follows[TERM] = init_follow(8, P(PLUS), P(MINUS), A_MOD, P(THEN), P(DO), P(RP), P(END), P(SEMICOLON));
follows[FACTS] = init_follow(P(PLUS), P(MINUS), A_MOD, P(THEN), P(DO), P(RP), P(END), P(SEMICOLON)); follows[FACTS] = init_follow(8, P(PLUS), P(MINUS), A_MOD, P(THEN), P(DO), P(RP), P(END), P(SEMICOLON));
follows[MULDIV] = init_follow(1, 2, P(LP)); follows[MULDIV] = init_follow(3, 1, 2, P(LP));
follows[FACT] = init_follow(P(MULTIPLE), P(DIVISION), P(PLUS), P(MINUS), A_MOD, P(THEN), P(DO), P(END), P(SEMICOLON), P(RP)); follows[FACT] = init_follow(10, P(MULTIPLE), P(DIVISION), P(PLUS), P(MINUS), A_MOD, P(THEN), P(DO), P(END), P(SEMICOLON), P(RP));
instructions.pb(new Instruction(JMP, 0, -1)); instructions.pb(new Instruction(JMP, 0, -1));
@ -970,7 +958,6 @@ void initStates() {
checklist[0] = true; checklist[0] = true;
} }
//stack<void(*) (deque<IDS*>::iterator)> callback;
@ -979,7 +966,7 @@ inline void expend(set<Indexes> &togo) {
int size0, j; int size0, j;
do { do {
size0 = togo.size(); size0 = togo.size();
for each (Indexes var in togo) for (Indexes var : togo)
{ {
j = states[var.i][var.j][var.k]; j = states[var.i][var.j][var.k];
int i; int i;
@ -998,8 +985,7 @@ inline void expend(set<Indexes> &togo) {
void Shift(set<Indexes> togo) { void Shift(set<Indexes> togo) {
if (lv == 0) if (lv == 0)
int null = 1; int null = 1;
if (address == 75)
int fuck = 1;
//shifting //shifting
Reduced* nextsym = peekNext(); Reduced* nextsym = peekNext();
set<Indexes> tobeReduced; set<Indexes> tobeReduced;
@ -1072,7 +1058,7 @@ void Shift(set<Indexes> togo) {
if (!togo.empty()) if (!togo.empty())
{ {
set<Indexes> togoNext; set<Indexes> togoNext;
for each (Indexes var in togo){ for (Indexes var : togo){
var.k++; var.k++;
togoNext.insert(var); togoNext.insert(var);
} }
@ -1084,7 +1070,7 @@ void Shift(set<Indexes> togo) {
geting_proc = true; geting_proc = true;
else if (geting_proc && nexttype == 1) else if (geting_proc && nexttype == 1)
{ {
propos[lv]->push_back(pair<int, unsigned int>(*((int *)nextsym->param), INT_MAX)); propos[lv]->push_back(pair<int, unsigned int>(*((int *)nextsym->param), numeric_limits<int>::max()));
checklist[lv] = false; checklist[lv] = false;
geting_proc = false; geting_proc = false;
} }
@ -1103,41 +1089,43 @@ void BLOCK() {
// //
expend(going); expend(going);
Shift(going); Shift(going);
//callback.push(&I1);
// instructions[0]->rop = 1;//lastSP.top();
//lastSP.pop();
vartable.clear(); vartable.clear();
cout << address <<Next() << endl; cout << address <<Next() << '\n';
} }
deque<void **> *memory; vector<void **> *memory;
deque<unsigned int> *t; vector<int> *t;
int PC, I; int PC, I;
void* b; void* b;
#define getij() _getij(i, j) #define getij() _getij(i, j)
#define geti _geti(i) #define geti _geti(i)
inline void _getij(unsigned int &i, unsigned int &j) { inline void _getij(int &i, int &j) {
j = t->back(); j = t->back();
t->pop_back(); t->pop_back();
i = t->back(); i = t->back();
t->pop_back(); t->pop_back();
} }
inline void _geti(unsigned int &i) { inline void _geti(int &i) {
i = t->back(); i = t->back();
t->pop_back(); t->pop_back();
} }
void PARSE() { void PARSE() {
int inst = 0;
for (auto var : instructions)
cout << inst++ << " " << operations[var->nop] << " " << var->lop << " " << var->rop << '\n';
I = 0; I = 0;
PC = -1; PC = -1;
unsigned int i, j; int i, j;
memory = new deque<void **>; memory = new vector<void **>;
while (I < instructions.size()) while (I < instructions.size())
{ {
if (I == 44)
int fuck = 0; cout << "\n inst "<< I << '\n';
cout << "\n inst "<< I << endl;
switch (instructions[I] ->nop) switch (instructions[I] ->nop)
{ {
case INT: case INT:
@ -1145,7 +1133,7 @@ void PARSE() {
b = new void*[instructions[I]->rop]; b = new void*[instructions[I]->rop];
memory->push_back((void **)b); memory->push_back((void **)b);
t = new deque<unsigned int>; t = new vector<int>;
((void **)b)[0] = t; ((void **)b)[0] = t;
((void **)b)[1] = b; ((void **)b)[1] = b;
((void **)b)[2] = new int(PC); ((void **)b)[2] = new int(PC);
@ -1161,10 +1149,10 @@ void PARSE() {
else else
return; return;
delete (deque<unsigned int> *)((void **)b)[0]; delete (vector< int> *)((void **)b)[0];
delete[]b; delete[] ((void**)b);
memory->pop_back(); memory->pop_back();
t = (deque<unsigned int > *)(memory->back()[0]); t = (vector< int > *)(memory->back()[0]);
b = memory->back()[1]; b = memory->back()[1];
continue; continue;
} }
@ -1198,7 +1186,7 @@ void PARSE() {
getij(); getij();
if (j == 0) if (j == 0)
{ {
cout << "Error: Division by zero" << endl; cout << "Error: Division by zero" << '\n';
exit(1); exit(1);
} }
t->push_back(i / j); t->push_back(i / j);
@ -1257,7 +1245,7 @@ void PARSE() {
else { else {
i = t->back(); i = t->back();
t->pop_back(); t->pop_back();
cout << i; cout << i <<'\n';
} }
break; break;
@ -1293,7 +1281,7 @@ void PARSE() {
I = instructions[I]->rop; I = instructions[I]->rop;
break; break;
default: default:
cout << "Undefined Instruction: \n" << operations[instructions[I]->nop] << " " << instructions[I]->lop << " " << instructions[I]->rop << endl; cout << "Undefined Instruction: \n" << operations[instructions[I]->nop] << " " << instructions[I]->lop << " " << instructions[I]->rop << '\n';
break; break;
} }
I++; I++;
@ -1302,86 +1290,22 @@ void PARSE() {
delete memory; delete memory;
} }
inline void test_main(){
cout << "************************Tests*************************" << endl;
valarray<int>
a;
void * pointer;
HASH<char*> fuck = HASH<char*>("fuck", 1);
pointer = &fuck;
((HASH<char*>*) pointer)->value;
printf("%s\n", ((HASH<char*>*) pointer)->value);
int *follow;
int f[] = { 1,2 };
follow = f;
printf("%d\n", P(NOTEQ));
it = identifiers.begin() + 2;
stack<set<Indexes>> st1;
set<Indexes > fucked;
st1.push(fucked);
fucked.insert(Indexes(1, 2, 3));
fucked.insert(Indexes(1, 4, 3));
fucked.insert(Indexes(3, 3, 2));
fucked.insert(Indexes(1, 2, 7));
fucked.insert(Indexes(1, 2, 3));
if (st1.top().size())
exit(1);
for each (Indexes var in fucked)
{
if (var.i == 1)
fucked.insert(Indexes(0, var.j, var.k));
cout << var.i << '\t' << var.j << '\t' << var.k << endl;
}
do {
while (false);
} while (false);
vector<bool> B;
vector<long double> LD;
B.push_back(1);
LD.push_back(1);
deque<Instruction *> deq;
deq.push_back(new Instruction(1, 2, 3));
deq.push_back(new Instruction(3, 4, 5));
deq.push_back(new Instruction(0, 3, 7));
deq.push_back(new Instruction(4, 7, 8));
//(deq.begin() + 2) =
deq.erase(deq.begin() + 1);
deque<Instruction *>::iterator iterat = deq.begin();
while (iterat != deq.end())
{
cout << (*iterat)->lop<<endl;
iterat++;
}
for (int i = 0; i < deq.size(); i++)
{
cout << deq[i]->lop << endl;
}
cout << "*********************Capacities***********************" << endl;
cout << B.capacity() << '\t' << LD.capacity() << endl;
cout << "*********************End Tests***********************" << endl;
}
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
long length; long length;
char* file = 0; char* file = 0;
FILE *fp = NULL; FILE *fp = NULL;
if (argc > 2) if (argc > 1)
fp = fopen(argv[1], "r"); fp = fopen(argv[1], "r");
//#ifdef _DEBUG else
fp = fopen("input2.pas", "r"); fp = fopen("input.pas", "r");
// test_main();
//#endif
if (!fp) if (!fp)
file = new char[65536]; file = new char[65536];
loop_input: while (!fp) { loop_input: while (!fp) {
cout << "Input the path of input file."<<endl; cout << "Input the path of input file."<<'\n';
scanf("%s", file); scanf("%s", file);
fp = fopen(file, "r"); fp = fopen(file, "r");
} }
@ -1389,18 +1313,17 @@ loop_input: while (!fp) {
length = ftell(fp); length = ftell(fp);
if (length > MAX_BUFFER) if (length > MAX_BUFFER)
{ {
cout << "Cannot handle now:)" << endl; cout << "Cannot handle now:)" << '\n';
fclose(fp); fclose(fp);
fp = NULL; fp = NULL;
goto loop_input; goto loop_input;
} }
fseek(fp, 0, SEEK_SET); fseek(fp, 0, SEEK_SET);
free(file);
fread(buffer, 1, length, fp); fread(buffer, 1, length, fp);
fclose(fp); fclose(fp);
buffer[length] = ' '; buffer[length] = ' ';
buffer[length] = EOF; buffer[length] = 0;
sym.reserve(512); sym.reserve(512);
num.reserve(512); num.reserve(512);
@ -1409,18 +1332,11 @@ loop_input: while (!fp) {
//PARSING //PARSING
BLOCK(); BLOCK();
//Interprating //Interprating
/*for (int i = instructions.size() -1; i > 0; i--)
{
Instruction *var = instructions[i];
*/
int inst = 0;
for each (Instruction *var in instructions)
{
cout <<inst++ <<" "<< operations[var->nop] << " "<< var->lop << " "<< var->rop << endl;
}
PARSE(); PARSE();
cout << "\n\nProgram ended.\n";
if(file)
delete[] file;
return 0; return 0;
} }

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations"> <ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32"> <ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration> <Configuration>Debug</Configuration>
@ -22,32 +22,33 @@
<ProjectGuid>{62CCFC20-46DF-4039-97A5-AA068BD6A016}</ProjectGuid> <ProjectGuid>{62CCFC20-46DF-4039-97A5-AA068BD6A016}</ProjectGuid>
<Keyword>Win32Proj</Keyword> <Keyword>Win32Proj</Keyword>
<RootNamespace>ConsoleApplication18</RootNamespace> <RootNamespace>ConsoleApplication18</RootNamespace>
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion> <WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
<ProjectName>BadassPascal</ProjectName>
</PropertyGroup> </PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType> <ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries> <UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v100</PlatformToolset> <PlatformToolset>v141</PlatformToolset>
<CharacterSet>Unicode</CharacterSet> <CharacterSet>Unicode</CharacterSet>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType> <ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries> <UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset> <PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization> <WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet> <CharacterSet>Unicode</CharacterSet>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType> <ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries> <UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v100</PlatformToolset> <PlatformToolset>v141</PlatformToolset>
<CharacterSet>Unicode</CharacterSet> <CharacterSet>Unicode</CharacterSet>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType> <ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries> <UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset> <PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization> <WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet> <CharacterSet>Unicode</CharacterSet>
</PropertyGroup> </PropertyGroup>
@ -100,11 +101,16 @@
</PrecompiledHeader> </PrecompiledHeader>
<WarningLevel>Level3</WarningLevel> <WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization> <Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> <PreprocessorDefinitions>_ALLOW_RTCc_IN_STL;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SmallerTypeCheck>true</SmallerTypeCheck>
<ControlFlowGuard>Guard</ControlFlowGuard>
<FunctionLevelLinking>true</FunctionLevelLinking>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Console</SubSystem> <SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation> <GenerateDebugInformation>true</GenerateDebugInformation>
<StackReserveSize>33554432</StackReserveSize>
</Link> </Link>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
@ -127,30 +133,31 @@
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile> <ClCompile>
<WarningLevel>Level3</WarningLevel> <WarningLevel>Level3</WarningLevel>
<PrecompiledHeader> <PrecompiledHeader>NotUsing</PrecompiledHeader>
</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization> <Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking> <FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions> <IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<OmitFramePointers>true</OmitFramePointers>
<EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
<ExceptionHandling>false</ExceptionHandling>
<BufferSecurityCheck>false</BufferSecurityCheck>
<EnableEnhancedInstructionSet>AdvancedVectorExtensions2</EnableEnhancedInstructionSet>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>
<LanguageStandard>stdcpplatest</LanguageStandard>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Console</SubSystem> <SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation> <GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding> <EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences> <OptimizeReferences>true</OptimizeReferences>
<StackReserveSize>33554432</StackReserveSize>
</Link> </Link>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemGroup> <ItemGroup>
<Text Include="ReadMe.txt" /> <ClCompile Include="BadassPascal.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="stdafx.h" />
<ClInclude Include="targetver.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="ConsoleApplication18.cpp" />
<ClCompile Include="stdafx.cpp" />
</ItemGroup> </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets"> <ImportGroup Label="ExtensionTargets">

Binary file not shown.

@ -1,36 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<Text Include="ReadMe.txt" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="stdafx.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="targetver.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="stdafx.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="ConsoleApplication18.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
</Project>

@ -1,40 +0,0 @@
========================================================================
CONSOLE APPLICATION : ConsoleApplication18 Project Overview
========================================================================
AppWizard has created this ConsoleApplication18 application for you.
This file contains a summary of what you will find in each of the files that
make up your ConsoleApplication18 application.
ConsoleApplication18.vcxproj
This is the main project file for VC++ projects generated using an Application Wizard.
It contains information about the version of Visual C++ that generated the file, and
information about the platforms, configurations, and project features selected with the
Application Wizard.
ConsoleApplication18.vcxproj.filters
This is the filters file for VC++ projects generated using an Application Wizard.
It contains information about the association between the files in your project
and the filters. This association is used in the IDE to show grouping of files with
similar extensions under a specific node (for e.g. ".cpp" files are associated with the
"Source Files" filter).
ConsoleApplication18.cpp
This is the main application source file.
/////////////////////////////////////////////////////////////////////////////
Other standard files:
StdAfx.h, StdAfx.cpp
These files are used to build a precompiled header (PCH) file
named ConsoleApplication18.pch and a precompiled types file named StdAfx.obj.
/////////////////////////////////////////////////////////////////////////////
Other notes:
AppWizard uses "TODO:" comments to indicate parts of the source code you
should add to or customize.
/////////////////////////////////////////////////////////////////////////////

@ -1,8 +0,0 @@
// stdafx.cpp : source file that includes just the standard includes
// ConsoleApplication18.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file

@ -1,15 +0,0 @@
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
#include <stdio.h>
#include <tchar.h>
// TODO: reference additional headers your program requires here

@ -1,8 +0,0 @@
#pragma once
// Including SDKDDKVer.h defines the highest available Windows platform.
// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and
// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.
#include <SDKDDKVer.h>
Loading…
Cancel
Save