Skip to content
Snippets Groups Projects
Commit c2ccad02 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

plop bytes from scoops into text segment before pinning in case scoops overlap text.

parent d0129d5b
No related branches found
No related tags found
No related merge requests found
......@@ -735,6 +735,21 @@ void ZiprImpl_t::FindFreeRanges(const std::string &name)
if (m_verbose)
printf("Adding (mysterious) free range 0x%p to EOF\n", (void*)new_free_page);
start_of_new_space=new_free_page;
for(auto scoop : m_firp->GetDataScoops())
{
if(scoop->isExecuteable()) continue;
// put scoops in memory to make sure they are busy,
// just in case they overlap with free ranges.
// this came up on Aarch64 because data is in the .text segment.
cout<<"Pre-allocating scoop "<<scoop->GetName() << "=("
<< scoop->GetStart()->GetVirtualOffset() << "-"
<< scoop->GetEnd() ->GetVirtualOffset() << ")"<<endl;
memory_space.PlopBytes(scoop->GetStart()->GetVirtualOffset(),
scoop->GetContents().c_str(),
scoop->GetContents().size()
);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment