From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3262 invoked by alias); 28 Jul 2010 02:08:58 -0000 Received: (qmail 3115 invoked by uid 22791); 28 Jul 2010 02:08:57 -0000 X-SWARE-Spam-Status: No, hits=-6.0 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 28 Jul 2010 02:08:52 +0000 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o6S28pcw029676 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 27 Jul 2010 22:08:51 -0400 Received: from greed.delorie.com ([10.3.112.10]) by int-mx05.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o6S28nar020573 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 27 Jul 2010 22:08:50 -0400 Received: from greed.delorie.com (greed.delorie.com [127.0.0.1] (may be forged)) by greed.delorie.com (8.14.3/8.14.3) with ESMTP id o6S28nfZ013783; Tue, 27 Jul 2010 22:08:49 -0400 Received: (from dj@localhost) by greed.delorie.com (8.14.3/8.14.3/Submit) id o6S28nED013780; Tue, 27 Jul 2010 22:08:49 -0400 Date: Wed, 28 Jul 2010 02:08:00 -0000 Message-Id: <201007280208.o6S28nED013780@greed.delorie.com> From: DJ Delorie To: DJ Delorie CC: gdb-patches@sourceware.org In-reply-to: <201007280206.o6S26g5e013725@greed.delorie.com> (message from DJ Delorie on Tue, 27 Jul 2010 22:06:42 -0400) Subject: Re: [rx-sim]: add cycle accuracy References: <201007280206.o6S26g5e013725@greed.delorie.com> X-IsSubscribed: yes 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-07/txt/msg00463.txt.bz2 Oops, this part goes with it... * rx.h (RX_Opcode_ID): Add nop2 and nop3 for statistics. Index: include/opcode/rx.h =================================================================== RCS file: /cvs/src/src/include/opcode/rx.h,v retrieving revision 1.3 diff -p -U3 -r1.3 rx.h --- include/opcode/rx.h 15 Apr 2010 10:26:09 -0000 1.3 +++ include/opcode/rx.h 28 Jul 2010 02:08:21 -0000 @@ -57,7 +57,6 @@ typedef enum RXO_movbir, /* [s,s2] = d (signed) */ RXO_pushm, /* s..s2 */ RXO_popm, /* s..s2 */ - RXO_pusha, /* &s */ RXO_xchg, /* s <-> d */ RXO_stcc, /* d = s if cond(s2) */ RXO_rtsd, /* rtsd, 1=imm, 2-0 = reg if reg type */ @@ -98,6 +97,8 @@ typedef enum RXO_jsrrel, /* pc += d */ RXO_rts, RXO_nop, + RXO_nop2, + RXO_nop3, RXO_scmpu, RXO_smovu,