Lines Matching refs:hot
976 function is_hot_handler($hot, $op1, $op2, $extra_spec) { argument
983 if ($hot === 'HOT_' || $hot === 'INLINE_') {
985 } else if ($hot === 'HOT_NOCONST_') {
987 } else if ($hot === 'HOT_NOCONSTCONST_') {
989 } else if ($hot === 'HOT_OBJ_') {
991 } else if ($hot === 'HOT_SEND_') {
998 function is_cold_handler($hot, $op1, $op2, $extra_spec) { argument
999 if ($hot === 'COLD_') {
1003 } else if ($hot === 'COLD_CONST_') {
1005 } else if ($hot === 'COLD_CONSTCONST_') {
1007 } else if ($hot === 'HOT_OBJ_') {
1009 } else if ($hot === 'HOT_NOCONST_') {
1011 } else if ($hot === 'HOT_NOCONSTCONST_') {
1018 function is_inline_hybrid_handler($name, $hot, $op1, $op2, $extra_spec) { argument
1019 return ($hot === 'INLINE_');
1163 …$kind, $name, $op1, $op2, $param, $code, $lineno, $inline, $cold = false, $hot = false, $extra_spe… argument
1166 if ($kind == ZEND_VM_KIND_HYBRID && !$hot) {
2457 $hot = !empty($m[1]) ? $m[1] : false;
2480 … $opcodes[$code] = array("op"=>$op,"op1"=>$op1,"op2"=>$op2,"code"=>"","flags"=>$flags,"hot"=>$hot);
2508 $hot = !empty($m[1]) ? $m[1] : false;
2531 …array("op"=>$op,"op1"=>$op1,"op2"=>$op2,"code"=>"","flags"=>$flags,"hot"=>$hot,"is_type_spec"=>tru…
2558 $hot = !empty($m[1]) && $m[1] === "_HOT";
2570 || (ZEND_VM_KIND == ZEND_VM_KIND_HYBRID && $hot))
2580 …ay("op1"=>$op1,"op2"=>$op2,"param"=>$param,"code"=>"","inline"=>$inline,"cold"=>$cold,"hot"=>$hot);