Home
last modified time | relevance | path

Searched refs:instructions (Results 1 – 16 of 16) sorted by relevance

/php-src/benchmark/
H A Dgenerate_diff.php42 function formatInstructions(?int $instructions): string { argument
43 if ($instructions === null) {
46 if ($instructions > 1e6) {
47 return sprintf('%.0fM', $instructions / 1e6);
48 } elseif ($instructions > 1e3) {
49 return sprintf('%.0fK', $instructions / 1e3);
51 return (string) $instructions;
H A Dbenchmark.php132 $instructions = extractInstructionsFromValgrindOutput($process->stderr);
134 $instructions = gmp_strval(gmp_div_q($instructions, $repeat));
136 return ['instructions' => $instructions];
/php-src/ext/dom/tests/
H A Ddomchardata.phpt40 $comment = new DOMComment('instructions');
42 $comment->data = 'some more instructions';
71 Comment Value: instructions
72 New Comment Value: some more instructions
/php-src/docs/source/introduction/
H A Dhigh-level-overview.rst118 machine code, which are sequences of simple, mostly atomic instructions for doing one thing. For
121 these simple instructions.
123 PHP is a bit different, in that it does not execute machine code directly. Instead, instructions run
125 physical machine you can buy that understands these instructions, but that this machine is
127 instructions ourselves at will. Some of these instructions look very similar to something you'd find
132 into our virtual machine instructions, also called opcodes. The code responsible for this
134 number of instructions, before going to the next node.
149 instructions. This essentially means that each instructions may have a result value, and at most two
192 takes the virtual PHP opcodes and turns it into actual machine instructions, with additional
/php-src/docs/source/introduction/ides/
H A Dindex.rst10 Here you can find instructions on how to effectively use common IDEs for php-src development.
H A Dvisual-studio-code.rst7 These instructions have been tested on Linux. macOS should mostly work the same. For Windows,
13 installation instructions.
70 Follow the `official installation instructions for clangd
73 ``compile_commands.json`` file, so make sure to follow the instructions from the previous section.
/php-src/ext/opcache/tests/opt/
H A Dsccp_016.phpt2 SCCP 016: Used constant instructions should be replaced with QM_ASSIGN
/php-src/ext/pdo_odbc/tests/
H A Dlong_columns.phpt19 // -download & instructions: http://www.microsoft.com/en-us/download/details.aspx?id=28160
21 // -follow instructions on web page and install script
/php-src/docs-old/
H A Dself-contained-extensions.md50 The user instructions boil down to
/php-src/sapi/litespeed/
H A DREADME.md89 Brief instructions are as follow:
/php-src/docs/source/core/data-structures/
H A Dzval.rst183 values between ``FETCH`` and ``ASSIGN`` instructions, and for the sharing of variables in the symbol
/php-src/docs/
H A Drelease-process.md955 Please see the instructions for
1011 [2FA setup instructions](https://wiki.php.net/systems#fa_setup_instructions).
1022 > If you're new to GPG, follow GitHub's instructions for
/php-src/
H A DCONTRIBUTING.md135 and building it [per the instructions on the documentation site](http://doc.php.net/tutorial/).
/php-src/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます12744 # assembler instructions: jnz 0729;cmp ebx,"TCPA"
12762 # assembler instructions: cmp ebx,"TCPA";cmp
13542 # assembler instructions: jmp 7C05
13544 # assembler instructions: pushfd;pushad
13546 # assembler instructions: jmp 05
13564 # assembler instructions: mov di,0600h;mov cx,0100h
13611 # assembler instructions: movw nametab,bx
13621 # assembler instructions: jmp short 0x58;nop;ASCII
13931 # unused assembler instructions short JMP y2;NOP;NOP
13937 # assembler instructions JMP C000;NOP
[all …]
H A Dmagic12744 # assembler instructions: jnz 0729;cmp ebx,"TCPA"
12762 # assembler instructions: cmp ebx,"TCPA";cmp
13542 # assembler instructions: jmp 7C05
13544 # assembler instructions: pushfd;pushad
13546 # assembler instructions: jmp 05
13564 # assembler instructions: mov di,0600h;mov cx,0100h
13611 # assembler instructions: movw nametab,bx
13621 # assembler instructions: jmp short 0x58;nop;ASCII
13931 # unused assembler instructions short JMP y2;NOP;NOP
13937 # assembler instructions JMP C000;NOP
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_aarch64.dasc110 * Used to guard the immediate encoding for add/adds/sub/subs/cmp/cmn instructions. */
116 …mine whether an immediate value can be encoded as the immediate operand of logical instructions. */

Completed in 176 milliseconds