public inbox for frysk@sourceware.org
 help / color / mirror / Atom feed
From: Phil Muldoon <pmuldoon@redhat.com>
To: frysk@sourceware.org
Subject: Re: [SCM]  master: Refactor Watchpoint -> WatchpointFunctions, {Arch}Watchpoint  -> {Arch}WatchpointFunctions
Date: Wed, 02 Apr 2008 16:21:00 -0000	[thread overview]
Message-ID: <47F3B28A.7080102@redhat.com> (raw)
In-Reply-To: <20080402161812.25624.qmail@sourceware.org>

pmuldoon@sourceware.org wrote:

I've renamed these as the previous name Watchpoint.java did not specify 
the nature of the class. Also the name Watchpoint was needed to convey a 
model of a watchpoint, not the functions that set the watchpoint. The 
new Watchpoint.java class to convey information on the watchpoint if 
forthcoming.

> The branch, master has been updated
>        via  67ca0747166b7e823d4f9f2f1b8f581c01be2735 (commit)
>       from  faa0a714fa42575226a1d6cd805d8541929beca1 (commit)
>
> Those revisions listed above that are new to this repository have
> not appeared on any other notification email.
>
> - Log -----------------------------------------------------------------
> commit 67ca0747166b7e823d4f9f2f1b8f581c01be2735
> Author: Phil Muldoon <pmuldoon@redhat.com>
> Date:   Wed Apr 2 17:17:20 2008 +0100
>
>     Refactor Watchpoint -> WatchpointFunctions, {Arch}Watchpoint -> {Arch}WatchpointFunctions
>     
>     2008-04-02  Phil Muldoon  <pmuldoon@redhat.com>
>     
>             * Watchpoint.java: Refactor to WatchpointFunctions.java
>             * IA32Watchpoint.java: Refactor to IA32WatchpointFunctions.java
>             * X8664Watchpoint.java: Refactor to X8664WatchpointFunctions.java
>             * WatchpointFactory.java: Refactor to WatchpointFunctionFactory.javs
>             * TestWatchpoints.java: Update.
>
> -----------------------------------------------------------------------
>
> Summary of changes:
>  frysk-core/frysk/isa/watchpoints/ChangeLog         |    8 ++++++++
>  ...atchpoint.java => IA32WatchpointFunctions.java} |    4 ++--
>  .../frysk/isa/watchpoints/TestWatchpoint.java      |    7 ++++---
>  ...Factory.java => WatchpointFunctionFactory.java} |   10 +++++-----
>  .../{Watchpoint.java => WatchpointFunctions.java}  |    2 +-
>  ...tchpoint.java => X8664WatchpointFunctions.java} |    4 ++--
>  6 files changed, 22 insertions(+), 13 deletions(-)
>  rename frysk-core/frysk/isa/watchpoints/{IA32Watchpoint.java => IA32WatchpointFunctions.java} (99%)
>  rename frysk-core/frysk/isa/watchpoints/{WatchpointFactory.java => WatchpointFunctionFactory.java} (90%)
>  rename frysk-core/frysk/isa/watchpoints/{Watchpoint.java => WatchpointFunctions.java} (99%)
>  rename frysk-core/frysk/isa/watchpoints/{X8664Watchpoint.java => X8664WatchpointFunctions.java} (99%)
>
> First 500 lines of diff:
> diff --git a/frysk-core/frysk/isa/watchpoints/ChangeLog b/frysk-core/frysk/isa/watchpoints/ChangeLog
> index f53652b..e3f419a 100644
> --- a/frysk-core/frysk/isa/watchpoints/ChangeLog
> +++ b/frysk-core/frysk/isa/watchpoints/ChangeLog
> @@ -1,3 +1,11 @@
> +2008-04-02  Phil Muldoon  <pmuldoon@redhat.com>
> +
> +	* Watchpoint.java: Refactor to WatchpointFunctions.java
> +	* IA32Watchpoint.java: Refactor to IA32WatchpointFunctions.java
> +	* X8664Watchpoint.java: Refactor to X8664WatchpointFunctions.java
> +	* WatchpointFactory.java: Refactor to WatchpointFunctionFactory.javs
> +	* TestWatchpoints.java: Update.
> +
>  2008-04-01  Phil Muldoon  <pmuldoon@redhat.com>
>  
>  	* Watchpoint.java (hasWatchpointTriggered): Define.
> diff --git a/frysk-core/frysk/isa/watchpoints/IA32Watchpoint.java b/frysk-core/frysk/isa/watchpoints/IA32WatchpointFunctions.java
> similarity index 99%
> rename from frysk-core/frysk/isa/watchpoints/IA32Watchpoint.java
> rename to frysk-core/frysk/isa/watchpoints/IA32WatchpointFunctions.java
> index 5f97636..15117c5 100644
> --- a/frysk-core/frysk/isa/watchpoints/IA32Watchpoint.java
> +++ b/frysk-core/frysk/isa/watchpoints/IA32WatchpointFunctions.java
> @@ -42,11 +42,11 @@ package frysk.isa.watchpoints;
>  import frysk.isa.registers.IA32Registers;
>  import frysk.proc.Task;
>  
> -class IA32Watchpoint extends Watchpoint {
> +class IA32WatchpointFunctions extends WatchpointFunctions {
>  
>      // Architecture Watchpoint Count. Number of usable
>      // Address-Breakpoint Registers (DR0-DR3)
> -    public IA32Watchpoint () {
> +    public IA32WatchpointFunctions () {
>  	noOfWatchpoints = 4;
>      }
>  
> diff --git a/frysk-core/frysk/isa/watchpoints/TestWatchpoint.java b/frysk-core/frysk/isa/watchpoints/TestWatchpoint.java
> index e218689..49e5ceb 100644
> --- a/frysk-core/frysk/isa/watchpoints/TestWatchpoint.java
> +++ b/frysk-core/frysk/isa/watchpoints/TestWatchpoint.java
> @@ -58,7 +58,7 @@ public class TestWatchpoint extends TestLib {
>  	Task task = proc.getMainTask();
>  	long address = 0x1000;
>  	long debugControlRegister;
> -	Watchpoint wp = WatchpointFactory.getWatchpoint(task.getISA());
> +	WatchpointFunctions wp = WatchpointFunctionFactory.getWatchpoint(task.getISA());
>  	long savedDebugControlRegister = wp.readControlRegister(task);
>  	for (int i=0; i<4; i++) {
>  
> @@ -111,7 +111,7 @@ public class TestWatchpoint extends TestLib {
>  	Task task = proc.getMainTask();
>  	long address = 0x1000;
>  	long debugControlRegister;
> -	Watchpoint wp = WatchpointFactory.getWatchpoint(task.getISA());
> +	WatchpointFunctions wp = WatchpointFunctionFactory.getWatchpoint(task.getISA());
>  	long savedDebugControlRegister = wp.readControlRegister(task);
>  	for (int i=0; i<4; i++) {
>  
> @@ -166,7 +166,8 @@ public class TestWatchpoint extends TestLib {
>  	Task task = proc.getMainTask();
>  	long address = 0x0;
>  	long debugControlRegister;	
> -	Watchpoint wp = WatchpointFactory.getWatchpoint(task.getISA());
> +	WatchpointFunctions wp = WatchpointFunctionFactory.getWatchpoint(task.getISA());
> +
>  	long savedDebugControlRegister = wp.readControlRegister(task);
>  
>  	for (int i=0; i<4; i++) {
> diff --git a/frysk-core/frysk/isa/watchpoints/WatchpointFactory.java b/frysk-core/frysk/isa/watchpoints/WatchpointFunctionFactory.java
> similarity index 90%
> rename from frysk-core/frysk/isa/watchpoints/WatchpointFactory.java
> rename to frysk-core/frysk/isa/watchpoints/WatchpointFunctionFactory.java
> index 9c738da..bf8211f 100644
> --- a/frysk-core/frysk/isa/watchpoints/WatchpointFactory.java
> +++ b/frysk-core/frysk/isa/watchpoints/WatchpointFunctionFactory.java
> @@ -46,13 +46,13 @@ import frysk.isa.ISAMap;
>   * Watchpoint call database.
>   */
>  
> -public class WatchpointFactory {
> +public class WatchpointFunctionFactory {
>      private static final ISAMap watchpointTables = new ISAMap("watchpoint table")
> -	.put(ISA.IA32, new IA32Watchpoint())
> -	.put(ISA.X8664, new X8664Watchpoint())
> +	.put(ISA.IA32, new IA32WatchpointFunctions())
> +	.put(ISA.X8664, new X8664WatchpointFunctions())
>  	;
>  
> -    public static Watchpoint getWatchpoint(ISA isa) {
> -	return (Watchpoint) watchpointTables.get(isa);
> +    public static WatchpointFunctions getWatchpoint(ISA isa) {
> +	return (WatchpointFunctions) watchpointTables.get(isa);
>      }
>  }
> diff --git a/frysk-core/frysk/isa/watchpoints/Watchpoint.java b/frysk-core/frysk/isa/watchpoints/WatchpointFunctions.java
> similarity index 99%
> rename from frysk-core/frysk/isa/watchpoints/Watchpoint.java
> rename to frysk-core/frysk/isa/watchpoints/WatchpointFunctions.java
> index a0ef202..30e23fc 100644
> --- a/frysk-core/frysk/isa/watchpoints/Watchpoint.java
> +++ b/frysk-core/frysk/isa/watchpoints/WatchpointFunctions.java
> @@ -42,7 +42,7 @@ package frysk.isa.watchpoints;
>  
>  import frysk.proc.Task;
>  
> -public abstract class Watchpoint  {
> +public abstract class WatchpointFunctions  {
>  
>      // Architecture Watchpoint Count. Number of usable
>      // Address-Breakpoint Registers 
> diff --git a/frysk-core/frysk/isa/watchpoints/X8664Watchpoint.java b/frysk-core/frysk/isa/watchpoints/X8664WatchpointFunctions.java
> similarity index 99%
> rename from frysk-core/frysk/isa/watchpoints/X8664Watchpoint.java
> rename to frysk-core/frysk/isa/watchpoints/X8664WatchpointFunctions.java
> index 1df98a5..ee992ab 100644
> --- a/frysk-core/frysk/isa/watchpoints/X8664Watchpoint.java
> +++ b/frysk-core/frysk/isa/watchpoints/X8664WatchpointFunctions.java
> @@ -42,11 +42,11 @@ package frysk.isa.watchpoints;
>  import frysk.isa.registers.X8664Registers;
>  import frysk.proc.Task;
>  
> -class X8664Watchpoint extends Watchpoint {
> +class X8664WatchpointFunctions extends WatchpointFunctions {
>  
>      // Architecture Watchpoint Count. Number of usable
>      // Address-Breakpoint Registers (DR0-DR3)
> -    public X8664Watchpoint () {
> +    public X8664WatchpointFunctions () {
>  	noOfWatchpoints = 4;
>      }
>     
>
>
> hooks/post-receive
> --
> frysk system monitor/debugger
>   

           reply	other threads:[~2008-04-02 16:21 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <20080402161812.25624.qmail@sourceware.org>]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=47F3B28A.7080102@redhat.com \
    --to=pmuldoon@redhat.com \
    --cc=frysk@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).