Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 62205 invoked from network); 19 Jan 2006 16:07:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Jan 2006 16:07:05 -0000 Received: (qmail 63887 invoked by uid 500); 19 Jan 2006 16:07:00 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 63845 invoked by uid 500); 19 Jan 2006 16:06:59 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 63833 invoked by uid 99); 19 Jan 2006 16:06:59 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Jan 2006 08:06:59 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 19 Jan 2006 08:06:58 -0800 Received: (qmail 61669 invoked by uid 65534); 19 Jan 2006 16:06:37 -0000 Message-ID: <20060119160637.61662.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r370516 - in /incubator/harmony/enhanced/jchevm/libjc/arch/ppc: ppc_libjc.h ppc_structures.h Date: Thu, 19 Jan 2006 16:06:36 -0000 To: harmony-commits@incubator.apache.org From: archie@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: archie Date: Thu Jan 19 08:06:30 2006 New Revision: 370516 URL: http://svn.apache.org/viewcvs?rev=370516&view=rev Log: Remove no longer needed functions and definitions. Modified: incubator/harmony/enhanced/jchevm/libjc/arch/ppc/ppc_libjc.h incubator/harmony/enhanced/jchevm/libjc/arch/ppc/ppc_structures.h Modified: incubator/harmony/enhanced/jchevm/libjc/arch/ppc/ppc_libjc.h URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/jchevm/libjc/arch/ppc/ppc_libjc.h?rev=370516&r1=370515&r2=370516&view=diff ============================================================================== --- incubator/harmony/enhanced/jchevm/libjc/arch/ppc/ppc_libjc.h (original) +++ incubator/harmony/enhanced/jchevm/libjc/arch/ppc/ppc_libjc.h Thu Jan 19 08:06:30 2006 @@ -58,44 +58,6 @@ */ } -extern inline void -_jc_stack_frame_init(_jc_stack_frame *framep) -{ - *framep = NULL; -} - -#define _jc_stack_frame_current(framep) \ - do { \ - *(framep) = __builtin_frame_address(0); \ - } while (0) - -extern inline void -_jc_stack_frame_next(_jc_stack_frame *framep, const void **pcp) -{ - _jc_word *const ebp = *framep; - - *pcp = (const void *)ebp[1]; /* saved %eip is one slot above %ebp */ - *framep = (_jc_word *)ebp[0]; /* %ebp points to saved %ebp */ -} - -extern inline jboolean -_jc_stack_frame_valid(_jc_stack_frame frame) -{ - return frame != NULL; -} - -extern inline jboolean -_jc_stack_frame_equal(_jc_stack_frame frame1, _jc_stack_frame frame2) -{ - return frame1 == frame2; -} - -extern inline const void * -_jc_stack_frame_sp(_jc_stack_frame frame) -{ - return (const void *)frame; -} - /** * @todo Returning NULL to be compile-clean for the moment. */ @@ -103,39 +65,6 @@ _jc_mcontext_sp(const mcontext_t *mctx) { fprintf(stderr, "WARNING: call to unimplemented function _jc_mcontext_sp(...)\n"); - exit(0); - return (const void *) NULL; -} - -/** - * @todo Returning NULL to be compile-clean for the moment. - */ -extern inline const void * -_jc_mcontext_pc(const mcontext_t *mctx) -{ - fprintf(stderr, "WARNING: call to unimplemented function _jc_mcontext_pc(...)\n"); - exit(0); - return (const void *) NULL; -} - -/** - * @todo Returning NULL to be compile-clean for the moment. - */ -extern inline _jc_stack_frame -_jc_mcontext_frame(const mcontext_t *mctx) -{ - fprintf(stderr, "WARNING: call to unimplemented function _jc_mcontext_frame(...)\n"); - exit(0); - return (_jc_word *) NULL; -} - -/** - * @todo Returning NULL to be compile-clean for the moment. - */ -extern inline const void * -_jc_signal_fault_address(int sig_num, siginfo_t *info, ucontext_t *uctx) -{ - fprintf(stderr, "WARNING: call to unimplemented function _jc_signal_falut_address(...)\n"); exit(0); return (const void *) NULL; } Modified: incubator/harmony/enhanced/jchevm/libjc/arch/ppc/ppc_structures.h URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/jchevm/libjc/arch/ppc/ppc_structures.h?rev=370516&r1=370515&r2=370516&view=diff ============================================================================== --- incubator/harmony/enhanced/jchevm/libjc/arch/ppc/ppc_structures.h (original) +++ incubator/harmony/enhanced/jchevm/libjc/arch/ppc/ppc_structures.h Thu Jan 19 08:06:30 2006 @@ -20,7 +20,5 @@ #ifndef _ARCH_PPC_STRUCTURES_H_ #define _ARCH_PPC_STRUCTURES_H_ -typedef _jc_word *_jc_stack_frame; /* pointer to saved %epb */ - #endif /* _ARCH_PPC_STRUCTURES_H_ */