2012-08-29 31 views
2

我正在处理这个问题一段时间,我无法弄清楚为什么它不起作用。该代码只是用于解决仿真问题的工作程序的扩展。我刚刚向结构中添加了两个字符串变量,并调整了必要的函数,以便交付附加参数。 Valgrind显示大约20个不同的条件跳转或移动取决于未初始化的值(s)错误。所有这些都提供了相同的错误消息:有条件跳转或移动取决于函数调用上的未初始化值(s)

Uninitialised value was created by a stack allocation 
at 0x401E23: addproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:360) 

低于相应的功能:

typedef struct tproxel *pproxel; 

typedef struct tproxel { 
    int  id;     /* unique proxel id for searching */ 
    int  s;     /* discrete state of SPN    */ 
    int  tau1k;    /* first supplementary variable  */ 
    int  tau2k;    /* second supplementary variable  */ 
    double val;     /* proxel probability    */ 
    string path;     /* previous path      */ 
    string output;    /* previous output     */ 
    pproxel left, right;   /* pointers to child proxels in tree */ 
} proxel; 


/* adds a new proxel to the tree */ 
void addproxel(int s, int tau1k, int tau2k, double val, string &path, string &output) { 
    proxel *temp, *temp2; 
    int cont = 1,id; 

    /* Alarm! TAUMAX overstepped! */ 
    if (tau1k >= TAUMAX) { 
     // printf(">>> %3d %3d %3d %7.5le \n", s, tau1k, val, TAUMAX); 
     tau1k = TAUMAX - 1; 
    } 

     /* compute id of new proxel */ 
    id = TAUMAX*(TAUMAX*s+tau1k)+tau2k; 

    /* New tree, add root */ 
    if (root[sw] == NULL) { 
     root[sw] = insertproxel(s,tau1k, tau2k, val, path, output); 
     root[sw]->left = NULL; 
     root[sw]->right = NULL; 
     return; 
    } 

    /* Locate insertion point in tree */ 
    temp = root[sw];  
    while (cont == 1) { 
     if ((temp->left != NULL) && (id < temp->id)) 
      temp = temp->left; 
     else 
      if ((temp->right != NULL) && (id > temp->id)) 
       temp = temp->right; 
      else 
       cont = 0; 
    } 

    /* Insert left leaf into tree */ 
    if ((temp->left == NULL) && (id < temp->id)) { 
     temp2  = insertproxel(s, tau1k,tau2k, val, path, output); 
     temp->left = temp2; 
     temp2->left = NULL; 
     temp2->right = NULL; 
     return; 
    } 

    /* Insert right leaf into tree */ 
    if ((temp->right == NULL) && (id > temp->id)) { 
     temp2  = insertproxel(s, tau1k,tau2k, val, path, output); 
     temp->right = temp2; 
     temp2->left = NULL; 
     temp2->right = NULL; 
     return; 
    } 

    /* Proxels have the same id, just add their vals */ 
    if (id == temp->id) { 
     temp->val += val; 
     return; 
    } 
    printf("\n\n\n!!!!!! addproxel failed !!!!!\n\n\n"); 
} 

/* compute size of tree */ 
int size(proxel *p) { 
    int sl, sr; 
    if (p == NULL) 
     return(0); 
    sl = size(p->left); 
    sr = size(p->right); 
    return(sl+sr+1); 
} 

添加了两个字符串变量的代码工作得很好,但现在我越来越只读存储器访问违规。经过几个小时的努力使代码工作,我不知道,什么是错的。

我希望有人能告诉我我错过了什么帮助,将不胜感激。

编辑:

我改变什么被@Jens指出了回到工作的代码在原PROGRAMM,现在我得到不同的错误:

==1900== 1 errors in context 1 of 4: 
==1900== Invalid read of size 4 
==1900== at 0x5159218: std::string::assign(std::string const&) (in /usr/lib/libstdc++.so.6.0.13) 
==1900== by 0x401CF1: insertproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:347) 
==1900== by 0x401E48: addproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:374) 
==1900== by 0x402195: main (HNMM.cpp:465) 
==1900== Address 0xfffffffffffffff8 is not stack'd, malloc'd or (recently) free'd 
==1900== 
==1900== 
==1900== 1 errors in context 2 of 4: 
==1900== Use of uninitialised value of size 8 
==1900== at 0x5159218: std::string::assign(std::string const&) (in /usr/lib/libstdc++.so.6.0.13) 
==1900== by 0x401CF1: insertproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:347) 
==1900== by 0x401E48: addproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:374) 
==1900== by 0x402195: main (HNMM.cpp:465) 
==1900== Uninitialised value was created by a heap allocation 
==1900== at 0x4C274A8: malloc (vg_replace_malloc.c:236) 
==1900== by 0x401C57: insertproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:336) 
==1900== by 0x401E48: addproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:374) 
==1900== by 0x402195: main (HNMM.cpp:465) 
==1900== 
==1900== 
==1900== 1 errors in context 3 of 4: 
==1900== Conditional jump or move depends on uninitialised value(s) 
==1900== at 0x51591A5: std::string::assign(std::string const&) (in /usr/lib/libstdc++.so.6.0.13) 
==1900== by 0x401CF1: insertproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:347) 
==1900== by 0x401E48: addproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:374) 
==1900== by 0x402195: main (HNMM.cpp:465) 
==1900== Uninitialised value was created by a heap allocation 
==1900== at 0x4C274A8: malloc (vg_replace_malloc.c:236) 
==1900== by 0x401C57: insertproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:336) 
==1900== by 0x401E48: addproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:374) 
==1900== by 0x402195: main (HNMM.cpp:465) 
==1900== 
==1900== 
==1900== 1 errors in context 4 of 4: 
==1900== Conditional jump or move depends on uninitialised value(s) 
==1900== at 0x5159181: std::string::assign(std::string const&) (in /usr/lib/libstdc++.so.6.0.13) 
==1900== by 0x401CF1: insertproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:347) 
==1900== by 0x401E48: addproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:374) 
==1900== by 0x402195: main (HNMM.cpp:465) 
==1900== Uninitialised value was created by a heap allocation 
==1900== at 0x4C274A8: malloc (vg_replace_malloc.c:236) 
==1900== by 0x401C57: insertproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:336) 
==1900== by 0x401E48: addproxel(int, int, int, double, std::string&, std::string&) (HNMM.cpp:374) 
==1900== by 0x402195: main (HNMM.cpp:465) 

各自的代码并且误差条生产线:

/* get a fresh proxel and copy data into it */ 
proxel *insertproxel(int s, int tau1k, int tau2k, double val, string &path, string &output) { 
    proxel *temp; 
    /* create new proxel or grab one from free list */ 
    if (firstfree == NULL) 
    temp = (proxel*) malloc(sizeof(proxel)); 
    else { 
    temp = firstfree; 
    firstfree = firstfree->right; 
    } 
    /* copy values */ 
    temp->id = TAUMAX*(TAUMAX*s+tau1k)+tau2k; 
    temp->s  = s; 
    temp->tau1k = tau1k; 
    temp->tau2k = tau2k; 
    temp->val = val; 
    temp->path = string(path); 
    temp->output = string(output); 
    ccpcnt  += 1; 
    if (maxccp < ccpcnt) { 
     maxccp = ccpcnt; 
     //printf("\n ccpcnt=%d",ccpcnt); 
    } 
    return(temp); 
} 

线336:

temp = (proxel*) malloc(sizeof(proxel)); 

行347:

temp->path = string(path); 

行374:

root[sw] = insertproxel(s,tau1k, tau2k, val, path, output); 
+1

你可以标记线? –

+0

哪些是报告的行,包括“条件跳转或移动”和“创建值”消息?此外,如果您可以将您的代码缩减为显示该问题的最小,完整的程序,将会非常有帮助。 –

回答

3

insertproxel要返回堆栈分配的变量的引用:

proxel temp2 = {0}; 
    temp = &temp2; 
    /* ... */ 
    return(temp); 
+0

感谢您的帮助,我已将代码更改回此功能的原始代码,但现在我收到更多错误。你可以在我编辑的开场白中找到更多细节。 – Faoran

+0

当包含'std :: string'时,不能使用'malloc'来分配'struct tproxel'。字符串构造函数将不会被调用。使用'新tproxel'。 (呵呵,'typedef struct foo {...} bar'是C++中的成语,你在C++中也不需要 - struct foo的声明将使foo成为一个类型名称。) –

+0

Once再次感谢您的帮助,现在一切都按预期工作。 – Faoran

相关问题