- Dec 09, 2022
-
-
Alexandre Julliard authored
-
- Dec 08, 2022
-
-
-
Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
-
Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
-
Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
-
-
-
-
Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
-
-
Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
-
The 'prototype' prop of a source function is, by default, an empty object with a 'constructor' prop pointing back to the function. Currently, every source function is created in this fashion, which makes it a circular reference and thus prevents it from being freed until the Garbage Collector kicks in. The performance impact comes from the function keeping a ref to the enclosing scope, and since the scope is being held by it, the engine will detach the scope, believing it to be used for the time being (until the GC cleans it). This can cause substantial performance issues for such a common case. The FFXIV Launcher, for example, leaks a large amount of such short-lived functions and the enclosing scopes. Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Better heuristics can be used in the future. Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Implement a basic GC based on the mark-and-sweep algorithm, without requiring manually specifying "roots", which vastly simplifies the code. Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
So the garbage collector can traverse it. Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
On Windows processes sometimes start during test_services_exe() so that the size returned by the first NtQuerySystemInformation() is no longer sufficient for the second call. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54094
-
-
It looks like there was a change on the websocket test server that causes our send operations to block. Reducing the size of the send buffer works around the test failures. The tests still succeed on Windows, which suggests that native sends large buffers in smaller chunks.
-
Alexandre Julliard authored
-
Alexandre Julliard authored
-
Alexandre Julliard authored
No longer used since e164b8ce.
-