comparison src/share/vm/opto/compile.cpp @ 8730:b7c2c5b2572c

8005772: Stubs report compile id -1 in phase events Summary: Use 0 to indicate id is NA, -1 for error or uninitalized Reviewed-by: kvn, twisti
author neliasso
date Wed, 13 Feb 2013 10:25:09 +0100
parents 8651f608fea4
children cc32ccaaf47f
comparison
equal deleted inserted replaced
8729:6d98efabf3ba 8730:b7c2c5b2572c
890 bool save_arg_registers, 890 bool save_arg_registers,
891 bool return_pc ) 891 bool return_pc )
892 : Phase(Compiler), 892 : Phase(Compiler),
893 _env(ci_env), 893 _env(ci_env),
894 _log(ci_env->log()), 894 _log(ci_env->log()),
895 _compile_id(-1), 895 _compile_id(0),
896 _save_argument_registers(save_arg_registers), 896 _save_argument_registers(save_arg_registers),
897 _method(NULL), 897 _method(NULL),
898 _stub_name(stub_name), 898 _stub_name(stub_name),
899 _stub_function(stub_function), 899 _stub_function(stub_function),
900 _stub_entry_point(NULL), 900 _stub_entry_point(NULL),