|
Message
From: cvs at opencores.org<cvs@o...>
Date: Tue May 30 15:01:47 CEST 2006
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/06/05 30:15:01 Modified: jop/java/tools/src/com/jopdesign/wcet WCETAnalyser.java CacheSimul.java Log: comment Revision Changes Path 1.30 jop/java/tools/src/com/jopdesign/wcet/WCETAnalyser.java http://www.opencores.org/cvsweb.shtml/jop/java/tools/src/com/jopdesign/wcet/WCETAnalyser.java.diff?r1=1.29&r2=1.30 (In the diff below, changes in quantity of whitespace are not shown.) Index: WCETAnalyser.java =================================================================== RCS file: /cvsroot/rasped/jop/java/tools/src/com/jopdesign/wcet/WCETAnalyser.java,v retrieving revision 1.29 retrieving revision 1.30 diff -u -b -r1.29 -r1.30 --- WCETAnalyser.java 30 May 2006 12:55:32 -0000 1.29 +++ WCETAnalyser.java 30 May 2006 13:01:47 -0000 1.30 @@ -1773,7 +1773,7 @@ public int getBlockCycles() { boolean hit = false; for (int i=0;i<bbinvo.size();i++){ - hit = CacheSimul.get((String)bbinvo.get(i)); + hit = CacheSimul.get(wcmb.methodbcel); } if(hit) return blockcychit; 1.2 jop/java/tools/src/com/jopdesign/wcet/CacheSimul.java http://www.opencores.org/cvsweb.shtml/jop/java/tools/src/com/jopdesign/wcet/CacheSimul.java.diff?r1=1.1&r2=1.2 (In the diff below, changes in quantity of whitespace are not shown.) Index: CacheSimul.java =================================================================== RCS file: /cvsroot/rasped/jop/java/tools/src/com/jopdesign/wcet/CacheSimul.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- CacheSimul.java 30 May 2006 12:54:34 -0000 1.1 +++ CacheSimul.java 30 May 2006 13:01:47 -0000 1.2 @@ -1,7 +1,10 @@ package com.jopdesign.wcet; + +import org.apache.bcel.classfile.Method; + public class CacheSimul { // return true on a cache hit - public static boolean get(String methodid){ + public static boolean get(Method methodid){ return false; } public static void clear(){};
|
 |