comparison src/share/vm/ci/ciMethodData.cpp @ 12868:c775af091fe9

8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method Reviewed-by: kvn
author twisti
date Mon, 07 Oct 2013 10:41:56 -0700
parents 5cc2d82aa82a
children d13d7aba8c12
comparison
equal deleted inserted replaced
12867:5741fc86a2ee 12868:c775af091fe9
76 _eflags = _arg_local = _arg_stack = _arg_returned = 0; 76 _eflags = _arg_local = _arg_stack = _arg_returned = 0;
77 } 77 }
78 78
79 void ciMethodData::load_data() { 79 void ciMethodData::load_data() {
80 MethodData* mdo = get_MethodData(); 80 MethodData* mdo = get_MethodData();
81 if (mdo == NULL) return; 81 if (mdo == NULL) {
82 return;
83 }
82 84
83 // To do: don't copy the data if it is not "ripe" -- require a minimum # 85 // To do: don't copy the data if it is not "ripe" -- require a minimum #
84 // of invocations. 86 // of invocations.
85 87
86 // Snapshot the data -- actually, take an approximate snapshot of 88 // Snapshot the data -- actually, take an approximate snapshot of