Searched refs:reg2 (Results 1 – 4 of 4) sorted by relevance
/PHP-8.2/ext/opcache/jit/ |
H A D | zend_jit_internal.h | 44 #define ZEND_REGSET_INTERVAL(reg1, reg2) \ argument 45 (((1u << ((reg2) - (reg1) + 1)) - 1) << (reg1)) 47 #define ZEND_REGSET_INTERVAL(reg1, reg2) \ argument 48 (((1ull << ((reg2) - (reg1) + 1)) - 1) << (reg1))
|
H A D | zend_jit.c | 2059 zend_reg i, reg, reg2; in zend_jit_try_allocate_free_reg() local 2219 pos2 = 0; reg2 = ZREG_NONE; in zend_jit_try_allocate_free_reg() 2229 reg2 = i; in zend_jit_try_allocate_free_reg() 2239 if (reg2 != ZREG_NONE) { in zend_jit_try_allocate_free_reg() 2240 reg = reg2; in zend_jit_try_allocate_free_reg() 2242 reg2 = ZREG_NONE; in zend_jit_try_allocate_free_reg() 2258 } else if (reg2 != ZREG_NONE && zend_interval_end(current) < pos2) { in zend_jit_try_allocate_free_reg() 2260 current->reg = reg2; in zend_jit_try_allocate_free_reg() 2262 ZEND_REGSET_INCL(*hints, reg2); in zend_jit_try_allocate_free_reg()
|
H A D | zend_jit_arm64.dasc | 1191 // Useful info would be stored into reg1 and reg2, and they might be used afterward. 1219 | GET_ZVAL_LVAL reg2, src_addr, Rx(tmp_reg) 1220 | SET_ZVAL_LVAL_FROM_REG dst_addr, Rx(reg2), Rx(tmp_reg) 1234 | GET_ZVAL_PTR Rx(reg2), src_addr, Rx(tmp_reg) 1235 | SET_ZVAL_PTR dst_addr, Rx(reg2), Rx(tmp_reg) 1259 | GET_ZVAL_LVAL reg2, src_addr, Rx(tmp_reg) 1260 | SET_ZVAL_LVAL_FROM_REG dst_addr, Rx(reg2), Rx(tmp_reg) 1261 | SET_ZVAL_LVAL_FROM_REG res_addr, Rx(reg2), Rx(tmp_reg) 1279 | GET_ZVAL_PTR Rx(reg2), src_addr, Rx(tmp_reg) 1280 | SET_ZVAL_PTR dst_addr, Rx(reg2), Rx(tmp_reg) [all …]
|
/PHP-8.2/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeARM_T2_32.c | 72 #define IS_2_LO_REGS(reg1, reg2) \ argument 73 (reg_map[reg1] <= 7 && reg_map[reg2] <= 7) 74 #define IS_3_LO_REGS(reg1, reg2, reg3) \ argument 75 (reg_map[reg1] <= 7 && reg_map[reg2] <= 7 && reg_map[reg3] <= 7)
|
Completed in 96 milliseconds