Displaying 3 results from an estimated 3 matches for "cutdatachecksum".
2011 Oct 20
3
[LLVMdev] Crash with optimization for size
...he address of the global variable loaded into AX is not necessarily aligned; as it isn't in our case, which leads to the crash.
Here's is the code; it is loading the address of a global variable into AX, and tries to copy the data member, coming from the following class:
MD5::FingerPrint cutDataCheckSum = ::gFloorPlanCutData.GetCutDataCheckSum ();
memcpy (elemData->cutDataCheckSum, cutDataCheckSum.data, sizeof (elemData->cutDataCheckSum));
namespace MD5 {
class GSROOT_DLL_EXPORT FingerPrint {
public:
FingerPrint ();
virtual ~FingerPrint () {};
FingerPrint (unsigned char fp[16]);
v...
2011 Oct 20
0
[LLVMdev] Crash with optimization for size
...variable loaded into AX is not necessarily aligned; as it isn't in our case, which leads to the crash.
>
> Here's is the code; it is loading the address of a global variable into AX, and tries to copy the data member, coming from the following class:
>
> MD5::FingerPrint
> cutDataCheckSum = ::gFloorPlanCutData.GetCutDataCheckSum ();
> memcpy (elemData->cutDataCheckSum, cutDataCheckSum.data, sizeof (elemData->cutDataCheckSum));
>
>
> namespace MD5 {
> class GSROOT_DLL_EXPORT FingerPrint {
> public:
> FingerPrint ();
> virtual ~FingerPrint () {};
> F...
2011 Oct 21
1
[LLVMdev] Crash with optimization for size
...the address of the global variable loaded into AX is not necessarily aligned; as it isn't in our case, which leads to the crash.
Here's is the code; it is loading the address of a global variable into AX, and tries to copy the data member, coming from the following class:
MD5::FingerPrintcutDataCheckSum = ::gFloorPlanCutData.GetCutDataCheckSum ();
memcpy (elemData->cutDataCheckSum, cutDataCheckSum.data, sizeof (elemData->cutDataCheckSum));
namespace MD5 {
class GSROOT_DLL_EXPORT FingerPrint {
public:
FingerPrint ();
virtual ~FingerPrint () {};
FingerPrint (unsignedchar fp[16]);
void...