-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
switch detection #29
Comments
32-bit added in 3e378a4 |
some programs will place the jump tables contiguously, so need to be able to detect if the targets are already part of a prior jump table. if this is the case, then we need to remove the existing references. for example, given the following:
the cases:
note: we could probably have these two cases happening at the same time (a sandwich). so, we probably want to find the end of the logical array first, then find any prior tables, and finally update/add the xrefs. |
samples:
The text was updated successfully, but these errors were encountered: