diff options
author | Tyson Andre <tysonandre775@hotmail.com> | 2020-04-30 19:36:21 -0400 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-05-01 12:23:16 +0200 |
commit | 54febdbc7d2e9b3bb8b39b215ddeca9ec1f74de9 (patch) | |
tree | 1f91045b09ffa7212010701103a194cca72cccfa /ext/opcache/jit/zend_jit_trace.c | |
parent | 1dbf923866e565c18062cfacc07b2626496241f8 (diff) | |
download | php-git-54febdbc7d2e9b3bb8b39b215ddeca9ec1f74de9.tar.gz |
Fix other typos in param name/code comments
Closes GH-5502
Diffstat (limited to 'ext/opcache/jit/zend_jit_trace.c')
-rw-r--r-- | ext/opcache/jit/zend_jit_trace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/opcache/jit/zend_jit_trace.c b/ext/opcache/jit/zend_jit_trace.c index 49c3e9b556..a3a956cfbe 100644 --- a/ext/opcache/jit/zend_jit_trace.c +++ b/ext/opcache/jit/zend_jit_trace.c @@ -2569,7 +2569,7 @@ static const void *zend_jit_trace(zend_jit_trace_rec *trace_buffer, uint32_t par } } - // TODO: Merge two loops implementing paralel move ??? + // TODO: Merge two loops implementing parallel move ??? for (i = 0; i < parent_vars_count; i++) { if (STACK_REG(parent_stack, i) != ZREG_NONE) { if (ra && ra[i] && ra[i]->reg == STACK_REG(parent_stack, i)) { @@ -2621,7 +2621,7 @@ static const void *zend_jit_trace(zend_jit_trace_rec *trace_buffer, uint32_t par goto jit_failure; } } else { - /* Register has to be writen back on side exit */ + /* Register has to be written back on side exit */ SET_STACK_REG(stack, phi->var, ival->reg); } } @@ -4909,7 +4909,7 @@ int ZEND_FASTCALL zend_jit_trace_exit(uint32_t exit_num, zend_jit_registers_buf } /* Lock-free check if the side trace was already JIT-ed or blacklist-ed in another process */ - // TODO: We may remoive this, becaus of the same check in zend_jit_trace_hot_side() ??? + // TODO: We may remove this, because of the same check in zend_jit_trace_hot_side() ??? opline = t->exit_info[exit_num].opline; if (EG(vm_interrupt) || ((uintptr_t)opline & (ZEND_JIT_EXIT_JITED|ZEND_JIT_EXIT_BLACKLISTED))) { opline = (const zend_op*)((uintptr_t)opline & ~(ZEND_JIT_EXIT_JITED|ZEND_JIT_EXIT_BLACKLISTED)); |