Hi All, I just added this table: http://llvm.org/docs/CodeGenerator.html#targetfeatures To help explain what features are supported by what targets. We've long had a variety of vague statements on various web pages, and having a centralized place that lists all the supported targets and what features they have seems useful. Improvements and additions are welcome. I don't know the current state of most targets, so I left them as "unknown". -Chris
On 24 October 2010 17:21, Chris Lattner <clattner at apple.com> wrote:> I just added this table: > http://llvm.org/docs/CodeGenerator.html#targetfeaturesHi Chris, That's great! I didn't know ARM back-end had support for inline assembly. If there is no assembly parser, does it call gas in a special way? -- cheers, --renato http://systemcall.org/ Reclaim your digital rights, eliminate DRM, learn more at http://www.defectivebydesign.org/what_is_drm
On Oct 24, 2010, at 10:36 AM, Renato Golin wrote:> On 24 October 2010 17:21, Chris Lattner <clattner at apple.com> wrote: >> I just added this table: >> http://llvm.org/docs/CodeGenerator.html#targetfeatures > > Hi Chris, > > That's great! > > I didn't know ARM back-end had support for inline assembly. If there > is no assembly parser, does it call gas in a special way?Hi Renato, Not having an assembly parser means that the "direct .o file writer" won't support inline assembly. This is a work in progress :) -Chris