Re: Data representation formats

max@osf.org (Max Grasso)
Thu, 17 Nov 1994 23:02:25 GMT

          From comp.compilers

Related articles
Data representation formats ts@datcon.co.uk (1994-11-15)
Re: Data representation formats max@osf.org (1994-11-17)
Re: Data representation formats roedy@BIX.com (1994-11-20)
| List of all articles for this month |

Newsgroups: comp.client-server,comp.compilers,comp.lang.idl
From: max@osf.org (Max Grasso)
Keywords: tools, architecture
Organization: Open Software Foundation
References: 94-11-110
Date: Thu, 17 Nov 1994 23:02:25 GMT

ts@datcon.co.uk (Tony Sowter) writes:


> It seems to me that there must be a way of storing information about the
> packing used by the hardware/compiler combination in a handful of bytes
> (RPC systems must have something like this).






Neither ONC nor DCE deal with structure packing at all. In both cases
marshalling/unmarshalling of a structure is done 1 field at a time,
never in block.


Trying to describe structure packing is not obvious. Some compilers
reorder fields, some will align char arrays with an even number of
elements, but not char arrays with an odd number of elements (I have
one specific compiler in mind), etc. Dealing with all the possible
packings across many platform would probably require more logic than
one would care to have, at least as much as each compiler uses for its
optimizations.


I guess one could restrict the support to widely accepted ABI specs
for each platform. Still if the number of supported platforms is
large you are going to deal with quite a lot of logic needed at least
within each server process.


Max P. Grasso
max@osf.org
(617)621-8746
--


Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.