Bug 143606 - Enable LLVM FastISel on AArch64 Linux
Summary: Enable LLVM FastISel on AArch64 Linux
Status: RESOLVED INVALID
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks: 143605
  Show dependency treegraph
 
Reported: 2015-04-10 08:07 PDT by Csaba Osztrogonác
Modified: 2016-04-27 02:05 PDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Csaba Osztrogonác 2015-04-10 08:07:01 PDT
http://trac.webkit.org/changeset/182483 enabled in on iOS AArch64, we 
should enable it to get better performance and decrease maintenance cost.

It depends on fixing FTL JIT with LLVM 3.6
Comment 1 Csaba Osztrogonác 2015-04-10 08:29:56 PDT
We will have another problem with it:
"llvmForJSC.dylib: for the -regalloc option: Cannot find option named 'basic'!"
Comment 2 Juergen Ributzka 2015-04-10 11:17:39 PDT
(In reply to comment #1)
> We will have another problem with it:
> "llvmForJSC.dylib: for the -regalloc option: Cannot find option named
> 'basic'!"

Looks like the dylib wasn't linked with the --whole-archive option. The register allocators are registered by static initializers. Without the --whole-archive option the "basic" register allocator will be dead stripped out.
Comment 3 Csaba Osztrogonác 2016-04-27 02:05:16 PDT
There is no LLVM based FTL JIT long time ago.