在 Perl 6 中,如何使用 NativeCall 接口将原始字节转换为浮点数?

In Perl 6, how can I convert from raw bytes to floating point using the NativeCall interface?

来自 this conversation in the Perl 6 IRC channel and a question posted by Martin Barth, I'm trying to reproduce this C code 使用 Perl6 NativeCall 接口,该接口用于该目的。这是我试过的:

use NativeCall;

my uint32 $num = .new;
my num32 $float = .new: Num(1.0);

sub memcpy(num32 $float, uint32 $num, int32 $size) is native('Str') { * };

memcpy($float,$num,4);
say $num;

这会产生一个错误:

This type cannot unbox to a native integer: P6opaque, Any

我的解释是,好吧,你已经将其声明为整数,我无法将其转换为原始内存以便可以将其从这里复制到那里。

这只是 Martin Barth 回答更一般性问题的一种可能方式:如何将原始字节转换为浮点数。也许还有其他方法可以做到这一点,但无论如何我都很想知道如何将 C 程序转换为 NativeCall 等价物。

更新: 同时,.

使用联合(其中所有字段共享同一内存space)可能是最自然的方式。像这样声明联合:

my class Convertor is repr<CUnion> {
    has uint32 $.i is rw;
    has num32 $.n is rw;
}

然后用它来做转换:

my $c = Convertor.new;
$c.i = 0b1000010111101101100110011001101;
say $c.n  # 123.4000015258789

另一个问题与问题的实质无关,但出现在发布的代码中:本机整数和次数 从不 需要完成 .new在他们身上,因为他们不是对象类型。这个:

my uint32 $num = .new;

应该是:

my uint32 $num;

并且:

my num32 $float = .new: Num(1.0);

应该是:

my num32 $float = 1e0;

e 指数的使用使文字在 Perl 6 中成为浮点数。