`pragma pack(push,1)`在GCC 4.4.7中崩溃。可能的编译错误?

时间:2015-07-27 22:31:56

标签: c++ gcc pragma gcc4

我遇到了一个让我难过的错误。我已经将它缩小到GCC中pragma pack命令的问题(特别是RHEL Linux,GCC v.4.4.7),可以在我下面显示的小样例中重新创建。在这种情况下,看起来GCC正在计算错误的偏移量,这将在循环中表现为崩溃。删除pragma包也可以消除故障 - 但在实际应用程序中,这将导致许多额外的GB内存使用,这是不可取的。

在下面的示例中,您需要在启用优化(O3)的情况下进行编译以体验失败。我还在结构中提供了一个可以删除的示例项(cMagic),它将改变结构对齐并防止错误触发。

我已经看了一下生成的程序集,并认为这可能是编译器错误。我错过了别的什么吗?任何人都可以确认此错误或提供任何见解吗?

Crash.cpp:

/*  Platform Version Info:
 *     gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-16)
 *     uname: 2.6.32-504.16.2.el6.x86_64 #1 SMP Tue Mar 10 17:01:00 EDT 2015 x86_64 x86_64 x86_64 GNU/Linux
 *
 *  Compiling:
 *     Must use -O3 for compiling and linking
 *     CXX= g++ -g -O3 -fPIC -rdynamic -Wall -Wno-deprecated -DDEBUG
 *     CPP= g++ -g -O3 -fPIC -rdynamic -Wall -Wno-deprecated -DDEBUG
 *
 *  Notes:
 *     This appears to be an optimization and alignment issue.
 *     Getting rid of a byte in Place (cMagic) causes the program to complete successfully.
 *
 */


#include <stdlib.h>
#include <iostream>

using namespace std;

#pragma pack(push,1)  // Structures must be packed tightly
#define MAGICCONSTANT 17

struct Place {
   int iFoo;
   char cMagic;         // GCC doesn't like cMagic.  Disillusion it and everything is OK
   int aiArray[MAGICCONSTANT];
};


#pragma pack(pop)

int main(int argc, const char *argv[])
{
   Place *pPlace = new Place;   // Place must be on the heap... so new, calloc, malloc, etc

   for (int c = 0; (c < MAGICCONSTANT); c++) {
      pPlace->aiArray[c] = 0;
   }

   delete pPlace;

   cout << "Complete!" << endl;
   return 0;
}

生成文件:

CXX= g++ -g -O3 -fPIC -rdynamic -Wall -Wno-deprecated -DDEBUG
CPP= g++ -g -O3 -fPIC -rdynamic -Wall -Wno-deprecated -DDEBUG

OBJS=   Crash.o
SRCS=   Crash.cpp
TARG=   crash

debug:: ${TARG}

all:: ${TARG}

${TARG}: ${OBJS}
        ${CPP} -o ${TARG} ${OBJS} ${LDFLAGS} ${LIBS}

clean::
        rm -f ${TARG} ${OBJS} ${TARG}.core core

反汇编图表(生成的ASM代码):

Disassembly graph

1 个答案:

答案 0 :(得分:4)

请使用__attribute__ ((packed));代替#pragma pack(1)。 IIRC,这个版本的海湾合作委员会对待它有点不同。