Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
KOS
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
Martin Karsten
KOS
Commits
4b02c772
Commit
4b02c772
authored
6 years ago
by
Martin Karsten
Browse files
Options
Downloads
Patches
Plain Diff
- fix bug in gdb support: script hook masks python hook?
parent
32d6abd6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/libfibre/libfibre.so-gdb.py
+9
-21
9 additions, 21 deletions
src/libfibre/libfibre.so-gdb.py
with
9 additions
and
21 deletions
src/libfibre/libfibre.so-gdb.py
+
9
−
21
View file @
4b02c772
...
@@ -6,21 +6,17 @@ import gdb
...
@@ -6,21 +6,17 @@ import gdb
from
contextlib
import
contextmanager
from
contextlib
import
contextmanager
class
FibreSupport
():
class
FibreSupport
():
def
__init__
(
self
):
FibreSupport
.
list
=
[]
FibreSupport
.
active
=
{}
FibreSupport
.
saved
=
False
def
stop_handler
(
event
):
def
stop_handler
(
event
):
if
(
gdb
.
lookup_symbol
(
"
_globalStackList
"
)[
0
]
==
None
):
if
(
gdb
.
lookup_symbol
(
"
_globalStackList
"
)[
0
]
==
None
):
print
(
"
WARNING: no fibre debugging support - did you enable TESTING_ENABLE_DEBUGGING?
"
)
print
(
"
WARNING: no fibre debugging support - did you enable TESTING_ENABLE_DEBUGGING?
"
)
return
return
FibreSupport
.
list
=
[]
FibreSupport
.
active
=
{}
# save register context for later continuation
# save register context for later continuation
FibreSupport
.
rsp
=
str
(
gdb
.
parse_and_eval
(
"
$rsp
"
)).
split
(
None
,
1
)[
0
]
FibreSupport
.
rsp
=
str
(
gdb
.
parse_and_eval
(
"
$rsp
"
)).
split
(
None
,
1
)[
0
]
FibreSupport
.
rbp
=
str
(
gdb
.
parse_and_eval
(
"
$rbp
"
)).
split
(
None
,
1
)[
0
]
FibreSupport
.
rbp
=
str
(
gdb
.
parse_and_eval
(
"
$rbp
"
)).
split
(
None
,
1
)[
0
]
FibreSupport
.
rip
=
str
(
gdb
.
parse_and_eval
(
"
$rip
"
)).
split
(
None
,
1
)[
0
]
FibreSupport
.
rip
=
str
(
gdb
.
parse_and_eval
(
"
$rip
"
)).
split
(
None
,
1
)[
0
]
FibreSupport
.
currStack
=
str
(
gdb
.
parse_and_eval
(
"
Context::currStack
"
))
FibreSupport
.
currStack
=
str
(
gdb
.
parse_and_eval
(
"
Context::currStack
"
))
FibreSupport
.
saved
=
True
# traverse runtime stack list to build internal list of fibres
# traverse runtime stack list to build internal list of fibres
_globalStackList
=
gdb
.
parse_and_eval
(
"
_globalStackList
"
)
_globalStackList
=
gdb
.
parse_and_eval
(
"
_globalStackList
"
)
first
=
_globalStackList
[
'
anchor
'
].
address
first
=
_globalStackList
[
'
anchor
'
].
address
...
@@ -41,21 +37,14 @@ class FibreSupport():
...
@@ -41,21 +37,14 @@ class FibreSupport():
}
}
orig_thread
.
switch
()
orig_thread
.
switch
()
def
cont_handler
(
event
):
# restore() is hooked to continue events via basic script hooks
FibreSupport
.
list
=
[]
FibreSupport
.
active
=
{}
# ideally restore() would be hooked up with cont_handler,
# but gdb currently fails with segmentation fault when trying
def
restore
():
def
restore
():
if
(
FibreSupport
.
saved
):
FibreSupport
.
prep_frame
()
FibreSupport
.
prep_frame
()
# restore original register context
# restore original register context
gdb
.
execute
(
"
set $rsp =
"
+
str
(
FibreSupport
.
rsp
))
gdb
.
execute
(
"
set $rsp =
"
+
str
(
FibreSupport
.
rsp
))
gdb
.
execute
(
"
set $rbp =
"
+
str
(
FibreSupport
.
rbp
))
gdb
.
execute
(
"
set $rbp =
"
+
str
(
FibreSupport
.
rbp
))
gdb
.
execute
(
"
set $rip =
"
+
str
(
FibreSupport
.
rip
))
gdb
.
execute
(
"
set $rip =
"
+
str
(
FibreSupport
.
rip
))
gdb
.
execute
(
"
set Context::currStack =
"
+
str
(
FibreSupport
.
currStack
))
gdb
.
execute
(
"
set Context::currStack =
"
+
str
(
FibreSupport
.
currStack
))
FibreSupport
.
saved
=
False
def
prep_frame
():
def
prep_frame
():
# walk stack down to innermost frame
# walk stack down to innermost frame
...
@@ -234,4 +223,3 @@ FibreSetPtr()
...
@@ -234,4 +223,3 @@ FibreSetPtr()
FibreSetIdx
()
FibreSetIdx
()
FibreReset
()
FibreReset
()
gdb
.
events
.
stop
.
connect
(
FibreSupport
.
stop_handler
)
gdb
.
events
.
stop
.
connect
(
FibreSupport
.
stop_handler
)
gdb
.
events
.
cont
.
connect
(
FibreSupport
.
cont_handler
)
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