gpt4 book ai didi

c++ - 需要帮助弄清楚为什么我会遇到这个段错误

转载 作者:行者123 更新时间:2023-11-28 08:06:54 26 4
gpt4 key购买 nike

我正在用 C++ 为 MIPS 流水线模拟器编写代码。我的功能之一是获取。经过一些调试后,我将范围缩小到发生段错误的提取函数。有人可以帮我弄清楚为什么会这样吗?代码如下:

void Simulator::fetch(){
int flag =0;
string buf, rd;
int i;
for(i = 0;i<4;i++){
if(pre_issue_buffer[i]==";"){
flag = 1;
break;
}
}
if(flag ==1){
if(i<3){
string instr = memory.read_memory(PC);
stringstream ss(instr);
vector<string> tokens;
while (ss >> buf)
tokens.push_back(buf);
string instruction = tokens.at(0);
if(instruction == "BREAK"){
brk =1;
instr_string=instruction;
}
else if(instruction=="NOP"){

instr_string=instruction;
}
else if(instruction=="J"){
int address=toInt(tokens.at(1));
if(address>this->break_addr){
cerr<<"Invalid Jump Address at: "<<PC<<endl;
}
PC = address;
exec_instr=instruction+"\t#"+tokens.at(1);
}
else if(instruction=="JR"){
rd = tokens.at(1);
if(regInUse[rd]==0){
p=regFile.find(tokens.at(1));
PC = p->second;
exec_instr=instruction+"\t"+tokens.at(1);
}
else
waiting_instr= instruction+"\t"+tokens.at(1);
}
else if(instruction=="BEQ"){
int rs,rt;
rd = tokens.at(1);
if(regInUse[rd]==0){
p=regFile.find(tokens.at(1));
rs = p->second;
p=regFile.find(tokens.at(2));
rt = p->second;
if(rs==rt){
int offset=toInt(tokens.at(3));
PC = PC+offset+4;
}
else
PC=PC+4;
exec_instr=instruction+"\t"+tokens.at(1)+", "+tokens.at(2)+", #"+tokens.at(3);
}
else
waiting_instr=instruction+"\t"+tokens.at(1)+", "+tokens.at(2)+", #"+tokens.at(3);
}
else if(instruction=="BLTZ"){
rd = tokens.at(1);
if(regInUse[rd]==0){
p = regFile.find(tokens.at(1));
int rs = p->second;
if(rs<0){
int offset=toInt(tokens.at(2));
PC = PC + offset+4;
}
else
PC=PC+4;
exec_instr=instruction+"\t"+tokens.at(1)+", #"+tokens.at(2);
}
else
waiting_instr=instruction+"\t"+tokens.at(1)+", #"+tokens.at(2);
}
else if(instruction=="BGTZ"){
rd = tokens.at(1);
if(regInUse[rd]==0){
p = regFile.find(tokens.at(1));
int rs = p->second;
if(rs>0){
int offset=toInt(tokens.at(2));
PC = PC + offset+4;
}
else
PC=PC+4;
exec_instr=instruction+"\t"+tokens.at(1)+", #"+tokens.at(2);
}
else
waiting_instr=instruction+"\t"+tokens.at(1)+", #"+tokens.at(2);
}
else{
rd = tokens.at(1);
pre_issue_buffer[i]=instr;
cout<<i<<endl;
PC=PC+4;
}

最佳答案

为每个数组检查您尝试访问的位置,并验证它是否在数组边界内。

我们没有足够的信息来回答。据我所知,它可能在函数的开头和结尾。

关于c++ - 需要帮助弄清楚为什么我会遇到这个段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10111880/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com