[llvm-commits] [llvm] r144122 - /llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
Chad Rosier
mcrosier at apple.com
Tue Nov 8 13:52:06 PST 2011
On Nov 8, 2011, at 1:26 PM, Eric Christopher wrote:
>
> On Nov 8, 2011, at 1:12 PM, Chad Rosier wrote:
>
>> ARMFastISel doesn't support thumb1. Rename isThumb to isThumb2 to reflect this.
>> No functional change intended.
>
>
> That's what this code is there for:
>
> // Darwin and thumb1 only for now.
Shouldn't this read: // Darwin and non-thumb1 for now?
> const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>();
> if (Subtarget->isTargetDarwin() && !Subtarget->isThumb1Only() &&
> !DisableARMFastISel)
>
> I guess for most of those a thumb2 check is probably better anyhow though, since we use mostly t2 instructions.
That was exactly my reasoning. Most, if not all, thumb instructions are encoded as thumb2, so I prefer this naming. I doubt we'll be adding support for thumb1 unless there's a performance advantage.
> Thanks!
>
> -eric
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20111108/8d30427f/attachment.html>
More information about the llvm-commits
mailing list