To: | |
---|---|
Subject: | Re: [ts-7000] transferring floating point data from PC to TS7300 |
From: | "Don W. Carr" <> |
Date: | Mon, 19 Feb 2007 11:46:43 -0600 |
First, I do not know of ANY processor that has not adopted the standard IEEE format for 4 byte and 8 byte floating point numbers. There should never be ANY problem with the floating point numbers themselves. Integers, yes.
But, there is the problem of alignment, where, depending on the architecture, floating point numbers MUST be aligned on an even 2, 4, or 8 byte boundary. So, compilers will even automatically byte pad structures, to be sure that every structure in an array of structures, is aligned. Thus, if you run the program below, depending on your architecture, the size of the given structure could be either 9, 12, or 16, depending on BOTH architecture and compiler. For instance, early Borland compilers were optimized for space instead of time, and allocated only 9 bytes for the structure below, and then, at runtime, copied floating point numbers to an aligned memory location before accessing. If you look at the assembly language output of your compiler, it can be quite interesting at times. As a general rule, NEVER pass structures between computers, and never read or write floating point numbers copied to buffers that are not known to be aligned. You must first copy them to know aligned areas using memcpy(). Hint: malloc() always returns memory, whose start is aligned for ALL data types. Don. #include <stdio.h> typedef struct mys_t { double d; char c; }; int main(int argc, char *argv[]) { mys_t mys; printf("sizeof(mys) = %d\n", sizeof(mys)); } On 2/17/07, Oguz Dilmac <> wrote:
|
<Prev in Thread] | Current Thread | [Next in Thread> |
---|---|---|
|
Previous by Date: | Re: [ts-7000] recommended books, Alvaro Aguirre |
---|---|
Next by Date: | Re: [ts-7000] recommended books, Don W. Carr |
Previous by Thread: | [ts-7000] Re: transferring floating point data from PC to TS7300, Yan Seiner |
Next by Thread: | [ts-7000] Re: transferring floating point data from PC to TS7300, Oguz Dilmac |
Indexes: | [Date] [Thread] [Top] [All Lists] |
Disclaimer: Neither Andrew Taylor nor the University of NSW School of Computer and Engineering take any responsibility for the contents of this archive. It is purely a compilation of material sent by many people to the birding-aus mailing list. It has not been checked for accuracy nor its content verified in any way. If you wish to get material removed from the archive or have other queries about the archive e-mail Andrew Taylor at this address: andrewt@cse.unsw.EDU.AU