Bug 4226 - x86_64 JIT compiler optimizations
Status: RESOLVED WONTFIX
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Platform
Version: GIT MASTER
Hardware: PC Linux
: P3 enhancement
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2009-07-02 10:46 EDT by Amanieu d'Antras
Modified: 2011-02-06 15:31:04 EST
2 users (show)

See Also:


Attachments
The patch (3.66 KB, patch)
2009-07-02 11:04 EDT, Amanieu d'Antras
Updated patch that fixes some bugs (3.58 KB, patch)
2009-07-03 05:59 EDT, Amanieu d'Antras

Description Amanieu d'Antras 2009-07-02 10:46:22 EDT
The x86_64 qvm JIT compiler is very slow, often taking around 5 seconds to compile a qvm. This patch caches compiled vms so that a recompile is not necessary when the same qvm is reloaded. I also disabled a debug #ifdef which causes unnecessary instructions to be emitted.
Comment 1 Amanieu d'Antras 2009-07-02 11:04:17 EDT
Created attachment 2085 [details]
The patch
Comment 2 Amanieu d'Antras 2009-07-03 05:59:16 EDT
Created attachment 2086 [details]
Updated patch that fixes some bugs
Comment 3 Ryan C. Gordon 2009-09-14 12:03:53 EDT
We should profile the code and see why it's slower than the other JIT compilers.

A cache might be interesting at the higher level, so all JITs can use it, but if they're basically all fast except for one, and we can optimize that one, we probably don't need the cache at all.

--ryan.
Comment 4 Ryan C. Gordon 2009-09-14 23:24:44 EDT
Um, I don't even have to profile this. The x86_64 JIT is slow because it writes out assembly and spawns gas to assemble it.

That should probably be fixed.

--ryan.
Comment 5 Ludwig Nussel 2009-09-15 03:52:05 EDT
(In reply to comment #4)
> Um, I don't even have to profile this. The x86_64 JIT is slow because it writes
> out assembly and spawns gas to assemble it.

It has it's own assembler, gas was only used temporarily. With that
intermediate assembler step it's still slower than hardcoding
opcodes as in vm_86 of course.
Comment 6 Thilo Schulz 2011-02-06 15:31:04 EST
I'm sorry, but this VM caching stuff is not going to happen. A user could overwrite previously cached VMs much more easily and thus circumvent the pure checks more easily.
However, if you've got a patch which would remove the intermediary assembling step and thus improve speed I'd be willing to look at this again.