Masami Hiramatsu (Google) 080e47b2a2 perf probe: Introduce quotation marks support
In non-C languages, it is possible to have ':' in the function names.

It is possible to escape it with backslashes, but if there are too many
backslashes, it is annoying.

This introduce quotation marks (`"` or `'`) support.

For example, without quotes, we have to pass it as below

  $ perf probe -x cro3 -L "cro3\:\:cmd\:\:servo\:\:run_show"
  <run_show@/work/cro3/src/cmd/servo.rs:0>
        0  fn run_show(args: &ArgsShow) -> Result<()> {
        1      let list = ServoList::discover()?;
        2      let s = list.find_by_serial(&args.servo)?;
        3      if args.json {
        4          println!("{s}");

With quotes, we can more naturally write the function name as below;

  $ perf probe -x cro3 -L \"cro3::cmd::servo::run_show\"
  <run_show@/work/cro3/src/cmd/servo.rs:0>
        0  fn run_show(args: &ArgsShow) -> Result<()> {
        1      let list = ServoList::discover()?;
        2      let s = list.find_by_serial(&args.servo)?;
        3      if args.json {
        4          println!("{s}");

Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Alexander Lobakin <aleksander.lobakin@intel.com>
Cc: Dima Kogan <dima@secretsauce.net>
Cc: Ian Rogers <irogers@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Przemek Kitszel <przemyslaw.kitszel@intel.com>
Link: https://lore.kernel.org/r/173099116941.2431889.11609129616090100386.stgit@mhiramat.roam.corp.google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2024-11-14 16:56:32 -03:00
..
2024-08-12 18:05:14 -03:00
2022-06-28 12:05:25 -03:00
2024-09-10 17:32:47 -03:00
2024-05-10 10:52:46 -03:00
2023-03-14 08:29:46 -03:00
2024-07-03 14:59:15 -07:00
2024-10-14 10:45:28 -07:00
2021-04-29 10:30:58 -03:00
2024-03-21 10:41:28 -03:00
2021-08-11 09:35:44 -03:00
2024-08-19 14:52:13 -03:00
2024-08-19 14:52:13 -03:00
2024-08-19 14:52:13 -03:00
2024-08-19 14:52:13 -03:00
2024-08-12 18:07:10 -03:00
2024-11-07 10:51:56 -08:00
2024-11-07 10:51:56 -08:00
2023-01-23 10:00:47 -03:00
2024-07-31 16:58:18 -03:00
2024-08-30 09:24:27 -03:00
2024-08-12 18:05:14 -03:00
2024-08-19 14:51:46 -03:00
2024-08-19 14:51:46 -03:00
2024-02-12 12:35:41 -08:00
2024-08-01 18:55:55 -03:00
2023-04-06 21:40:28 -03:00
2023-09-12 17:47:00 -03:00
2024-11-09 08:28:03 -08:00
2023-11-09 13:47:50 -03:00
2024-09-26 13:26:11 -07:00
2020-10-14 13:34:26 -03:00
2024-10-14 10:45:28 -07:00
2023-04-10 19:20:53 -03:00
2024-09-27 15:38:52 -03:00