From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail1-relais-roc.national.inria.fr (mail1-relais-roc.national.inria.fr [192.134.164.82]) by walapai.inria.fr (8.13.6/8.13.6) with ESMTP id pBIDG8sE028163 for ; Sun, 18 Dec 2011 14:16:10 +0100 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ai0BAPTm7U5KfVM2kGdsb2JhbAApGqtRCCIBAQEBCQkNBxQEIYFyAQEBAwESAiwBATgPCxIGHBI0AQUBDg4GJw6HWAIGI5oECoozhB0BjUAHiyFjono9g3o X-IronPort-AV: E=Sophos;i="4.71,371,1320620400"; d="scan'208";a="135912489" Received: from mail-ee0-f54.google.com ([74.125.83.54]) by mail1-smtp-roc.national.inria.fr with ESMTP/TLS/RC4-SHA; 18 Dec 2011 14:16:09 +0100 Received: by eekc50 with SMTP id c50so5941711eek.27 for ; Sun, 18 Dec 2011 05:16:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; bh=I6FnJS1VuAltuWJrpfnZFB8dT6DuKG/ckLMRFuJYIxE=; b=G/SHjtwXypI8Fr3PdmsFUbI19ZwUtxlMpxSaO31bsw8Zeg1i/pwMmbPogh2MBtHptX WR4KNUWMO/k9gTUuq5Sz1DMoN1HJFU99xh6vYHiU7eRHer9awV2kpnVQkGzwKo+NXcus glv81rX9BfQ8LTcWV7urJAq859UESDr2GtexQ= Received: by 10.213.21.145 with SMTP id j17mr4030988ebb.136.1324214169556; Sun, 18 Dec 2011 05:16:09 -0800 (PST) Received: from coruscant.kosmos.all (ip-95-223-170-32.unitymediagroup.de. [95.223.170.32]) by mx.google.com with ESMTPS id s16sm29941174eef.2.2011.12.18.05.16.07 (version=SSLv3 cipher=OTHER); Sun, 18 Dec 2011 05:16:08 -0800 (PST) Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 (Apple Message framework v1251.1) From: Benedikt Meurer In-Reply-To: Date: Sun, 18 Dec 2011 14:16:09 +0100 Message-Id: <6C51E613-171E-43BF-BAB6-DF24C76268A2@googlemail.com> References: <55531934-37A5-4CC5-AB67-20CE4CCE8269@googlemail.com> <4EE37070.4010702@inria.fr> <4EE63E88.40805@glondu.net> To: caml users X-Mailer: Apple Mail (2.1251.1) Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by walapai.inria.fr id pBIDG8sE028163 Subject: [Caml-list] Re: New experimental ARM backend [was: OCaml maintenance status / community fork (again)] On Dec 18, 2011, at 12:57 , Benedikt Meurer wrote: > > On Dec 13, 2011, at 21:39 , Benedikt Meurer wrote: > >> - Support for both softfp and VFPv3-D16 (if present). >> - Properly supports interworking with Thumb/Thumb-2 code (for both OCaml and C code!) >> - Supports dynamic linking and large memory models. >> - Optional support for position-independent code via -fPIC, disabled by default and not required for natdynlink. >> - Can emit both ARM and Thumb-2 code (currently Thumb-2 is used for ARMv7+ and ARM is used for everything else), with avg. code size savings of 27% for Thumb-2 (quite close the optimal 30% advertised by ARM Ltd.). I may also add support to emit small functions using Thumb-1 (for pre-ARMv7 / armel) in the future to reduce code size. >> - Supports both AAPCS (armel) as well as extended VFP calling conventions (armhf). >> - Properly supports backtraces. >> - Recognizes several special ARM instructions (=> reduced code size and latency). >> - Does not rely on GCC internals, but uses the standard ARM EABI runtime. > > - Support for both VFPv3-D16 and VFPv3(-D32), using ocamlopt switch -ffpu (armhf only). > - Support for architecture selection using -farch. > - Support for profiling using gprof. > - Code cleanups. > - Confirmed to work with Debian/armel on ARM9 / Cortex-A8 and Debian/armhf on Cortex-A8. Reported as PR#5433 at http://caml.inria.fr/mantis/view.php?id=5433. Benedikt