mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:07:47 +00:00
LibJS/JIT: Don't keep trying to JIT unsupported bytecode executables
We now only try jitting each Bytecode::Executable once, and then cache the resulting NativeExecutable.
This commit is contained in:
parent
6a6ef6670c
commit
310bcd4717
5 changed files with 21 additions and 3 deletions
|
@ -20,7 +20,7 @@ public:
|
|||
NativeExecutable(void* code, size_t size);
|
||||
~NativeExecutable();
|
||||
|
||||
void run(VM&);
|
||||
void run(VM&) const;
|
||||
|
||||
private:
|
||||
void* m_code { nullptr };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue