comparison src/share/vm/code/debugInfo.hpp @ 11198:1e6d5dec4a4e

Merge.
author Christian Humer <christian.humer@gmail.com>
date Mon, 05 Aug 2013 13:20:06 +0200
parents 6b0fd0964b87
children d8041d695d19
comparison
equal deleted inserted replaced
11197:3479ab380552 11198:1e6d5dec4a4e
272 return o; 272 return o;
273 } 273 }
274 Method* read_method() { 274 Method* read_method() {
275 Method* o = (Method*)(code()->metadata_at(read_int())); 275 Method* o = (Method*)(code()->metadata_at(read_int()));
276 assert(o == NULL || 276 assert(o == NULL ||
277 o->is_metadata(), "meta data only"); 277 o->is_metaspace_object(), "meta data only");
278 return o; 278 return o;
279 } 279 }
280 ScopeValue* read_object_value(); 280 ScopeValue* read_object_value();
281 ScopeValue* get_cached_object(); 281 ScopeValue* get_cached_object();
282 // BCI encoding is mostly unsigned, but -1 is a distinguished value 282 // BCI encoding is mostly unsigned, but -1 is a distinguished value