69a70,76
> void AddressProfiler::setHotLines(bool hot_lines){
> m_hot_lines = hot_lines;
> }
> void AddressProfiler::setAllInstructions(bool all_instructions){
> m_all_instructions = all_instructions;
> }
>
72c79
< if (PROFILE_HOT_LINES) {
---
> if (m_hot_lines) {
100c107
< if (PROFILE_ALL_INSTRUCTIONS){
---
> if (m_all_instructions){
192c199
< if (PROFILE_HOT_LINES) {
---
> if (m_all_instructions) {
209c216
< if (PROFILE_ALL_INSTRUCTIONS) {
---
> if (m_all_instructions) {
251c258
< if (PROFILE_ALL_INSTRUCTIONS)
---
> if (g_system_ptr->getProfiler()->getAllInstructions())
266,267c273,274
< m_touched_vec.setSize(RubyConfig::numberOfProcessors()+1);
< m_touched_weighted_vec.setSize(RubyConfig::numberOfProcessors()+1);
---
> m_touched_vec.setSize(RubySystem::getNumberOfSequencers()+1);
> m_touched_weighted_vec.setSize(RubySystem::getNumberOfSequencers()+1);