From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,10dba3294c1a2195 X-Google-Attributes: gid103376,public From: Al Johnston Subject: Re: New to ada95: porting Date: 2000/02/29 Message-ID: <38BC5237.91FD3B95@mindspring.com>#1/1 X-Deja-AN: 591515915 Content-Transfer-Encoding: 7bit References: <38BB6D88.84BBF5BF@mindspring.com> <8uLu4.15698$yt2.371252@nnrp3-w.snfc21.pbi.net> X-Accept-Language: en X-Server-Date: 29 Feb 2000 23:13:17 GMT Content-Type: text/plain; charset=us-ascii Organization: MindSpring Enterprises Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 2000-02-29T23:13:17+00:00 List-Id: Most of your questions are TBD at this point... I don't have enough info yet on what and were the problems are or how to do this in ada95 yet. I am spending must of my time analyzing my source to find where the problems are and what does my universe of "problem" structures look like. the one I gave you is typical, but most of the stuff is a lot simpler... but there are quite a few of this level of complexity and a half dozen or so that are worse (2d unconstrained arrays). I would have to look up the real definition which covers any dimension unconstrained array... but for the 1-d case it occupies the 4 longwords (128 bits) before the beginning of the data. when you deference a pointer to the object or do a 'address on the object the address given is the address at the start of the data. 'size is the size of the data, excluding the size of the dope vector. The vector is: size of Element lower bound upper bound num of bytes occupied by data the last entry is derivable from the first 3, and does not include the size of the dope vector itself. > What did the old (publicly specified) dope vectors look like? > Do you have a lot of similar structures, or is the HSVP one > a worst case?