From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by sourceware.org (Postfix) with ESMTPS id 4A1F03858D3C for ; Tue, 4 Jul 2023 12:36:21 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 4A1F03858D3C Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=intel.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=intel.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1688474181; x=1720010181; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=MkFX9hSi94XSIq5v86rO8jO7qOJGyTFMZkGHiRh6mQY=; b=UwOsIrNqsuVFHjHf3TE8QKslOziatHXbyHmDBw3D5mjHV0EO1yIp29Ev iJnvqDCSMoDcYewNNVVkOcp46o+Q1lQ3Wl4nVs6iFwE2WSG6qYOvq6Bgd oYrmXQ+0378SZo5iR5QPgvl3bbIP9sMy4flQbmmnMjSyuKQQCic/rQPiq 2eiiSwjx8NmkY3Px5LG49Eog6lCx/fBiYapvQkRvvJiCf+GrHt8My+GRE 505JX6MtPxdCZpsx0lScXOQvU5uW60aQC/FoAa1WHbED+wg0Uquq2vUbf 1Q6zv4UiX6QulghTq/rh7hVWFQUxapKXoq7c0foSSwHgToshuibIqskfL g==; X-IronPort-AV: E=McAfee;i="6600,9927,10760"; a="361974836" X-IronPort-AV: E=Sophos;i="6.01,180,1684825200"; d="scan'208";a="361974836" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jul 2023 05:36:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10760"; a="808923402" X-IronPort-AV: E=Sophos;i="6.01,180,1684825200"; d="scan'208";a="808923402" Received: from unknown (HELO localhost) ([10.216.210.17]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jul 2023 05:36:17 -0700 From: Felix Willgerodt To: gdb-patches@sourceware.org, markus.t.metzger@intel.com, simark@simark.ca Cc: "Willgerodt, Felix" Subject: [PATCH v9 00/10] Extensions for PTWRITE Date: Tue, 4 Jul 2023 14:35:50 +0200 Message-Id: <20230704123600.5944-1-felix.willgerodt@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.3 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_NONE,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: From: "Willgerodt, Felix" v8 can be found here: https://sourceware.org/pipermail/gdb-patches/2023-March/198177.html I changed the following commits, mainly based on comments from Simon (thanks!): * Patch 4: Changed error message for going to an aux instruction. * Patch 5: I fixed the possibility of dangling aux objects in python, by erroring out earlier and some restructuring. * Patch 8: I added parsing the config bit from a file provided by Linux, instead of hardcoding it. * Patch 9: This changed a bit. I restructured the ptwrite filtering book-keeping and registration. Now we use a factory pattern for registration. I also removed the handler for inferior exit events in favour of one for the newly added thread_exit event. That simplified the python file. * Patch 10: This is now using an optional for the filter function return value and is printing the payload directly, if we don't have a filter or no Python support. The documentation changed a lot due to the new way to register filters. Thanks, Felix Felix Willgerodt (10): btrace: Introduce auxiliary instructions. btrace: Enable auxiliary instructions in record instruction-history. btrace: Enable auxiliary instructions in record function-call-history. btrace: Handle stepping and goto for auxiliary instructions. python: Introduce gdb.RecordAuxiliary class. python: Add clear() to gdb.Record. btrace, gdbserver: Add ptwrite to btrace_config_pt. btrace, linux: Enable ptwrite packets. btrace, python: Enable ptwrite filter registration. btrace: Extend ptwrite event decoding. gdb/NEWS | 7 + gdb/btrace.c | 72 ++- gdb/btrace.h | 41 +- gdb/config.in | 3 + gdb/configure | 11 + gdb/data-directory/Makefile.in | 1 + gdb/disasm-flags.h | 1 + gdb/doc/gdb.texinfo | 32 +- gdb/doc/python.texi | 166 ++++++ gdb/extension-priv.h | 5 + gdb/extension.c | 13 + gdb/extension.h | 3 + gdb/features/btrace-conf.dtd | 1 + gdb/guile/guile.c | 1 + gdb/nat/linux-btrace.c | 58 ++ gdb/python/lib/gdb/ptwrite.py | 77 +++ gdb/python/py-record-btrace.c | 185 +++++- gdb/python/py-record-btrace.h | 6 + gdb/python/py-record.c | 78 ++- gdb/python/py-record.h | 7 + gdb/python/python-internal.h | 3 + gdb/python/python.c | 2 + gdb/record-btrace.c | 105 +++- gdb/record.c | 10 + gdb/record.h | 5 +- gdb/remote.c | 33 ++ gdb/testsuite/gdb.btrace/i386-ptwrite.S | 550 ++++++++++++++++++ gdb/testsuite/gdb.btrace/ptwrite.c | 39 ++ gdb/testsuite/gdb.btrace/ptwrite.exp | 202 +++++++ gdb/testsuite/gdb.btrace/x86_64-ptwrite.S | 544 +++++++++++++++++ gdb/testsuite/gdb.python/py-record-btrace.exp | 4 + gdb/testsuite/lib/gdb.exp | 72 +++ gdbserver/linux-low.cc | 3 + gdbserver/server.cc | 18 + gdbsupport/btrace-common.h | 6 + gdbsupport/common.m4 | 2 + gdbsupport/config.in | 3 + gdbsupport/configure | 11 + 38 files changed, 2345 insertions(+), 35 deletions(-) create mode 100644 gdb/python/lib/gdb/ptwrite.py create mode 100644 gdb/testsuite/gdb.btrace/i386-ptwrite.S create mode 100644 gdb/testsuite/gdb.btrace/ptwrite.c create mode 100644 gdb/testsuite/gdb.btrace/ptwrite.exp create mode 100644 gdb/testsuite/gdb.btrace/x86_64-ptwrite.S -- 2.34.1 Intel Deutschland GmbH Registered Address: Am Campeon 10, 85579 Neubiberg, Germany Tel: +49 89 99 8853-0, www.intel.de Managing Directors: Christin Eisenschmid, Sharon Heck, Tiffany Doon Silva Chairperson of the Supervisory Board: Nicole Lau Registered Office: Munich Commercial Register: Amtsgericht Muenchen HRB 186928