caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] AArch64 (64 bit ARM) support?
@ 2013-03-23 23:25 Richard W.M. Jones
  2013-03-24 10:42 ` Xavier Leroy
  0 siblings, 1 reply; 5+ messages in thread
From: Richard W.M. Jones @ 2013-03-23 23:25 UTC (permalink / raw)
  To: caml-list


Just wondering if anyone is looking at AArch64 support for ocamlopt?

Rich.

-- 
Richard Jones
Red Hat

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Caml-list] AArch64 (64 bit ARM) support?
  2013-03-23 23:25 [Caml-list] AArch64 (64 bit ARM) support? Richard W.M. Jones
@ 2013-03-24 10:42 ` Xavier Leroy
  2013-03-24 18:42   ` Benedikt Meurer
  0 siblings, 1 reply; 5+ messages in thread
From: Xavier Leroy @ 2013-03-24 10:42 UTC (permalink / raw)
  To: caml-list

On 24/03/13 00:25, Richard W.M. Jones wrote:
> 
> Just wondering if anyone is looking at AArch64 support for ocamlopt?

I had a look at the ARM v8 / AArch64 documents when they were
released.

From a compiler writer's point of view, this architecture looks pretty
clean and unproblematic (thanks, ARM!), so I think it will be pretty
easy to support it in ocamlopt.  It looks like one of those ports that
can be completed in one week of work.

Personally, I'd rather wait until real hardware is available, because
developing with an emulator is a pain.

Cheers,

- Xavier Leroy


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Caml-list] AArch64 (64 bit ARM) support?
  2013-03-24 10:42 ` Xavier Leroy
@ 2013-03-24 18:42   ` Benedikt Meurer
  2013-03-25 22:09     ` Wojciech Meyer
  0 siblings, 1 reply; 5+ messages in thread
From: Benedikt Meurer @ 2013-03-24 18:42 UTC (permalink / raw)
  To: Xavier Leroy; +Cc: caml-list


On Mar 24, 2013, at 11:42 , Xavier Leroy <Xavier.Leroy@inria.fr> wrote:

> On 24/03/13 00:25, Richard W.M. Jones wrote:
>> 
>> Just wondering if anyone is looking at AArch64 support for ocamlopt?
> 
> I had a look at the ARM v8 / AArch64 documents when they were
> released.
> 
> From a compiler writer's point of view, this architecture looks pretty
> clean and unproblematic (thanks, ARM!), so I think it will be pretty
> easy to support it in ocamlopt.  It looks like one of those ports that
> can be completed in one week of work.
> 
> Personally, I'd rather wait until real hardware is available, because
> developing with an emulator is a pain.

I was hoping to get access to preliminary ARM v8 hardware at my new employer later this year, so I could start adding the necessary changes to the ARM backend.

> Cheers,
> - Xavier Leroy

greets,
Benedikt

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Caml-list] AArch64 (64 bit ARM) support?
  2013-03-24 18:42   ` Benedikt Meurer
@ 2013-03-25 22:09     ` Wojciech Meyer
  2013-03-26  7:39       ` Stéphane Glondu
  0 siblings, 1 reply; 5+ messages in thread
From: Wojciech Meyer @ 2013-03-25 22:09 UTC (permalink / raw)
  To: Benedikt Meurer; +Cc: Xavier Leroy, caml-list

Hello,

I might actually just ask ARM if they have anything for you to help
with the Aarch64 backend.
Will keep you up to date.

all the best,
Wojciech

On Sun, Mar 24, 2013 at 6:42 PM, Benedikt Meurer
<benedikt.meurer@googlemail.com> wrote:
>
> On Mar 24, 2013, at 11:42 , Xavier Leroy <Xavier.Leroy@inria.fr> wrote:
>
>> On 24/03/13 00:25, Richard W.M. Jones wrote:
>>>
>>> Just wondering if anyone is looking at AArch64 support for ocamlopt?
>>
>> I had a look at the ARM v8 / AArch64 documents when they were
>> released.
>>
>> From a compiler writer's point of view, this architecture looks pretty
>> clean and unproblematic (thanks, ARM!), so I think it will be pretty
>> easy to support it in ocamlopt.  It looks like one of those ports that
>> can be completed in one week of work.
>>
>> Personally, I'd rather wait until real hardware is available, because
>> developing with an emulator is a pain.
>
> I was hoping to get access to preliminary ARM v8 hardware at my new employer later this year, so I could start adding the necessary changes to the ARM backend.
>
>> Cheers,
>> - Xavier Leroy
>
> greets,
> Benedikt
> --
> Caml-list mailing list.  Subscription management and archives:
> https://sympa.inria.fr/sympa/arc/caml-list
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Caml-list] AArch64 (64 bit ARM) support?
  2013-03-25 22:09     ` Wojciech Meyer
@ 2013-03-26  7:39       ` Stéphane Glondu
  0 siblings, 0 replies; 5+ messages in thread
From: Stéphane Glondu @ 2013-03-26  7:39 UTC (permalink / raw)
  To: Wojciech Meyer; +Cc: Benedikt Meurer, Xavier Leroy, caml-list

Le 25/03/2013 23:09, Wojciech Meyer a écrit :
> I might actually just ask ARM if they have anything for you to help
> with the Aarch64 backend.
> Will keep you up to date.

Debian and Ubuntu have been ported to this new architecture:

  http://lists.debian.org/debian-arm/2013/02/msg00054.html

Note: this guy is affiliated with ARM.


Cheers,

-- 
Stéphane



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-03-26  7:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-23 23:25 [Caml-list] AArch64 (64 bit ARM) support? Richard W.M. Jones
2013-03-24 10:42 ` Xavier Leroy
2013-03-24 18:42   ` Benedikt Meurer
2013-03-25 22:09     ` Wojciech Meyer
2013-03-26  7:39       ` Stéphane Glondu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).