Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
e29bdf17
Commit
e29bdf17
authored
Nov 01, 2010
by
Mark Florisson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added commands 'cy cont' and 'cy step'
parent
b465df68
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
12 deletions
+44
-12
Cython/Debugger/libcython.py
Cython/Debugger/libcython.py
+28
-0
Cython/Debugger/libpython.py
Cython/Debugger/libpython.py
+16
-12
No files found.
Cython/Debugger/libcython.py
View file @
e29bdf17
...
...
@@ -452,6 +452,8 @@ class CyCy(CythonCommand):
break_
=
CyBreak
.
register
(),
step
=
CyStep
.
register
(),
next
=
CyNext
.
register
(),
run
=
CyRun
.
register
(),
cont
=
CyCont
.
register
(),
list
=
CyList
.
register
(),
print_
=
CyPrint
.
register
(),
locals
=
CyLocals
.
register
(),
...
...
@@ -705,6 +707,32 @@ class CyNext(CythonCodeStepper):
super
(
CythonCodeStepper
,
self
).
invoke
(
*
args
,
**
kwargs
)
class
CyRun
(
CythonCodeStepper
):
"""
Run a Cython program. This is like the 'run' command, except that it
displays Cython or Python source lines as well
"""
name
=
'cy run'
def
invoke
(
self
,
*
args
):
self
.
result
=
gdb
.
execute
(
'run'
,
to_string
=
True
)
self
.
end_stepping
()
class
CyCont
(
CythonCodeStepper
):
"""
Continue a Cython program. This is like the 'run' command, except that it
displays Cython or Python source lines as well.
"""
name
=
'cy cont'
def
invoke
(
self
,
*
args
):
self
.
result
=
gdb
.
execute
(
'cont'
,
to_string
=
True
)
self
.
end_stepping
()
class
CyList
(
CythonCommand
):
"""
List Cython source code. To disable to customize colouring see the cy_*
...
...
Cython/Debugger/libpython.py
View file @
e29bdf17
...
...
@@ -1542,29 +1542,29 @@ class GenericCodeStepper(gdb.Command):
depending on the '
stepper
' argument.
"""
stepper = False
def __init__(self, name, stepper=False):
super(GenericCodeStepper, self).__init__(name,
gdb.COMMAND_RUNNING,
gdb.COMPLETE_NONE)
self.stepper = stepper
def
_
init_stepping(self):
def init_stepping(self):
self.beginframe = gdb.selected_frame()
self.beginline = self.lineno(self.beginframe)
if not self.stepper:
self.depth = self._stackdepth(self.beginframe)
def
_
next_step(self, gdb_command):
def next_step(self, gdb_command):
"""
Teturns whether to continue stepping. This method sets the instance
attribute
s '
result
' and '
stopped_running
'. '
result
' hold the output
of the executed gdb
command ('
step
' or '
next
')
attribute
'
result
'. '
result
' hold the output of the executed gdb
command ('
step
' or '
next
')
"""
self.result = gdb.execute(gdb_command, to_string=True)
self.stopped_running = gdb.inferiors()[0].pid == 0
if self.stopped_running:
# We stopped running
if self.stopped():
return False
newframe = gdb.selected_frame()
...
...
@@ -1586,8 +1586,9 @@ class GenericCodeStepper(gdb.Command):
return not (hit_breakpoint or new_lineno or is_relevant_function)
def _end_stepping(self):
if self.stopped_running:
def end_stepping(self):
"requires that the instance attribute self.result is set"
if self.stopped():
sys.stdout.write(self.result)
else:
frame = gdb.selected_frame()
...
...
@@ -1598,6 +1599,9 @@ class GenericCodeStepper(gdb.Command):
else:
print output
def stopped(self):
return gdb.inferiors()[0].pid == 0
def _stackdepth(self, frame):
depth = 0
while frame:
...
...
@@ -1618,11 +1622,11 @@ class GenericCodeStepper(gdb.Command):
gdb_command= '
next
'
for nthstep in xrange(nsteps):
self.
_
init_stepping()
while self.
_
next_step(gdb_command):
self.init_stepping()
while self.next_step(gdb_command):
pass
self.
_
end_stepping()
self.end_stepping()
class PythonCodeStepper(GenericCodeStepper):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment