Lines Matching refs:hot
974 function is_hot_handler($hot, $op1, $op2, $extra_spec) { argument
981 if ($hot === 'HOT_' || $hot === 'INLINE_') {
983 } else if ($hot === 'HOT_NOCONST_') {
985 } else if ($hot === 'HOT_NOCONSTCONST_') {
987 } else if ($hot === 'HOT_OBJ_') {
989 } else if ($hot === 'HOT_SEND_') {
996 function is_cold_handler($hot, $op1, $op2, $extra_spec) { argument
997 if ($hot === 'COLD_') {
1001 } else if ($hot === 'COLD_CONST_') {
1003 } else if ($hot === 'COLD_CONSTCONST_') {
1005 } else if ($hot === 'HOT_OBJ_') {
1007 } else if ($hot === 'HOT_NOCONST_') {
1009 } else if ($hot === 'HOT_NOCONSTCONST_') {
1016 function is_inline_hybrid_handler($name, $hot, $op1, $op2, $extra_spec) { argument
1017 return ($hot === 'INLINE_');
1161 …$kind, $name, $op1, $op2, $param, $code, $lineno, $inline, $cold = false, $hot = false, $extra_spe… argument
1164 if ($kind == ZEND_VM_KIND_HYBRID && !$hot) {
2398 $hot = !empty($m[1]) ? $m[1] : false;
2421 … $opcodes[$code] = array("op"=>$op,"op1"=>$op1,"op2"=>$op2,"code"=>"","flags"=>$flags,"hot"=>$hot);
2449 $hot = !empty($m[1]) ? $m[1] : false;
2472 …array("op"=>$op,"op1"=>$op1,"op2"=>$op2,"code"=>"","flags"=>$flags,"hot"=>$hot,"is_type_spec"=>tru…
2499 $hot = !empty($m[1]) && $m[1] === "_HOT";
2511 || (ZEND_VM_KIND == ZEND_VM_KIND_HYBRID && $hot)) {
2520 …ay("op1"=>$op1,"op2"=>$op2,"param"=>$param,"code"=>"","inline"=>$inline,"cold"=>$cold,"hot"=>$hot);