Lines Matching refs:hot
1066 function is_hot_handler($hot, $op1, $op2, $extra_spec) { argument
1067 if ($hot === 'HOT_') {
1069 } else if ($hot === 'HOT_NOCONST_') {
1071 } else if ($hot === 'HOT_OBJ_') {
1073 } else if ($hot === 'HOT_SEND_') {
1080 function is_cold_handler($hot, $op1, $op2, $extra_spec) { argument
1081 if ($hot === 'COLD_') {
1083 } else if ($hot === 'COLD_CONST_') {
1085 } else if ($hot === 'COLD_CONSTCONST_') {
1087 } else if ($hot === 'HOT_OBJ_') {
1089 } else if ($hot === 'HOT_NOCONST_') {
1096 function is_inline_hybrid_handler($name, $hot, $op1, $op2, $extra_spec) { argument
1173 …$kind, $name, $op1, $op2, $param, $code, $lineno, $inline, $cold = false, $hot = false, $extra_spe… argument
1176 if ($kind == ZEND_VM_KIND_HYBRID && !$hot) {
2349 $hot = !empty($m[1]) ? $m[1] : false;
2372 … $opcodes[$code] = array("op"=>$op,"op1"=>$op1,"op2"=>$op2,"code"=>"","flags"=>$flags,"hot"=>$hot);
2398 $hot = !empty($m[1]) ? $m[1] : false;
2419 …$opcodes[$code] = array("op"=>$op,"op1"=>$op1,"op2"=>$op2,"code"=>"","flags"=>$flags,"hot"=>$hot,"…
2446 $hot = !empty($m[1]) && $m[1] === "_HOT";
2463 …ay("op1"=>$op1,"op2"=>$op2,"param"=>$param,"code"=>"","inline"=>$inline,"cold"=>$cold,"hot"=>$hot);