我要为这个分段错误发疯了。我正在编写一个简单的 2 遍汇编程序。剥离中间文件以获取操作码、符号表条目等工作正常。我现在正在将机器代码缓冲区打印到控制台,但有些东西导致了分段错误。
#include"./assembler.h"
using namespace std;
int main(void)
{
ifstream inf("pooltab");
int pooltab[10],pooltab_ptr=0;
while(true)
{
int x;
inf>>x;
if(inf.eof()) break;
pooltab[pooltab_ptr++] = x;
}
for(int i=0;i<pooltab_ptr;i++)
cout<<pooltab[i]<<endl;
pooltab_ptr = 0;
inf.close();
inf.open("intermediate.asm");
// ofstream outf("machine_code");
sym_tab symtab;
literal_tab littab;
symtab.create_tab();
littab.create_tab();
char buf[50],*token,*m_code_buf,ch;
int loc_cntr=0,id,ltrl,a,b;
while(true)
{
inf.getline(buf,50);
if(inf.eof()) break;
token = strtok(buf,"(), ");
if(token != NULL)
{
if(token[0] == 'A' && token[1] == 'D')
{
token = strtok(NULL,",)");
if(token == NULL)
{
cerr<<"null token error";
return -1;
}
id = atoi(token);
if(id == 1 || id == 2)
{
token = strtok(NULL,",() C");
if(token == NULL)
{
cerr<<"null token error";
return -1;
}
loc_cntr = atoi(token);
}
}
if(token[0] == 'I' && token[1] == 'S')
{
token = strtok(NULL,",)");
if(token == NULL)
{
cerr<<"null token error";
return -1;
}
id = atoi(token);
if(id == 10 || id == 11)
{
token = strtok(NULL,"S,() ");
if(token == NULL)
{
cerr<<"null token error";
return -1;
}
a = atoi(token);
a = symtab.get_addr(a);
sprintf(m_code_buf,"%03d) + %02d 0 %03d\n",loc_cntr,id,a);
cout<<m_code_buf;
}
else if(id == 1)
{
sprintf(m_code_buf,"%03d) + %02d 0 000\n",loc_cntr,id);
printf("%s",m_code_buf);
}
else if(id > 1 || id < 10)
{
token = strtok(NULL,"() ");
if(token == NULL)
{
cerr<<"null token error";
return -1;
}
a = token[0] - 48;
token = strtok(NULL," (,");
if(token == NULL)
{
cerr<<"null token error";
return -1;
}
ch = token[0];
printf("%d %d %c \n",id,a,ch);
}
loc_cntr++;
}
}
}
inf.close();
// outf.close();
return 0;
}
这是我(IS,1) (1) (S,1)
在中间代码文件中检查命令式语句的方式。错误在sprintf
. 现在,当我对代码进行更改时,故障似乎从一个地方跳到另一个地方。前任。在某一时刻,我使用cout
而不是printf
. 然后sprintf
就好了,但是 cout 产生了错误。然后我改变了 pooltab 的生成方式,现在sprintf
是麻烦制造者。