Home
last modified time | relevance | path

Searched refs:function (Results 1 – 25 of 81) sorted by relevance

1234

/ext-fiber/tests/
H A Dbacktrace-nested.phpt2 Backtrace in nested function call
8 function suspend_fiber(): void
14 $fiber = new Fiber(function (): void {
27 #1 [internal function]: {closure}()
H A Dfiber-in-shutdown-function.phpt2 Fiber in shutdown function
8 register_shutdown_function(function (): void {
9 $fiber = new Fiber(function (): int {
H A Dfiber-throw-in-destruct.phpt9 public function __destruct()
11 $fiber = new Fiber(static function (): int {
27 #0 [internal function]: class@anonymous::{closure}()
29 #2 [internal function]: class@anonymous->__destruct()
H A Dsuspend-in-nested-function.phpt2 Suspend within nested function call
8 function suspend(): int
13 $fiber = new Fiber(function (): int {
H A Dthrow-in-multiple-destroyed-fibers-after-shutdown.phpt8 $fiber = new Fiber(function (): void {
9 $fiber1 = new Fiber(function (): void {
19 $fiber2 = new Fiber(function (): void {
43 #1 [internal function]: {closure}()
49 #1 [internal function]: {closure}()
54 #0 [internal function]: {closure}()
60 #1 [internal function]: {closure}()
65 #0 [internal function]: {closure}()
H A Dfailing-nested-fiber.phpt8 $fiber = new Fiber(function (): void {
9 $fiber = new Fiber(function (int $x, int $y): void {
27 #0 [internal function]: {closure}(1, 2)
29 #2 [internal function]: {closure}()
H A Dbacktrace-deep-nesting.phpt2 Backtrace in deeply nested function call
8 function suspend_fiber(int $level): void
18 function failing_function(string $value): never
23 function throw_exception(): never
28 $fiber = new Fiber(function (): void {
53 #13 [internal function]: {closure}()
H A Dthrow-during-fiber-destruct.phpt7 $fiber = new Fiber(function() {
22 #1 [internal function]: {closure}()
27 #0 [internal function]: {closure}()
H A Dgc-cycle-result.phpt9 $fiber = new Fiber(function () use (&$fiber) {
13 public function __construct($fiber) {
17 public function __destruct() {
H A Ddebug-backtrace.phpt8 function inner_function(): void
13 $fiber = new Fiber(function (): void {
H A Dfiber-created-in-destruct.phpt9 public function __destruct()
11 $fiber = new Fiber(static function (): int {
H A Dstart-arguments.phpt8 $fiber = new Fiber(function (int $x): int {
16 $fiber = new Fiber(function (int $x): int {
28 #0 [internal function]: {closure}('test')
H A Dfiber-in-destruct.phpt8 $fiber = new Fiber(function (): int {
10 public function __destruct()
H A Dsuspend-in-force-close-fiber-catching-exception.phpt9 (function (): void {
10 $fiber = new Fiber(function (): void {
H A Dsuspend-in-force-close-fiber.phpt8 $fiber = new Fiber(function (): void {
25 #1 [internal function]: {closure}()
31 #1 [internal function]: {closure}()
/ext-fiber/boost/asm/
H A Dmake_arm64_aapcs_elf_gas.S58 .type make_fcontext, %function
66 # third arg of make_fcontext() == address of context-function
70 # save address of finish as return-address for context-function
71 # will be entered after context-function returns (LR register)
H A Dmake_riscv64_sysv_elf_gas.S64 .type make_fcontext, %function
72 # third arg of make_fcontext() == address of context-function
76 # save address of finish as return-address for context-function
77 # will be entered after context-function returns (RA register)
H A Dmake_ppc32_sysv_elf_gas.S57 .type make_fcontext,@function
62 # first arg of make_fcontext() == top address of context-function
70 # third arg of make_fcontext() == address of context-function
72 # save context-function as PC
75 # save context-function for trampoline
103 # save address of finish as return-address for context-function
104 # will be entered after context-function returns
116 # our context-function.
117 lwz %r0, 8(%r1) # address of context-function
H A Dmake_ppc64_sysv_elf_gas.S84 .type make_fcontext,@function
93 .type .make_fcontext,@function
110 # third arg of make_fcontext() == address of context-function
113 # save address of context-function entry point
116 # save address of context-function entry point
119 # save TOC of context-function
129 # zero in r3 indicates first jump to context-function
144 # save address of finish as return-address for context-function
145 # will be entered after context-function returns
H A Dmake_arm_aapcs_elf_gas.S45 .type make_fcontext,%function
54 @ third arg of make_fcontext() == address of context-function
64 @ save address of finish as return-address for context-function
65 @ will be entered after context-function returns
H A Dmake_mips64_n64_elf_gas.S52 .type make_fcontext,@function
67 # third arg of make_fcontext() == address of context-function
75 # save address of finish as return-address for context-function
76 # will be entered after context-function returns
87 # the previous function should have left the 16 bytes incoming argument
H A Dmake_mips32_o32_elf_gas.S45 .type make_fcontext,@function
60 # jump_context calls the initial function
66 # third arg of make_fcontext() == address of context-function
77 # save address of finish as return-address for context-function
78 # will be entered after context-function returns
88 # the previous function should have left the 16 bytes incoming argument
H A Dmake_arm64_aapcs_macho_gas.S65 ; third arg of make_fcontext() == address of context-function
71 ; save address of finish as return-address for context-function
72 ; will be entered after context-function returns (LR register)
H A Dmake_x86_64_ms_pe_masm.asm85 ; standard C library function
89 ; generate function table entry in .pdata and unwind information in
91 ; .xdata for a function's structured exception handling unwind behavior
H A Dmake_arm_aapcs_macho_gas.S51 @ third arg of make_fcontext() == address of context-function
61 @ save address of finish as return-address for context-function
62 @ will be entered after context-function returns

Completed in 39 milliseconds

1234