comparison src/share/vm/oops/methodData.hpp @ 10408:836a62f43af9

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Wed, 19 Jun 2013 10:45:56 +0200
parents 57e5211846f9 92ef81e2f571
children cefad50507d8
comparison
equal deleted inserted replaced
10086:e0fb8a213650 10408:836a62f43af9
1422 InvocationCounter* backedge_counter() { return &_backedge_counter; } 1422 InvocationCounter* backedge_counter() { return &_backedge_counter; }
1423 1423
1424 void set_would_profile(bool p) { _would_profile = p; } 1424 void set_would_profile(bool p) { _would_profile = p; }
1425 bool would_profile() const { return _would_profile; } 1425 bool would_profile() const { return _would_profile; }
1426 1426
1427 int highest_comp_level() { return _highest_comp_level; } 1427 int highest_comp_level() const { return _highest_comp_level; }
1428 void set_highest_comp_level(int level) { _highest_comp_level = level; } 1428 void set_highest_comp_level(int level) { _highest_comp_level = level; }
1429 int highest_osr_comp_level() { return _highest_osr_comp_level; } 1429 int highest_osr_comp_level() const { return _highest_osr_comp_level; }
1430 void set_highest_osr_comp_level(int level) { _highest_osr_comp_level = level; } 1430 void set_highest_osr_comp_level(int level) { _highest_osr_comp_level = level; }
1431 1431
1432 int num_loops() const { return _num_loops; } 1432 int num_loops() const { return _num_loops; }
1433 void set_num_loops(int n) { _num_loops = n; } 1433 void set_num_loops(int n) { _num_loops = n; }
1434 int num_blocks() const { return _num_blocks; } 1434 int num_blocks() const { return _num_blocks; }