Home
last modified time | relevance | path

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

/php-src/ext/pcntl/tests/
H A Dbug81577.phpt9 public static $cond = 1;
13 C::$a = [ C::$cond ]; // make countable zval
20 posix_kill(posix_getpid(), SIGTERM) + C::$cond;
/php-src/ext/opcache/tests/
H A Dbug74431.phpt14 $cond = true;
17 if($cond){
/php-src/ext/opcache/jit/ir/
H A Dir_sccp.c1414 is_cmp = (cond->op == IR_LT || cond->op == IR_LE || cond->op == IR_GT || cond->op == IR_GE || in ir_optimize_phi()
1415 cond->op == IR_ULT || cond->op == IR_ULE || cond->op == IR_UGT || cond->op == IR_UGE); in ir_optimize_phi()
1416 is_less = (cond->op == IR_LT || cond->op == IR_LE || in ir_optimize_phi()
1417 cond->op == IR_ULT || cond->op == IR_ULE); in ir_optimize_phi()
1419 is_cmp = (cond->op == IR_LT || cond->op == IR_LE || cond->op == IR_GT || cond->op == IR_GE); in ir_optimize_phi()
1420 is_less = (cond->op == IR_LT || cond->op == IR_LE); in ir_optimize_phi()
1423 … is_cmp = (cond->op == IR_ULT || cond->op == IR_ULE || cond->op == IR_UGT || cond->op == IR_UGE); in ir_optimize_phi()
1424 is_less = (cond->op == IR_ULT || cond->op == IR_ULE); in ir_optimize_phi()
1461 (is_less ? cond->op1 : cond->op2) in ir_optimize_phi()
1769 SWAP_REFS(cond->op2, cond->op3); in ir_try_split_if()
[all …]
H A Dir.c898 #define IR_FOLD_BOOL(cond) \ argument
899 IR_FOLD_COPY((cond) ? IR_TRUE : IR_FALSE)
H A Dir_aarch64.dasc6419 } else if ((ins & 0x800)) { /* B.cond, CBZ, CBNZ, LDR* literal */
6452 } else if ((ins & 0x800)) { /* B.cond, CBZ, CBNZ, LDR* literal */
/php-src/ext/mbstring/ucgendat/
H A Ductest.php122 $cond = $fields[4];
123 if ($cond) {
H A Ducgendat.php354 $cond = $fields[4];
355 if ($cond) {
/php-src/build/
H A Dgen_stub.php1275 $this->cond = $cond;
1352 && $this->cond === $other->cond;
2555 $this->cond = $cond;
3192 $this->cond = $cond;
4108 ?string $cond, argument
4346 $cond,
4519 $cond,
4934 if ($info->cond && $info->cond !== $parentCond) {
5072 if ($cond) {
5085 }, $cond);
[all …]
H A Dphp_cxx_compile_stdcxx.m4769 template <bool cond>
772 if constexpr(cond)
/php-src/docs/source/introduction/
H A Dhigh-level-overview.rst47 if ($cond) {
56 T_VARIABLE "$cond"
92 ZEND_AST_ZVAL { "cond" },
140 0000 JMPZ CV0($cond) 0002
169 With these simple rules, we can see that the interpreter will ``echo`` only when ``$cond`` is
/php-src/sapi/cli/
H A Dphp_http_parser.c248 # define STRICT_CHECK(cond) if (cond) goto error argument
251 # define STRICT_CHECK(cond) argument
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddynasm.lua261 local function cond_eval(cond)
264 func, err = loadstring("return "..cond, "=expr")
267 func, err = load("return "..cond, "=expr", "t", {})
H A Ddasm_ppc.lua1431 for cond,c in pairs(map_cond) do
1432 local b1 = "b"..cond
1507 local r, cond = match(expr, "^4%*cr([0-7])%+(%w%w)$")
1510 local c = map_cond[cond]
H A Ddasm_arm64.lua901 for cond,c in pairs(map_cond) do
902 map_op["b"..cond.."_1"] = tohex(0x54000000+c).."B"
H A Dminilua.c3393 static int jumponcond(FuncState*fs,expdesc*e,int cond){
3398 return condjump(fs,OP_TEST,GETARG_B(ie),0,!cond);
3403 return condjump(fs,OP_TESTSET,((1<<8)-1),e->u.s.info,cond);
3531 if(cond==0&&op!=OP_EQ){
3534 cond=1;
3536 e1->u.s.info=condjump(fs,op,cond,o1,o2);
4374 static int cond(LexState*ls){
4402 condexit=cond(ls);
4421 condexit=cond(ls);
4515 condexit=cond(ls);
[all …]
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitLir.c2321 sljit_s32 cond = type & ~SLJIT_32; in check_sljit_emit_select() local
2323 CHECK_ARGUMENT(cond >= SLJIT_EQUAL && cond <= SLJIT_ORDERED_LESS_EQUAL); in check_sljit_emit_select()
2330 if (cond <= SLJIT_NOT_ZERO) in check_sljit_emit_select()
2336 CHECK_ARGUMENT((cond & 0xfe) == (compiler->last_flags & 0xff) in check_sljit_emit_select()
2337 || CHECK_UNORDERED(cond, compiler->last_flags)); in check_sljit_emit_select()
2361 sljit_s32 cond = type & ~SLJIT_32; in check_sljit_emit_fselect() local
2363 CHECK_ARGUMENT(cond >= SLJIT_EQUAL && cond <= SLJIT_ORDERED_LESS_EQUAL); in check_sljit_emit_fselect()
2370 if (cond <= SLJIT_NOT_ZERO) in check_sljit_emit_fselect()
2376 CHECK_ARGUMENT((cond & 0xfe) == (compiler->last_flags & 0xff) in check_sljit_emit_fselect()
2377 || CHECK_UNORDERED(cond, compiler->last_flags)); in check_sljit_emit_fselect()
H A DsljitNativeS390X.c656 #define SLJIT_S390X_RXYA(name, pattern, cond) \ argument
659 SLJIT_ASSERT(cond); \
705 #define SLJIT_S390X_RSYA(name, pattern, cond) \ argument
708 SLJIT_ASSERT(cond); \
799 #define SLJIT_S390X_RILB(name, pattern, cond) \ argument
802 SLJIT_ASSERT(cond); \
985 #define WHEN(cond, r, i1, i2, addr) \ argument
986 (cond) ? EVAL(i1, r, addr) : EVAL(i2, r, addr)
2114 #define WHEN2(cond, i1, i2) (cond) ? LEVAL(i1) : LEVAL(i2) argument
H A DsljitNativeLOONGARCH_64.c2067 #define SET_COND(cond) (sljit_ins)(cond << 15) argument
/php-src/Zend/
H A DZend.m4215 AX_CHECK_COMPILE_FLAG([-Wduplicated-cond], CFLAGS="-Wduplicated-cond $CFLAGS", , [-Werror])
H A Dzend_compile.c2327 static inline uint32_t zend_emit_cond_jump(uint8_t opcode, znode *cond, uint32_t opnum_target) /* {… in zend_emit_cond_jump() argument
2332 if (cond->op_type == IS_TMP_VAR && opnum > 0) { in zend_emit_cond_jump()
2335 && opline->result.var == cond->u.op.var in zend_emit_cond_jump()
2345 opline = zend_emit_op(NULL, opcode, cond, NULL); in zend_emit_cond_jump()
/php-src/ext/fileinfo/libmagic/
H A Dapprentice.c1754 int cond; in get_cond() member
1771 return p->cond; in get_cond()
1775 check_cond(struct magic_set *ms, int cond, uint32_t cont_level) in check_cond() argument
1780 switch (cond) { in check_cond()
2178 m->cond = get_cond(l, &l); in parse()
2179 if (check_cond(ms, m->cond, cont_level) == -1) in parse()
H A Dfile.h308 uint8_t cond; /* conditional type */ member
H A Dsoftmagic.c366 if (m->cond == COND_ELSE || in match()
367 m->cond == COND_ELIF) { in match()
/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c8967 ir_ref cond = ir_AND_U32( local
8981 if_pass_by_ref = ir_IF(cond);
11382 ir_ref ref = IR_UNUSED, cond, if_found; local
11419 cond = ir_AND_U32(
11423 ir_GUARD(cond, ir_CONST_ADDR(exit_addr));
11472 cond = ir_ULT(h, ref);
11477 ir_ref if_fit = ir_IF(cond);
11483 ir_GUARD(cond, ir_CONST_ADDR(exit_addr));
11489 ir_ref if_fit = ir_IF(cond);
11494 ir_ref if_fit = ir_IF(cond);
[all …]
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c13005 struct sljit_jump *cond = NULL; in compile_bracket_backtrackingpath() local
13196 cond = JUMP(SLJIT_JUMP); in compile_bracket_backtrackingpath()
13202 cond = JUMP(SLJIT_JUMP); in compile_bracket_backtrackingpath()
13361 if (cond != NULL) in compile_bracket_backtrackingpath()
13373 JUMPHERE(cond); in compile_bracket_backtrackingpath()

Completed in 267 milliseconds