Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SMPStaticAnalyzer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Open Source Software
SMPStaticAnalyzer
Commits
72490e0e
Commit
72490e0e
authored
6 years ago
by
Clark Coleman
Browse files
Options
Downloads
Patches
Plain Diff
Fix IP-relative static mem operands by adding the length of the instruction to the offset.
parent
836322ce
Branches
Branches containing commit
No related tags found
1 merge request
!16
Move_globals fixes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interfaces/irdb/STARS_IRDB_Op.cpp
+1
-1
1 addition, 1 deletion
src/interfaces/irdb/STARS_IRDB_Op.cpp
with
1 addition
and
1 deletion
src/interfaces/irdb/STARS_IRDB_Op.cpp
+
1
−
1
View file @
72490e0e
...
...
@@ -202,7 +202,7 @@ no operands for eflags or mxcsr?
if
(
the_arg
.
isPcrel
()
)
// (the_arg.ArgType&0xFFFF0000) == (MEMORY_TYPE + RELATIVE_))
{
assert
(
length
!=
0
);
// we need the length in this case.
operand
.
mem
.
disp
=
the_arg
.
getMemoryDisplacement
();
// the_arg.Memory.Displacement+length;
operand
.
mem
.
disp
=
the_arg
.
getMemoryDisplacement
()
+
length
;
// the_arg.Memory.Displacement+length;
#if 1
// Imitate IDA Pro: IP-relative static memop is relative to CS segment register.
this
->
SegReg
=
STARS_x86_R_cs
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment