[PATCH] Use ".arch_extension" ARM directive to specify the additional CPU features
Eric Christopher
echristo at gmail.com
Wed Feb 4 10:59:01 PST 2015
On Wed Feb 04 2015 at 10:54:21 AM Renato Golin <renato.golin at linaro.org>
wrote:
> ================
> Comment at: lib/Target/ARM/ARMAsmPrinter.cpp:682
> @@ +681,3 @@
> + // Enable hwdiv through ".arch_extension idiv"
> + if (Subtarget->isKrait() && (Subtarget->hasDivide()
> + || Subtarget->hasDivideInARMMode()))
> ----------------
> echristo wrote:
> > rengolin wrote:
> > > shouldn't you check here based on the instruction set you're using?
> Something like:
> > >
> > > if (Subtarget->isKrait() && (
> > > Subtarget->hasDivide() ||
> > > (!Subtarget->isThumb() && Subtarget->hasDivideInARMMode())
> > > )
> > >
> > > To make sure we don't turn it on when it's thumb and it only has div
> on ARM.
> > Using subtargets here is not going to be allowed as soon as I can
> separate the code out so I'd prefer you come up with another way of
> figuring out the ISA here.
> >
> > Honestly a loop over all functions in the module and collecting cpu
> information is probably how we're going to need to go and should be simple.
> I'm not sure how ARM attribute merging works between functions so if
> someone could detail that it would be appreciated.
> ARM has no function specific attribute in EABI. The only thing we do is in
> the assembler just for the sake of accepting otherwise invalid instructions
> (bump up support) for the rare case where you're pretty sure no one will
> call that function without support for that instruction. This has mainly
> two users: ifunc and unwinders.
>
> The point here is to work around a GAS deficiency in representing "krait"
> as an A9+DIV in a *global* context. So, your function specific attribute
> will either not exist, or be replicated to all functions, whatever is
> easier for you.
>
>
It will only end up getting replicated to all functions if you aren't
merging modules. :)
> Regarding getting the ISA, I was wrong, and we should use the build
> attributes anyway.
>
Sure. Those do have the same problem.
-eric
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150204/9ea0e2b2/attachment.html>
More information about the llvm-commits
mailing list