All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
To: Laurent Vivier <laurent@vivier.eu>
Cc: qemu-devel@nongnu.org, Aurelien Jarno <aurelien@aurel32.net>,
	Richard Henderson <rth@twiddle.net>
Subject: Re: [Qemu-devel] [PATCH v2 2/7] target/m68k: add fmovecr
Date: Tue, 27 Jun 2017 17:52:25 -0300	[thread overview]
Message-ID: <6728212e-9d8a-953b-d745-841bc3550691@amsat.org> (raw)
In-Reply-To: <283fac39-6f22-c3a2-50e5-1a434404e483@vivier.eu>

On 06/27/2017 02:58 PM, Laurent Vivier wrote:
> Le 27/06/2017 à 17:45, Philippe Mathieu-Daudé a écrit :
>>> +static const floatx80 fpu_rom[128] = {
>>> +    [0x00] = floatx80_pi,                                   /* Pi */
>>> +    [0x0b] = make_floatx80(0x3ffd, 0x9a209a84fbcff798ULL),  /*
>>> Log10(2) */
>>> +    [0x0c] = make_floatx80(0x4000, 0xadf85458a2bb4a9aULL),  /*
>>> e        */
>>> +    [0x0d] = make_floatx80(0x3fff, 0xb8aa3b295c17f0bcULL),  /*
>>> Log2(e)  */
>>> +    [0x0e] = make_floatx80(0x3ffd, 0xde5bd8a937287195ULL),  /*
>>> Log10(e) */
>>> +    [0x0f] = floatx80_zero,                                 /*
>>> Zero     */
>>> +    [0x30] = floatx80_ln2,                                  /*
>>> ln(2)    */
>>> +    [0x31] = make_floatx80(0x4000, 0x935d8dddaaa8ac17ULL),  /*
>>> ln(10)   */
>>> +    [0x32] = floatx80_one,                                  /*
>>> 10^0     */
>>> +    [0x33] = make_floatx80(0x4002, 0xa000000000000000ULL),  /*
>>> 10^1     */
>>> +    [0x34] = make_floatx80(0x4005, 0xc800000000000000ULL),  /*
>>> 10^2     */
>>> +    [0x35] = make_floatx80(0x400c, 0x9c40000000000000ULL),  /*
>>> 10^4     */
>>> +    [0x36] = make_floatx80(0x4019, 0xbebc200000000000ULL),  /*
>>> 10^8     */
>>> +    [0x37] = make_floatx80(0x4034, 0x8e1bc9bf04000000ULL),  /*
>>> 10^16    */
>>> +    [0x38] = make_floatx80(0x4069, 0x9dc5ada82b70b59eULL),  /*
>>> 10^32    */
>>> +    [0x39] = make_floatx80(0x40d3, 0xc2781f49ffcfa6d5ULL),  /*
>>> 10^64    */
>>> +    [0x3a] = make_floatx80(0x41a8, 0x93ba47c980e98ce0ULL),  /*
>>> 10^128   */
>>> +    [0x3b] = make_floatx80(0x4351, 0xaa7eebfb9df9de8eULL),  /*
>>> 10^256   */
>>> +    [0x3c] = make_floatx80(0x46a3, 0xe319a0aea60e91c7ULL),  /*
>>> 10^512   */
>>> +    [0x3d] = make_floatx80(0x4d48, 0xc976758681750c17ULL),  /*
>>> 10^1024  */
>>> +    [0x3e] = make_floatx80(0x5a92, 0x9e8b3b5dc53d5de5ULL),  /*
>>> 10^2048  */
>>> +    [0x3f] = make_floatx80(0x7525, 0xc46052028a20979bULL),  /*
>>> 10^4096  */ +};
>>> +
>>>   int32_t HELPER(reds32)(CPUM68KState *env, FPReg *val)
>>>   {
>>>       return floatx80_to_int32(val->d, &env->fp_status);
>>> @@ -204,3 +229,8 @@ void HELPER(ftst)(CPUM68KState *env, FPReg *val)
>>>       }
>>>       env->fpsr = (env->fpsr & ~FPSR_CC_MASK) | cc;
>>>   }
>>> +
>>> +void HELPER(fconst)(CPUM68KState *env, FPReg *val, uint32_t offset)
>>> +{
>>> +    val->d = fpu_rom[offset];
>>
>> For offset not declared in fpu_rom (0x1..0xa, 0x10..0x2f, 0x40..0x7f),
>> this will return floatx80_zero, is this correct?
> 
> yes, according to the doc:
> 
> The values contained at offsets other than those defined above are
> reserved for the use of Motorola and may be different on various mask
> sets of the floating-point coprocessor. These undefined values yield the
> value 0.0 in the M68040FPSP

can you add this comment before/in the fpu_rom array please?

  reply	other threads:[~2017-06-27 20:52 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-26 22:03 [Qemu-devel] [PATCH v2 0/7] target/m68k: implement 680x0 FPU (part 2) Laurent Vivier
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 1/7] target/m68k: add fscc Laurent Vivier
2017-06-26 22:55   ` Richard Henderson
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 2/7] target/m68k: add fmovecr Laurent Vivier
2017-06-27 15:45   ` Philippe Mathieu-Daudé
2017-06-27 17:58     ` Laurent Vivier
2017-06-27 20:52       ` Philippe Mathieu-Daudé [this message]
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 3/7] target/m68k: add explicit single and double precision operations Laurent Vivier
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 4/7] softfloat: define floatx80_round() Laurent Vivier
2017-06-27 15:13   ` Laurent Vivier
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 5/7] target/m68k: add fsglmul and fsgldiv Laurent Vivier
2017-06-26 22:57   ` Richard Henderson
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 6/7] target/m68k: add explicit single and double precision operations (part 2) Laurent Vivier
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 7/7] target/m68k: add fmovem Laurent Vivier
2017-06-26 23:32   ` Richard Henderson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6728212e-9d8a-953b-d745-841bc3550691@amsat.org \
    --to=f4bug@amsat.org \
    --cc=aurelien@aurel32.net \
    --cc=laurent@vivier.eu \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.