Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
Zipr Toolchain
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
Zipr Toolchain
Commits
3237e77c
Commit
3237e77c
authored
7 years ago
by
an7s
Browse files
Options
Downloads
Patches
Plain Diff
Distinguish between critical args and function pointers
Former-commit-id: b18a4747e92f2f1262668991ced6ad9584ca3b62
parent
47c7b6df
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libMEDSannotation/include/MEDS_FPTRShadowAnnotation.hpp
+7
-0
7 additions, 0 deletions
libMEDSannotation/include/MEDS_FPTRShadowAnnotation.hpp
libMEDSannotation/src/MEDS_FPTRShadowAnnotation.cpp
+10
-0
10 additions, 0 deletions
libMEDSannotation/src/MEDS_FPTRShadowAnnotation.cpp
with
17 additions
and
0 deletions
libMEDSannotation/include/MEDS_FPTRShadowAnnotation.hpp
+
7
−
0
View file @
3237e77c
...
...
@@ -70,6 +70,8 @@ class MEDS_FPTRShadowAnnotation : public MEDS_ShadowAnnotation
const
RegisterName
getRegister
()
const
;
const
string
&
getExpression
()
const
{
return
m_expression
;
}
const
bool
isFunctionPointerShadow
()
const
{
return
m_functionPointerShadow
;
}
const
bool
isCriticalArgumentShadow
()
const
{
return
m_criticalArgumentShadow
;
}
private
:
void
parse
();
void
setExpression
(
const
string
p_expression
)
{
...
...
@@ -80,9 +82,14 @@ class MEDS_FPTRShadowAnnotation : public MEDS_ShadowAnnotation
int
parseRegisterOffset
(
const
char
*
);
void
parseRegister
(
const
char
*
p_buf
,
RegisterName
*
p_register
,
int
*
p_registerOffset
);
void
setFunctionPointerShadow
(
const
bool
p_val
)
{
m_functionPointerShadow
=
p_val
;
}
void
setCriticalArgumentShadow
(
const
bool
p_val
)
{
m_criticalArgumentShadow
=
p_val
;
}
private
:
string
m_rawInputLine
;
string
m_expression
;
bool
m_functionPointerShadow
;
bool
m_criticalArgumentShadow
;
};
}
...
...
This diff is collapsed.
Click to expand it.
libMEDSannotation/src/MEDS_FPTRShadowAnnotation.cpp
+
10
−
0
View file @
3237e77c
...
...
@@ -61,11 +61,15 @@ using namespace MEDS_Annotation;
MEDS_FPTRShadowAnnotation
::
MEDS_FPTRShadowAnnotation
()
:
MEDS_ShadowAnnotation
()
{
setInvalid
();
setCriticalArgumentShadow
(
false
);
setFunctionPointerShadow
(
false
);
}
MEDS_FPTRShadowAnnotation
::
MEDS_FPTRShadowAnnotation
(
const
string
&
p_rawLine
)
:
MEDS_ShadowAnnotation
()
{
setInvalid
();
setCriticalArgumentShadow
(
false
);
setFunctionPointerShadow
(
false
);
m_rawInputLine
=
p_rawLine
;
parse
();
}
...
...
@@ -79,10 +83,16 @@ void MEDS_FPTRShadowAnnotation::parse()
setDefineShadowId
();
if
(
m_rawInputLine
.
find
(
MEDS_ANNOT_ARGSHADOW
)
!=
string
::
npos
)
{
setCriticalArgumentShadow
(
true
);
setDefineShadowId
();
}
if
(
m_rawInputLine
.
find
(
MEDS_ANNOT_FPTRCHECK
)
!=
string
::
npos
)
{
setFunctionPointerShadow
(
true
);
setCheckShadowId
();
}
if
(
m_rawInputLine
.
find
(
MEDS_ANNOT_ARGCHECK
)
!=
string
::
npos
)
setCheckShadowId
();
...
...
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