https://github.com/JDevlieghere closed
https://github.com/llvm/llvm-project/pull/95350
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
felipepiovezan wrote:
> LGTM, may be we could also support this for the command line
Just keep in mind that those are very different queries w.r.t. speed: one goes
through a fast path in the accelerator table, the other one doesn't.
https://github.com/llvm/llvm-project/pull/95350
_
https://github.com/medismailben approved this pull request.
https://github.com/llvm/llvm-project/pull/95350
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
medismailben wrote:
LGTM, may be we could also support this for the command line
```
(lldb) target modules lookup -F square
1 match found in /tmp/step:
Address: step[0x00013ee8] (step.__TEXT.__text + 0)
Summary: step`square at step.c:3
(lldb) target modules lookup -F Squa
https://github.com/JDevlieghere updated
https://github.com/llvm/llvm-project/pull/95350
>From a2a362aeaf3d091c04a2eaefc604962730aa483c Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere
Date: Wed, 12 Jun 2024 21:44:02 -0700
Subject: [PATCH 1/2] [lldb] Support case-insensitive regex matches
Suppo
github-actions[bot] wrote:
:warning: Python code formatter, darker found issues in your code. :warning:
You can test this locally with the following command:
``bash
darker --check --diff -r
3fce14569fc3611eddca41db055143285244736a...a2a362aeaf3d091c04a2eaefc604962730aa483c
lldb/
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Jonas Devlieghere (JDevlieghere)
Changes
Support case-insensitive regex matches for `SBTarget::FindGlobalFunctions` and
`SBTarget::FindGlobalVariables`.
---
Full diff: https://github.com/llvm/llvm-project/pull/95350.diff
5 Files Affected
https://github.com/JDevlieghere created
https://github.com/llvm/llvm-project/pull/95350
Support case-insensitive regex matches for `SBTarget::FindGlobalFunctions` and
`SBTarget::FindGlobalVariables`.
>From a2a362aeaf3d091c04a2eaefc604962730aa483c Mon Sep 17 00:00:00 2001
From: Jonas Devliegher