From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23968 invoked by alias); 30 Aug 2013 09:58:24 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 23919 invoked by uid 89); 30 Aug 2013 09:58:23 -0000 Received: from mga02.intel.com (HELO mga02.intel.com) (134.134.136.20) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 30 Aug 2013 09:58:23 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RDNS_NONE autolearn=no version=3.3.2 X-HELO: mga02.intel.com Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 30 Aug 2013 02:58:22 -0700 X-ExtLoop1: 1 Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga002.jf.intel.com with ESMTP; 30 Aug 2013 02:58:21 -0700 Received: from ulslx001.iul.intel.com (ulslx001.iul.intel.com [172.28.207.63]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id r7U9wKM8014683; Fri, 30 Aug 2013 10:58:20 +0100 Received: from ulslx001.iul.intel.com (localhost [127.0.0.1]) by ulslx001.iul.intel.com with ESMTP id r7U9wKMm011368; Fri, 30 Aug 2013 11:58:20 +0200 Received: (from wtedesch@localhost) by ulslx001.iul.intel.com with id r7U9wK1O011364; Fri, 30 Aug 2013 11:58:20 +0200 From: Walfred Tedeschi To: gdb-patches@sourceware.org, walfred.tedeschi@intel.com, mircea.gherzan@intel.com Subject: [PATCH v3 8/8] Add MPX feature description to GDB manual. Date: Fri, 30 Aug 2013 09:58:00 -0000 Message-Id: <1377856683-11267-9-git-send-email-walfred.tedeschi@intel.com> In-Reply-To: <1377856683-11267-1-git-send-email-walfred.tedeschi@intel.com> References: <1377856683-11267-1-git-send-email-walfred.tedeschi@intel.com> X-SW-Source: 2013-08/txt/msg00905.txt.bz2 Describes MPX feature registers including bnd0raw ... bnd3raw, bnd0 ... bnd3 bndstatus and bndcfgu. 2013-08-30 Walfred Tedeschi doc/ * gdb.texinfo (i386 Features): Add MPX feature. Signed-off-by: Walfred Tedeschi --- gdb/doc/gdb.texinfo | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 21250fe..c594712 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -42563,6 +42563,23 @@ describe the upper 128 bits of @sc{ymm} registers: The @samp{org.gnu.gdb.i386.linux} feature is optional. It should describe a single register, @samp{orig_eax}. +The @samp{org.gnu.gdb.i386.mpx} feature is optional. It should +describe registers: + +@itemize @minus +@item +@samp{bnd0raw} through @samp{bnd3raw} for i386, amd64 and x32. Hardware +representation of the bound registers. +@item +@samp{bnd0} through @samp{bnd3} for i386, amd64 and x32. +User representation of the bound registers. Takes into account the one +complement of the upper bound. The value of an upper bound taken from +@samp{bnd0} through @samp{bnd3} is an address in memory. +@item +@samp{bndcfgu} and @samp{bndstatus} for i386, amd64 and x32. +@end itemize + + @node MIPS Features @subsection @acronym{MIPS} Features @cindex target descriptions, @acronym{MIPS} features -- 1.7.10.4