Lines Matching refs:hot
939 function is_hot_handler($hot, $op1, $op2, $extra_spec) { argument
946 if ($hot === 'HOT_' || $hot === 'INLINE_') {
948 } else if ($hot === 'HOT_NOCONST_') {
950 } else if ($hot === 'HOT_NOCONSTCONST_') {
952 } else if ($hot === 'HOT_OBJ_') {
954 } else if ($hot === 'HOT_SEND_') {
961 function is_cold_handler($hot, $op1, $op2, $extra_spec) { argument
962 if ($hot === 'COLD_') {
966 } else if ($hot === 'COLD_CONST_') {
968 } else if ($hot === 'COLD_CONSTCONST_') {
970 } else if ($hot === 'HOT_OBJ_') {
972 } else if ($hot === 'HOT_NOCONST_') {
974 } else if ($hot === 'HOT_NOCONSTCONST_') {
981 function is_inline_hybrid_handler($name, $hot, $op1, $op2, $extra_spec) { argument
982 return ($hot === 'INLINE_');
1126 …$kind, $name, $op1, $op2, $param, $code, $lineno, $inline, $cold = false, $hot = false, $extra_spe… argument
1129 if ($kind == ZEND_VM_KIND_HYBRID && !$hot) {
2422 $hot = !empty($m[1]) ? $m[1] : false;
2445 … $opcodes[$code] = array("op"=>$op,"op1"=>$op1,"op2"=>$op2,"code"=>"","flags"=>$flags,"hot"=>$hot);
2473 $hot = !empty($m[1]) ? $m[1] : false;
2496 …array("op"=>$op,"op1"=>$op1,"op2"=>$op2,"code"=>"","flags"=>$flags,"hot"=>$hot,"is_type_spec"=>tru…
2523 $hot = !empty($m[1]) && $m[1] === "_HOT";
2535 || (ZEND_VM_KIND == ZEND_VM_KIND_HYBRID && $hot))
2545 …ay("op1"=>$op1,"op2"=>$op2,"param"=>$param,"code"=>"","inline"=>$inline,"cold"=>$cold,"hot"=>$hot);