comparison src/share/vm/ci/ciMethod.hpp @ 20670:6a528388c7da

8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv Reviewed-by: kvn, roland, coleenp, mgerdin
author vlivanov
date Tue, 11 Nov 2014 04:46:13 -0800
parents 119875f0fc67
children 7848fc12602b
comparison
equal deleted inserted replaced
20669:e194d26c9f4e 20670:6a528388c7da
88 #if defined(COMPILER2) || defined(SHARK) 88 #if defined(COMPILER2) || defined(SHARK)
89 ciTypeFlow* _flow; 89 ciTypeFlow* _flow;
90 BCEscapeAnalyzer* _bcea; 90 BCEscapeAnalyzer* _bcea;
91 #endif 91 #endif
92 92
93 ciMethod(methodHandle h_m); 93 ciMethod(methodHandle h_m, ciInstanceKlass* holder);
94 ciMethod(ciInstanceKlass* holder, ciSymbol* name, ciSymbol* signature, ciInstanceKlass* accessor); 94 ciMethod(ciInstanceKlass* holder, ciSymbol* name, ciSymbol* signature, ciInstanceKlass* accessor);
95 95
96 Method* get_Method() const { 96 Method* get_Method() const {
97 Method* m = (Method*)_metadata; 97 Method* m = (Method*)_metadata;
98 assert(m != NULL, "illegal use of unloaded method"); 98 assert(m != NULL, "illegal use of unloaded method");