Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion reference/opcache/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,8 @@ function getA() { return A; }
<member><literal>off</literal>: Disabled, but can be enabled at runtime.</member>
<member>
<literal>tracing</literal>/<literal>on</literal>: Use tracing JIT.
Enabled by default and recommended for most users.
Recommended for most users. Prior to PHP 8.4.0, this was the default
value; as of PHP 8.4.0 the default is <literal>disable</literal>.
</member>
<member><literal>function</literal>: Use function JIT.</member>
</simplelist>
Expand Down Expand Up @@ -1220,6 +1221,12 @@ function getA() { return A; }
The <literal>"tracing"</literal> mode corresponds to <code>CRTO = 1254</code>,
the <literal>"function"</literal> mode corresponds to <code>CRTO = 1205</code>.
</para>
<note>
<simpara>
As of PHP 8.4.0, if the JIT is enabled, PHP exits with a fatal error
during startup when JIT initialization fails.
</simpara>
</note>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.opcache.jit-buffer-size">
Expand Down