[LLVMbugs] [Bug 16320] New: ARM FastISel disabled for Thumb2 on non-iOS targets
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Thu Jun 13 10:29:45 PDT 2013
http://llvm.org/bugs/show_bug.cgi?id=16320
Bug ID: 16320
Summary: ARM FastISel disabled for Thumb2 on non-iOS targets
Product: libraries
Version: trunk
Hardware: Other
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: Backend: ARM
Assignee: unassignedbugs at nondot.org
Reporter: jfb at google.com
CC: llvmbugs at cs.uiuc.edu
Classification: Unclassified
lib/Target/ARM/ARMFastISel.cpp:ARM::createFastISel enables FastISel in the
following circumstances:
bool UseFastISel = false;
UseFastISel |= Subtarget->isTargetIOS() && !Subtarget->isThumb1Only();
UseFastISel |= Subtarget->isTargetLinux() && !Subtarget->isThumb();
UseFastISel |= Subtarget->isTargetNaCl() && !Subtarget->isThumb();
Thumb2 FastISel has issues with at least some relocations as well as with MI
validation, but should otherwise be able to use FastISel.
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20130613/46d315a4/attachment.html>
More information about the llvm-bugs
mailing list