comparison src/share/vm/oops/methodData.cpp @ 13087:ec3e4f35e466

disabled argument/parameter/return value profiling in GRAALVM until issue with MethodData related crashes in interpreter are resolved
author Doug Simon <doug.simon@oracle.com>
date Wed, 20 Nov 2013 15:58:23 +0100
parents 096c224171c4
children d84fa69a9874
comparison
equal deleted inserted replaced
13086:096c224171c4 13087:ec3e4f35e466
1072 DataLayout *dp = data_layout_at(data_size + extra_size + arg_data_size); 1072 DataLayout *dp = data_layout_at(data_size + extra_size + arg_data_size);
1073 dp->initialize(DataLayout::parameters_type_data_tag, 0, args_cell); 1073 dp->initialize(DataLayout::parameters_type_data_tag, 0, args_cell);
1074 } else { 1074 } else {
1075 _parameters_type_data_di = -1; 1075 _parameters_type_data_di = -1;
1076 } 1076 }
1077 #else
1078 _parameters_type_data_di = -1;
1077 #endif 1079 #endif
1078 1080
1079 // Set an initial hint. Don't use set_hint_di() because 1081 // Set an initial hint. Don't use set_hint_di() because
1080 // first_di() may be out of bounds if data_size is 0. 1082 // first_di() may be out of bounds if data_size is 0.
1081 // In that situation, _hint_di is never used, but at 1083 // In that situation, _hint_di is never used, but at