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,544e7f5698c48b7c X-Google-Attributes: gid103376,public From: Gene Ouye Subject: Re: precise floats Date: 1998/08/25 Message-ID: <35E266B0.D2DAC1B1@rational.please_no_unsolicited_mail.com>#1/1 X-Deja-AN: 384480725 Content-Transfer-Encoding: 7bit References: <6q7vtb$jk$1@heliodor.xara.net> <6q8afs$5aq$1@usenet.rational.com> <6q8b4a$5cu$1@usenet.rational.com> <6qco5r$v8n$1@nnrp1.dejanews.com> Content-Type: text/plain; charset=us-ascii Organization: Rational Software Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 1998-08-25T00:00:00+00:00 List-Id: Robert Dewar wrote: [...] > However, the above definitions are most certainly inadequate on the x86. > This machine fully supports the 80-bit floating-point format corresponding > the optional IEEE extended type. Indeed all arithmetic in the fpt chip is > in fact performed in this mode. I've gone through the 486, Pentium, and Pentium II manuals looking for something that shows the 80-bit floating-point format is "fully supported" and I don't see it. True, all FP operations are performed on numbers internally converted to the 80-bit format, and it is possible to load and store 80-bit FP numbers, but all the other FP operations FP numbers can only take operands from memory that are 64 bits or smaller (eg, FADD, FCOM, FCOMP, FDIV, FDIVR, FMUL, FSUB, FSUBR). [...] > Note: some people sometimes get confused into thinking that somehow the > 80-bit format is "reserved" and should not be used. This derives from the > intention in the IEEE-754 standard that the extended format be used for > the purposes of getting accurate 64-bit results (e.g. in the log/exp > case above). I am not confused between the IEEE-754 standard and the Intel Architecture Software Developer's Manual Volume 2: Instruction Set Reference or the Pentium Processor Family Developer's Manual Volume 3: Architecture and Programming Manual. Those Intel manuals and others I have examined do not make any claims that the 80-bit FP type is "fully supported", and an examination of all the operations available to the Pentium or 486 programmer does not lead me to the conclusion that the 80-bit FP type is "fully supported". What am I missing? Gene Ouye