-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathligador.cpp~
198 lines (156 loc) · 3.62 KB
/
ligador.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
#include <iostream>
#include <streambuf>
#include <fstream>
#include <cstdlib>
#include <sstream>
#include <iomanip>
using namespace std;
struct No{
string str;
int endereco;
};
typedef struct No no;
int procuraEndereco(string nome);
no TSG[40];
int ligador(string montado1, string montado2, string tabUso1, string tabUso2, string tabDef1, string tabDef2, string codigoCarregavel){
ifstream modulo1(montado1);
ifstream modulo2(montado2);
ifstream tabelaDefinicao1(tabDef1);
ifstream tabelaDefinicao2(tabDef2);
ifstream tabelaUso1(tabUso1);
ifstream tabelaUso2(tabUso2);
ofstream intermediario( "intermediario.txt");
ofstream saida(codigoCarregavel);
int aux,aux2,tamanho=0,i,j,endereco=0;
int operando,tam,tamanhoTSG=0,tamanhoUSO=0;
string linha,auxiliar,reloca;
while(!modulo1.eof()){
modulo1 >> aux;
tamanho = tamanho + aux;
getline( modulo1, linha);
if (!modulo1.eof())
intermediario << aux << linha << endl;
}
while( !modulo2.eof()){
modulo2 >> tam;
if (!modulo2.eof())
intermediario << tam ;
if(tam == 3 || tam == 4){
modulo2 >> hex >> reloca;
intermediario << " " << reloca;
if(reloca == "01"){
modulo2 >> hex >> auxiliar;
intermediario << " " << auxiliar;
modulo2 >> auxiliar;
intermediario << " " << auxiliar;
modulo2 >> hex >> operando;
if(operando >= 0)
operando = operando + tamanho;
if(operando == -1)
intermediario << " " << -1;
else
intermediario << " " << hex << setfill('0') << setw(2) << operando;
}
}
getline(modulo2, linha);
if (!modulo2.eof())
intermediario << linha << endl;
tam = 0; reloca = "0";
}
intermediario.close();
i=0;
while( !tabelaDefinicao1.eof() ){
tabelaDefinicao1 >> TSG[i].str;
tabelaDefinicao1 >> TSG[i].endereco;
tamanhoTSG++;
i++;
}
i--;tamanhoTSG--;
while( !tabelaDefinicao2.eof() ){
tabelaDefinicao2 >> TSG[i].str;
tabelaDefinicao2 >> TSG[i].endereco;
TSG[i].endereco += tamanho;
tamanhoTSG++;
i++;
}
i--;tamanhoTSG--;
/*
for(i=0;i<tamanhoTSG;i++){
cout << TSG[i].str << ": " << TSG[i].endereco << endl;
}
*/
no USO[40];
j=0;
while( !tabelaUso1.eof() ){
tabelaUso1 >> USO[j].str;
tabelaUso1 >> USO[j].endereco;
if(USO[j].endereco == -2){
j--;
tamanhoUSO--;
}
tamanhoUSO++;
j++;
}
j--;tamanhoUSO--;
while( !tabelaUso2.eof() ){
tabelaUso2 >> USO[j].str;
tabelaUso2 >> USO[j].endereco;
USO[j].endereco += tamanho;
if(USO[j].endereco == tamanho-2){
j--;
tamanhoUSO--;
}
tamanhoUSO++;
j++;
}
j--;tamanhoUSO--;
/*
for(j=0;j<tamanhoUSO;j++){
cout << USO[j].str << ": " << USO[j].endereco << endl;
}
*/
ifstream inter( "intermediario.txt" );
for(i=0;i<tamanhoUSO;i++){
do{
inter >> aux;
endereco += aux;
saida << aux;
if(endereco < USO[i].endereco){
getline( inter, linha);
saida << linha << endl;
}
}while( endereco < USO[i].endereco);
inter >> reloca;
saida << " " << reloca;
inter >> hex >> auxiliar;
saida << " " << auxiliar;
inter >> auxiliar;
saida << " " << auxiliar;
inter >> hex >> operando;
operando = procuraEndereco(USO[i].str);
saida << " " << hex << setfill('0') << setw(2) << operando;
getline(inter, linha);
saida << linha << endl;
}
while( !inter.eof()){
getline(inter,linha);
saida << linha << endl;
}
modulo1.close();
modulo2.close();
tabelaDefinicao1.close();
tabelaDefinicao2.close();
tabelaUso1.close();
tabelaUso2.close();
saida.close();
inter.close();
return 0;
}
int procuraEndereco(string nome){
int i=0;
while(1){
if(TSG[i].str == nome)
return TSG[i].endereco;
i++;
}
}