Lines Matching refs:hot
1051 function is_hot_handler($hot, $op1, $op2, $extra_spec) { argument
1055 if ($hot === 'HOT_' || $hot === 'INLINE_') {
1057 } else if ($hot === 'HOT_NOCONST_') {
1059 } else if ($hot === 'HOT_NOCONSTCONST_') {
1061 } else if ($hot === 'HOT_OBJ_') {
1063 } else if ($hot === 'HOT_SEND_') {
1070 function is_cold_handler($hot, $op1, $op2, $extra_spec) { argument
1071 if ($hot === 'COLD_') {
1073 } else if ($hot === 'COLD_CONST_') {
1075 } else if ($hot === 'COLD_CONSTCONST_') {
1077 } else if ($hot === 'HOT_OBJ_') {
1079 } else if ($hot === 'HOT_NOCONST_') {
1081 } else if ($hot === 'HOT_NOCONSTCONST_') {
1088 function is_inline_hybrid_handler($name, $hot, $op1, $op2, $extra_spec) { argument
1089 return ($hot === 'INLINE_');
1200 …$kind, $name, $op1, $op2, $param, $code, $lineno, $inline, $cold = false, $hot = false, $extra_spe… argument
1203 if ($kind == ZEND_VM_KIND_HYBRID && !$hot) {
2413 $hot = !empty($m[1]) ? $m[1] : false;
2436 … $opcodes[$code] = array("op"=>$op,"op1"=>$op1,"op2"=>$op2,"code"=>"","flags"=>$flags,"hot"=>$hot);
2464 $hot = !empty($m[1]) ? $m[1] : false;
2485 …array("op"=>$op,"op1"=>$op1,"op2"=>$op2,"code"=>"","flags"=>$flags,"hot"=>$hot,"is_type_spec"=>tru…
2512 $hot = !empty($m[1]) && $m[1] === "_HOT";
2524 || (ZEND_VM_KIND == ZEND_VM_KIND_HYBRID && $hot)) {
2533 …ay("op1"=>$op1,"op2"=>$op2,"param"=>$param,"code"=>"","inline"=>$inline,"cold"=>$cold,"hot"=>$hot);