fix insnCodeGen::modifyData's 64-bit conversion #163
Merged
+11
−12
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
On RHEL6 with a prelinked
/lib64/libc-2.12.so
, all of tests involvingfork instrumentation were getting SIGSEGV in the mutatee. This worked
in 9.1, and it also works fine after
prelink -u
to undo libc. Usinggit-bisect found 2b86eb4 as the point of regression.
It seems prelink ends up with libc sitting far away from the relocation
buffer, more than a 32-bit displacement, so
insnCodeGen::modifyData
decides to rewrite that to a 64-bit immediate. To do this, it has to
emit additional instructions first. But after the commit above, part of
the rewritten instruction has already been written when we're trying to
emit those extras, and things gets clobbered.
This patch emits those preamble instructions first, before any part of
the newly rewritten instruction is copied out.