From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12688 invoked by alias); 3 Feb 2010 09:18:08 -0000 Received: (qmail 12678 invoked by uid 22791); 3 Feb 2010 09:18:07 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from sibelius.xs4all.nl (HELO glazunov.sibelius.xs4all.nl) (83.163.83.176) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 03 Feb 2010 09:18:01 +0000 Received: from glazunov.sibelius.xs4all.nl (kettenis@localhost [127.0.0.1]) by glazunov.sibelius.xs4all.nl (8.14.3/8.14.3) with ESMTP id o139HuI3011282; Wed, 3 Feb 2010 10:17:56 +0100 (CET) Received: (from kettenis@localhost) by glazunov.sibelius.xs4all.nl (8.14.3/8.14.3/Submit) id o139Hq8L011469; Wed, 3 Feb 2010 10:17:52 +0100 (CET) Date: Wed, 03 Feb 2010 09:18:00 -0000 Message-Id: <201002030917.o139Hq8L011469@glazunov.sibelius.xs4all.nl> From: Mark Kettenis To: hjl.tools@gmail.com CC: gdb-patches@sourceware.org In-reply-to: <20100203033716.GA23257@lucon.org> (hongjiu.lu@intel.com) Subject: Re: PATCH: Increase MAX_REGISTER_SIZE to 32 References: <20100203033716.GA23257@lucon.org> 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 X-SW-Source: 2010-02/txt/msg00062.txt.bz2 > Date: Tue, 2 Feb 2010 19:37:16 -0800 > From: "H.J. Lu" > > Hi, > > Intel AVX has 32byte/256bit YMM registers. This patch increases > MAX_REGISTER_SIZE to 32. OK to install? ok > H.J. > ---- > 2010-02-02 H.J. Lu > > * defs.h (MAX_REGISTER_SIZE): Increase to 32. > > diff --git a/gdb/defs.h b/gdb/defs.h > index b0a212d..5b5c261 100644 > --- a/gdb/defs.h > +++ b/gdb/defs.h > @@ -1023,7 +1023,7 @@ extern void *alloca (); > /* Maximum size of a register. Something small, but large enough for > all known ISAs. If it turns out to be too small, make it bigger. */ > > -enum { MAX_REGISTER_SIZE = 16 }; > +enum { MAX_REGISTER_SIZE = 32 }; > > /* Static target-system-dependent parameters for GDB. */ > >