|
Message
From: cvs at opencores.org<cvs@o...>
Date: Thu Apr 20 16:19:34 CEST 2006
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/06/04 20:16:19 Modified: jop/java/tools/src/com/jopdesign/wcet SetWCETAnalysis.java Log: Basic cycle counting. It needs cycle counting for Java implemented bytecodes. Revision Changes Path 1.2 jop/java/tools/src/com/jopdesign/wcet/SetWCETAnalysis.java http://www.opencores.org/cvsweb.shtml/jop/java/tools/src/com/jopdesign/wcet/SetWCETAnalysis.java.diff?r1=1.1&r2=1.2 (In the diff below, changes in quantity of whitespace are not shown.) Index: SetWCETAnalysis.java =================================================================== RCS file: /cvsroot/rasped/jop/java/tools/src/com/jopdesign/wcet/SetWCETAnalysis.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- SetWCETAnalysis.java 8 Apr 2006 16:29:24 -0000 1.1 +++ SetWCETAnalysis.java 20 Apr 2006 14:19:33 -0000 1.2 @@ -23,10 +23,12 @@ String methodId = m.getName()+m.getSignature(); //if(m.getName().equalsIgnoreCase("sort")){ + if(!m.isAbstract()){ WCETMethodBlock wcmb = new WCETMethodBlock(m,clazz); wcmb.controlFlowGraph(); wcmb.directedGraph(); wca.out.println(wcmb.toString()); + } //System.out.println(wcmb.toString()); //}
|
 |