-3

我要为这个分段错误发疯了。我正在编写一个简单的 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是麻烦制造者。

4

4 回答 4

2

我猜这m_code_buf要么没有初始化,要么太小。

于 2013-03-10T12:55:35.047 回答
1

数组和指针不一样。

目前,您已定义m_code_buf为指向的指针char

char *m_code_buf;

只是一个指针。它没有指向任何地方。没有char它指向的对象。你不能开始把它当作它实际上指向任何有效的char对象。仅仅因为类型告诉您它将指向 a char,并不意味着它会自动执行。

当您将其更改为:

char m_code_buf[256];

这给了你一个数组char。它实际上char在内存中分配了 256 个大小的对象供您使用。然后将其传递给sprintf.

m_code_buf这里不是指针。但是,在许多上下文中,数组的名称会隐式转换为指向其第一个元素的指针。这就是为什么您可以开始将数组的名称视为指针,即使它不是.

于 2013-03-10T13:47:31.287 回答
1
if(token == NULL) cerr<<"null token error";
a = atoi(token);

如果tokenNULL,你只是传递NULLatoi...

于 2013-03-10T12:56:35.723 回答
0

这可能只是意味着您想要写的内容超出了缓冲区的承受能力。它让你写在别人的记忆上(段错误)。

于 2013-03-10T12:53:43.363 回答