Bug 143606
Summary: | Enable LLVM FastISel on AArch64 Linux | ||
---|---|---|---|
Product: | WebKit | Reporter: | Csaba Osztrogonác <ossy> |
Component: | New Bugs | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED INVALID | ||
Severity: | Normal | CC: | juergen, ossy |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Bug Depends on: | |||
Bug Blocks: | 143605 |
Csaba Osztrogonác
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
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Csaba Osztrogonác
We will have another problem with it:
"llvmForJSC.dylib: for the -regalloc option: Cannot find option named 'basic'!"
Juergen Ributzka
(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.
Csaba Osztrogonác
There is no LLVM based FTL JIT long time ago.