init commit

This commit is contained in:
unknown
2025-08-19 08:06:37 -04:00
commit 2957b5515a
743 changed files with 45495 additions and 0 deletions
+117
View File
@@ -0,0 +1,117 @@
from talon import Context, Module, actions
mod = Module()
mod.tag("gdb", "Tag to enabled gdb-related functionality")
# user.gdb-specific context
ctx_gdb_enabled = Context()
ctx_gdb_enabled.matches = r"""
tag: user.gdb
"""
# global context for enabling and disabling user.gdb tag
ctx_global = Context()
@mod.action_class
class Actions:
def gdb_enable():
"""Enables the gdb tag"""
ctx_global.tags = ["user.gdb"]
def gdb_disable():
"""Disables the gdb tag"""
ctx_global.tags = []
@ctx_gdb_enabled.action_class("user")
class UserActions:
##
# Generic debugger actions
##
# Code execution
def debugger_step_into():
actions.auto_insert("stepi\n")
def debugger_step_over():
actions.auto_insert("nexti\n")
def debugger_step_line():
actions.auto_insert("step\n")
def debugger_step_over_line():
actions.auto_insert("next\n")
def debugger_step_out():
actions.auto_insert("finish\n")
def debugger_continue():
actions.auto_insert("c\n")
def debugger_stop():
actions.key("ctrl-c")
def debugger_start():
actions.auto_insert("run\n")
def debugger_restart():
actions.auto_insert("run\n")
# XXX -
def debugger_detach():
actions.auto_insert("")
# Registers
def debugger_show_registers():
actions.auto_insert("info registers\n")
def debugger_get_register():
actions.auto_insert("r ")
def debugger_set_register():
actions.user.insert_between("set $", "=")
# Breakpoints
def debugger_show_breakpoints():
actions.auto_insert("info breakpoints\n")
def debugger_add_sw_breakpoint():
actions.auto_insert("break ")
# XXX -
def debugger_add_hw_breakpoint():
actions.auto_insert("")
def debugger_break_now():
actions.key("ctrl-c")
def debugger_break_here():
actions.auto_insert("break\n")
def debugger_clear_all_breakpoints():
actions.auto_insert("d br\n")
def debugger_clear_breakpoint():
actions.insert("d br ")
def debugger_enable_all_breakpoints():
actions.insert("enable br\n")
def debugger_enable_breakpoint():
actions.insert("enable br ")
def debugger_disable_all_breakpoints():
actions.insert("disable br\n")
def debugger_disable_breakpoint():
actions.insert("disable br ")
def debugger_clear_breakpoint_id(number_small: int):
actions.insert(f"d br {number_small}\n")
def debugger_disable_breakpoint_id(number_small: int):
actions.insert(f"disable br {number_small}\n")
def debugger_enable_breakpoint_id(number_small: int):
actions.insert(f"enable br {number_small}\n")
+102
View File
@@ -0,0 +1,102 @@
os: linux
# XXX - this matches .gdb files atm
#win.title: /gdb/
tag: terminal
and tag: user.gdb
-
tag(): user.debugger
until <number>: "until {number}"
force clear all break points:
insert("d br\n")
insert("y\n")
break [on] clipboard:
insert("break ")
key(ctrl-shift-v)
key(enter)
# information
list [source]: "list\n"
info source: "info source\n"
print: "p "
print [variable] <user.text>: "p {text}"
print hex: "p/x "
print hex [variable] <user.text>: "p/x {text}"
print string: "p/s "
# hexdumping
# XXX - switch the sizes to a list in python?
# XXX - should cache the last used size
hex dump <number> bytes: "x/{number}bx "
hex dump <number> (half | short) words: "x/{number}hx "
hex dump <number> (d | long) words: "x/{number}dx "
hex dump <number> quad words: "x/{number}gx "
# this is some arbitrary default for convenience
hex dump: "x/100gx "
hex dump highlighted:
insert("x/100gx ")
edit.copy()
edit.paste()
key(enter)
hex dump clipboard:
insert("x/100gx ")
edit.paste()
key(enter)
# execution
source: "source \t\t"
# displays
# XXX - move thee invoke command into a python script
(list | show | info) display: "info display\n"
display assembly line$: "display /i $pc\n"
display source: "display "
enable display <number_small>: "enable display {number_small}\n"
disable display <number_small>: "disable display {number_small}\n"
undisplay: "undisplay\n"
# variables
(list | show | info) local: "info local "
(list | show | info) local typed: "info local -t "
(list | show | info) variable: "info variable "
(list | show | info) variable typed: "info variable -t "
(list | show | info) locals: "info local\n"
(list | show | info) variables: "info variables\n"
# threads
info threads: "info threads\n"
restart [program]: "r\n"
continue: "c\n"
back trace: "bt\n"
debug quit: "quit\n"
# more quickly quit when there are inferiors
debug force quit: "quit\ny\n"
(show | info) (inf | inferiors): "info inferiors\n"
inferior <number_small>$: "inferior {number_small}\n"
inferior: "inferior "
resume main (inf | inferior):
insert("inferior 1\n")
insert("c\n")
resume [from] (inf | inferior) <number_small>$:
insert("inferior {number_small}\n")
insert("c\n")
# arguments
set args: "set args "
# settings
show follow (fork | forks) [mode]: "show follow-fork-mode\n"
[set] follow (fork | forks) [mode] child: "set follow-fork-mode child\n"
[set] follow (fork | forks) [mode] parent: "set follow-fork-mode parent\n"
show detach on fork: "show detach-on-fork\n"
set detach on fork: "set detach-on-fork on\n"
unset detach on fork: "set detach-on-fork off\n"
# list
show list size: "show listsize\n"
set list size <number_small>: "set listsize {number_small}\n"
# misc
clear screen: "shell clear\n"
+2
View File
@@ -0,0 +1,2 @@
[enable] debug mode: user.gdb_enable()
disable debug mode: user.gdb_disable()