From: Doug Kwan Date: Tue, 25 Jan 2011 17:14:59 +0000 (+0000) Subject: 2011-01-25 Doug Kwan X-Git-Tag: cgen-snapshot-20110201~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=880473a6be1103b2e4cc2b2d67d2ee40e9b0883f;p=platform%2Fupstream%2Fbinutils.git 2011-01-25 Doug Kwan * gold/icf.cc (get_section_contents): Always lock section's object. --- diff --git a/gold/ChangeLog b/gold/ChangeLog index 0c14f7c..6bf49b4 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,7 @@ +2011-01-25 Doug Kwan + + * gold/icf.cc (get_section_contents): Always lock section's object. + 2011-01-24 Ian Lance Taylor * options.h (class General_options): Accept diff --git a/gold/icf.cc b/gold/icf.cc index 5ec53ff..13e8374 100644 --- a/gold/icf.cc +++ b/gold/icf.cc @@ -237,20 +237,16 @@ get_section_contents(bool first_iteration, const std::vector& kept_section_id, std::vector* section_contents) { + // Lock the object so we can read from it. This is only called + // single-threaded from queue_middle_tasks, so it is OK to lock. + // Unfortunately we have no way to pass in a Task token. + const Task* dummy_task = reinterpret_cast(-1); + Task_lock_obj tl(dummy_task, secn.first); + section_size_type plen; const unsigned char* contents = NULL; - if (first_iteration) - { - // Lock the object so we can read from it. This is only called - // single-threaded from queue_middle_tasks, so it is OK to lock. - // Unfortunately we have no way to pass in a Task token. - const Task* dummy_task = reinterpret_cast(-1); - Task_lock_obj tl(dummy_task, secn.first); - contents = secn.first->section_contents(secn.second, - &plen, - false); - } + contents = secn.first->section_contents(secn.second, &plen, false); // The buffer to hold all the contents including relocs. A checksum // is then computed on this buffer. @@ -373,12 +369,6 @@ get_section_contents(bool first_iteration, if (!first_iteration) continue; - // Lock the object so we can read from it. This is only called - // single-threaded from queue_middle_tasks, so it is OK to lock. - // Unfortunately we have no way to pass in a Task token. - const Task* dummy_task = reinterpret_cast(-1); - Task_lock_obj tl(dummy_task, it_v->first); - uint64_t secn_flags = (it_v->first)->section_flags(it_v->second); // This reloc points to a merge section. Hash the // contents of this section.