diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /.lldbinit | |
parent | Initial commit. (diff) | |
download | thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.tar.xz thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.lldbinit')
-rw-r--r-- | .lldbinit | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.lldbinit b/.lldbinit new file mode 100644 index 0000000000..f1beb609ba --- /dev/null +++ b/.lldbinit @@ -0,0 +1,31 @@ +# .lldbinit file for debugging Mozilla + +# ----------------------------------------------------------------------------- +# For documentation on all of the commands and type summaries defined here and +# in the accompanying Python scripts, see third_party/python/lldbutils/README.txt. +# ----------------------------------------------------------------------------- + +# Import the module that defines complex Gecko debugging commands. This assumes +# you are either running lldb from the top level source directory, the objdir, +# or the dist/bin directory. (.lldbinit files in the objdir and dist/bin set +# topsrcdir appropriately.) +script topsrcdir = topsrcdir if "topsrcdir" in locals() else os.getcwd() +script sys.path.append(os.path.join(topsrcdir, "python/lldbutils")) +script import lldbutils +script lldbutils.init() + +# Mozilla's use of UNIFIED_SOURCES to include multiple source files into a +# single compiled file breaks lldb breakpoint setting. This works around that. +# See http://lldb.llvm.org/troubleshooting.html for more info. +settings set target.inline-breakpoint-strategy always + +# Show the dynamic type of an object when using "expr". This, for example, +# will show a variable declared as "nsIFrame *" that points to an nsBlockFrame +# object as being of type "nsBlockFrame *" rather than "nsIFrame *". +settings set target.prefer-dynamic-value run-target + +# Show the value of text nodes. +type summary add nsTextNode --summary-string "${var.mText}" + +# Dump the current JS stack. +command alias js expr DumpJSStack() |