comparison src/share/vm/oops/methodData.hpp @ 10267:8b40495b9381

Merge
author minqi
date Mon, 13 May 2013 18:08:13 +0000
parents 92ef81e2f571
children 836a62f43af9 69f26e8e09f9 abe03600372a
comparison
equal deleted inserted replaced
10264:735c995bf1a1 10267:8b40495b9381
1336 InvocationCounter* backedge_counter() { return &_backedge_counter; } 1336 InvocationCounter* backedge_counter() { return &_backedge_counter; }
1337 1337
1338 void set_would_profile(bool p) { _would_profile = p; } 1338 void set_would_profile(bool p) { _would_profile = p; }
1339 bool would_profile() const { return _would_profile; } 1339 bool would_profile() const { return _would_profile; }
1340 1340
1341 int highest_comp_level() { return _highest_comp_level; } 1341 int highest_comp_level() const { return _highest_comp_level; }
1342 void set_highest_comp_level(int level) { _highest_comp_level = level; } 1342 void set_highest_comp_level(int level) { _highest_comp_level = level; }
1343 int highest_osr_comp_level() { return _highest_osr_comp_level; } 1343 int highest_osr_comp_level() const { return _highest_osr_comp_level; }
1344 void set_highest_osr_comp_level(int level) { _highest_osr_comp_level = level; } 1344 void set_highest_osr_comp_level(int level) { _highest_osr_comp_level = level; }
1345 1345
1346 int num_loops() const { return _num_loops; } 1346 int num_loops() const { return _num_loops; }
1347 void set_num_loops(int n) { _num_loops = n; } 1347 void set_num_loops(int n) { _num_loops = n; }
1348 int num_blocks() const { return _num_blocks; } 1348 int num_blocks() const { return _num_blocks; }