Message from Pavel Afremov Most recent post: 12/29/2007 4 authors and 5 replies. ------=_Part_17995_7739635.1198773247725 Content-Disposition: inline Hi Uncompressed references support was implemented but wasn't tested closely yet. I'd like to propose change default mode of DRLVM on x86-64 to "uncompressed". With such a change we can test uncompressed references mode with default snapshot testing. If snapshot testing will show bad results, we can switch default mode again. You can find all required changes in HARMONY-5355<https://issues.apache.org/jira/browse/HARMONY-5355> . Thanks Pavel Afremov. ------=_Part_17995_7739635.1198773247725-- read more about [drlvm][object][testing] Snapshot testing for uncompressed references mode
Message from Andrew Zhang Most recent post: 12/29/2007 4 authors and 9 replies. ------=_Part_2678_17479470.1198344931639 Content-Disposition: inline Hi, I just found quick sort is very slow (4x) on Harmony compared with RI. I did not mean Arrays.sort method here, but a stack based implementation of quick sort. The code has a lot of push/pop operation. Any idea? -- Best regards, Andrew Zhang http://zhanghuangzhu.blogspot.com/ ------=_Part_2678_17479470.1198344931639-- read more about [performance] quick sort is 4x slower on Harmony
Message from Junguo Pu Most recent post: 12/28/2007 4 authors and 4 replies. ------=_Part_3412_32464093.1198650855576 Content-Disposition: inline Hello! Everybody!We, Evermore Software Inc., provide a EIOffice Bundle on Harmony JRE build r603534, you can download from: Windows Bundle: ftp://218.90.147.70/4.2.1289.101EN.IH04.T1.rar Linux Bundle: ftp://218.90.147.70/4.2.1289.101EN.IH04.T1_B.tar.gz userID: EverMore-Harmony password:Keijweaw And also you can get the version based on SUN JRE at http://www.evermoresw.com/weben/download/eioffice_for_trial.jsp this is 30 Day Free Trail Version. Thanks for your download, use and test. Welcome for your feedback! Regards J.Poo Evermore Software Inc. ------=_Part_3412_32464093.1198650855576-- read more about [general][bundle] FYI: "EIOffice with Harmony" bundle downloadable
Message from Egor Pasko Most recent post: 12/28/2007 2 authors and 3 replies. $subj Author: varlax Date: Mon Dec 24 23:59:43 2007 New Revision: 606771 URL: http://svn.apache.org/viewvc?rev=606771&view=rev Log: Allow using both package and filepath formats for selecting smoke tests; other minor enhancements. <convert-test blablabla isn't defined, so ant fails here with message: Couldn't create task or type of type: convert-test if I add the convert-test code to the working_vm/build/make/build.xml, everything works: <macrodef name="convert-test"> <attribute name="from"/> <attribute name="to"/> <sequential> <pathconvert property="@xxxxxxxxxxx{to}" setonempty="no"> <path path="${@xxxxxxxxxxx{from}}"/> <chainedmapper> <filtermapper> <replaceregex pattern="\.JAVA$$"/> </filtermapper> <unpackagemapper from="${basedir}${file.separator}*" to="*.JAVA"/> </chainedmapper> </pathconvert> </sequential> </macrodef> but I don't want to commit this copypaste immediately. How do we share ant code between VM & Classlib in the right way? -- Egor Pasko read more about [drlvm][build] build.sh smoke.test broken with unsatisfied convert-test dependency
Message from Nathan Beyer Most recent post: 12/26/2007 3 authors and 11 replies. I'm having all sorts of issues with buildtest 2.0. Here's what I'm running, is there anything that's out of whack? Ubuntu 7.10 on x86_64 (AMD dual core) Sun JAVA 1.6 Ant 1.7 SVN 1.4.4 Windows XP on x86 Sun JAVA 1.6 MSVC 2003 Ant 1.7 SVN 1.4.5 Here's what I'm doing, per the README [1]. * svn checkout -N https://svn.apache.org/repos/asf/harmony/enhanced/buildtest/branches/2.0/ * Tweak the buildtest.sh to setup the environment variables and then run these commands. * ./buildtest.sh install * ./buildtest.sh setup -Dtest.suites="classlib,drlvm,maven_test" * ./buildtest.sh run Here's the failure I get ---install: [echo] [echo] -------- [echo] WARNING: Target setup of adaptor for Test Suite 'maven_test' FAILED [echo] -------- with the following exception: [echo] The following error occurred while executing this line: [echo] /home/nathan/harmony/bti/scripts/framework.xml:1079: /home/nathan/harmony/bti/tests/maven_test isn't a valid directory [delete] Deleting: /home/nathan/harmony/bti/build/temp/null1764598389 check-status: [echo] [echo] ------ [echo] ERROR: Setup of Test Suite 'maven_test' FAILED. [echo] ------ BUILD FAILED The same failure happened on windows; the paths were just a bit different. I thought this was supposed to work out of the box. -Nathan [1] https://svn.apache.org/repos/asf/harmony/enhanced/buildtest/branches/2.0/README.txt read more about [buildtest] does the buildtest 2.0 work with an 1.7
Message from Tony Wu Most recent post: 12/26/2007 10 authors and 29 replies. Hi all, I have raised a JIRA[1] for migrating the dependencies of locale related data to icu4j and remove the data in luni/src/main/JAVA/org/apache/harmony/luni/internal/locale/. Currently I have delegated all the locale related classes to corresponding classes in icu4j and successfully removed the dependencies of harmony resource bundles. As expected, there are around 20 failures of harmony test. Many of them are caused by data difference. I have listed all of them on harmony wiki[2] and will raise them to icu soon. By applying this patch, we can get 4.2 mega bytes decrease in harmony source code, including the svn data. My proposal is to apply the patch on 5061 first and exclude these tests which fail on different locale data. Then I will take follow up action to contact icu team and get solution to move them out. Otherwise I'm afraid my fix will be outdated for waiting until icu team get ready to fix the data. Do you've any objection? Later, I will take care of the performance issue of this delegation. Thanks in advance for your comments [1] https://issues.apache.org/jira/browse/HARMONY-5061 [2] http://wiki.apache.org/harmony/MigrateToICU-- Tony Wu China Software Development Lab, IBM read more about [classlib]remove the duplicate locale data
Message from Xiao-Feng Li Most recent post: 12/25/2007 3 authors and 3 replies. Hi, I found the new helper design uses following interface for object allocation: public static Address alloc(Address classHandle) { int objSize = VMHelper.getTypeSize(classHandle); int allocationHandle = VMHelper.getAllocationHandle(classHandle); return alloc(objSize, allocationHandle); } Is the VMHelper.getTypeSize(classHandle) actually a runtime constant known by JIT? Thanks, xiaofeng -- http://xiao-feng.blogspot.com read more about [drlvm][inline helper] question on object size for allocation
Message from Mikhail Loenko Most recent post: 12/23/2007 2 authors and 2 replies. We've unfrozen the code, but since we still have regressions in about 5 test suites, I suggest that we hold with integration of major changes. Otherwise our regressions fight will be a neverending story... Ideas? Thanks, Mikhail read more about [general] extend feature freeze?
Message from Alexey Petrenko Most recent post: 12/23/2007 2 authors and 3 replies. Guys, we are using a half year old version of eclipse for JAVA compiler and other tools. May be it's time to update version? SY, Alexey read more about [build] Eclipse version to use in Harmony build
Message from "=?GB2312?B?yrezycjZ?=" Most recent post: 12/23/2007 2 authors and 3 replies. ------=_Part_4332_22809099.1198399388373 Content-Disposition: inline what is JAVA frame, m2n frame and native frame? I want to know the relationship of them. Could any one give some help? Thanks, Chengrong ------=_Part_4332_22809099.1198399388373-- read more about [drlvm][jitrino]about the stack frame
Message from "=?GB2312?B?yrezycjZ?=" Most recent post: 12/22/2007 3 authors and 5 replies. ------=_Part_19781_17604767.1198225365962 Content-Disposition: inline hi, all I want to know the structure of the JAVA objcet. Where can I find the exact class describing JAVA object in the source code of Harmony? Thanks, Chengrong ------=_Part_19781_17604767.1198225365962-- read more about [drlvm][object]
Message from Egor Pasko Most recent post: 12/20/2007 2 authors and 3 replies. Anybody noticed that -Xtrace:em is suddenly gone? shell> JAVA -Xtrace:em Hello Unknown option -Xtrace:em Use JAVA -help to get help on command line options why? -- Egor Pasko read more about [drlvm][jit] EM tracing gone
Message from Spark Shen Most recent post: 12/20/2007 7 authors and 16 replies. ------=_Part_3866_14413243.1192758542368 Content-Disposition: inline Hi all Now we've many information publishing channels. Wiki, JIRA, blog, harmony web site to name a few. And seems we've a multi-lingual information publishing tendency these days. For example, we've wiki in chinese, JIRA will also has its Russian and/or Chinese version in the near future. I am thinking about to push this tendency one step further. What about also to multi-lingual our harmony web site or our blog. For a project such as fundamental and as important as Harmony, to provide globalized information will definitely help to further prosper our project. Any thoughts? -- Spark Shen China Software Development Lab, IBM ------=_Part_3866_14413243.1192758542368-- read more about [general] Multi-lingual publishing channels - blog, harmony web site etc.
Message from Tim Ellison Most recent post: 12/20/2007 3 authors and 5 replies. Thanks to everyone who helped to check the stability of M4. We are promoting r603534 to a milestone build; and the code base is now open again for regular development. The download page will be updated shortly. Well done everyone! Regards, Tim read more about [general] Code base unfrozen
Message from Tim Ellison Most recent post: 12/20/2007 5 authors and 6 replies. I bring a (paraphrased) message from the ASF Board to our committers... Please reduce the disk usage in personal home directories. They aren't designed for storing large quantities of project data. In particular, we shouldn't be storing multiple snapshot builds and test results, which runs to millions of files. I realize this is hard with the size of Harmony's code base and number of tests that we are running, but the machine is a shared resource so we have to be modest with the number of old builds we keep around. Regards, Tim read more about [committers] Disk usage
Message from Ivan Ooi Most recent post: 12/20/2007 2 authors and 2 replies. ------=_Part_8465_13252503.1198120006637 Content-Disposition: inline Hi all, Will Will Apache Harmony support a minimum/smaller scale JRE ? Some times we does not require a full set of JRE. Probably we just need a basic features for Installer or command base which no need Swing package at all.... some things can reduce down the size to 5MB ? Thanks ------=_Part_8465_13252503.1198120006637-- read more about Will Apache Harmony support a minimum/smaller scale JRE ?
Message from Tim Ellison Most recent post: 12/19/2007 3 authors and 3 replies. The Apache Harmony project are pleased to announce the immediate availability of Harmony 5.0 Milestone 4. Apache Harmony is the JAVA SE project of the Apache Software Foundation, working towards a full compliant implementation of the JAVA SE specification. Harmony 5.0 Milestone 4 is the latest stable build with numerous enhancements including new JIT optimizations, functional and coverage enhancements throughout the class libraries, improved VM threading design, and support for full hardware addressability on 64 bit platforms. Source code and binary builds are available from the Harmony download site: http://harmony.apache.org/download.cgiApache Harmony welcomes your help. For more information on how to report problems, successes, and to get involved in Apache Harmony visit the project website at http://harmony.apache.orgThe Apache Harmony Team read more about [ANNOUNCE] Apache Harmony 5.0M4 available
Message from "=?GB2312?B?yrezycjZ?=" Most recent post: 12/19/2007 7 authors and 18 replies. ------=_Part_8863_4546070.1197946481458 Content-Disposition: inline I found in the process of locking JAVA*<file:///E:/project/jit/Harmony/working_vm/vm/thread/doc/ThreadManager.htm#*>monitors, there is a fast path to acquiring the JAVA *<file:///E:/project/jit/Harmony/working_vm/vm/thread/doc/ThreadManager.htm#*>monitor. In this scenario, the helper doesn't need to switch between JAVA *<file:///E:/project/jit/Harmony/working_vm/vm/thread/doc/ThreadManager.htm#*>and native frames. Otherwise, the helper code enters a slow path by switching between JAVA*<file:///E:/project/jit/Harmony/working_vm/vm/thread/doc/ThreadManager.htm#*>and native code. I don't know why to do this. and what is the difference between them? Could anyone give some directions? Thanks, Chengrong ------=_Part_8863_4546070.1197946481458-- read more about [harmony][Thread]
Message from Andrew Cornwall Most recent post: 12/19/2007 2 authors and 4 replies. ------=_Part_9036_764313.1198017422179 Content-Disposition: inline Part of the work I'm doing requires me to build .class files in order to test them. I'm probably not the first person to have to do this - what do other people use? I have seen Jasmin (http://jasmin.sourceforge.net/) - are there any other JAVA bytecode assemblers that are preferred for use with Harmony? Is there a plan for jasm-like technology from Harmony itself? Thanks in advance for your opinions... Andrew Jr. ------=_Part_9036_764313.1198017422179-- read more about [tools] What do you use for building .class files?
Message from Pamela Yuan Most recent post: 12/19/2007 3 authors and 4 replies. Hi,all In the "emitter"pass, when Jitrino resolve RuntimeInfo,it'll generate some dynamic code.If I want to see the assembly code in the chunk, what can I do? read more about [jitrino][dump]
Message from Nathan Beyer Most recent post: 12/19/2007 3 authors and 3 replies. I'm running some of the various buildtest adaptors and ran into a failure with 'maven_test'. Here's what I did. buildtest.sh -Dtest.suites="classlib,drlvm,maven_test" setup buildtest.sh run Here's the results. Is this expected? [JAVA] [exec] [INFO] ------------------------------------------------------------------------ [JAVA] [exec] [INFO] BUILD SUCCESSFUL [JAVA] [exec] [INFO] ------------------------------------------------------------------------ [JAVA] [exec] [INFO] Total time: 1 minute 29 seconds [JAVA] [exec] [INFO] Finished at: Mon Dec 17 23:06:53 CST 2007 [JAVA] [exec] [INFO] Final Memory: 38M/196M [JAVA] [exec] [INFO] ------------------------------------------------------------------------ [JAVA] [echo] work.dir:/home/nathan/harmony/bti/build/checkouts/maven_test [JAVA] [JAVA] restore.maven.pom: [JAVA] [copy] Copying 1 file to /home/nathan/harmony/bti/build/checkouts/maven_test/maven-2.0.7-src [JAVA] [JAVA] compose.report: [JAVA] [mkdir] Created dir: /home/nathan/harmony/bti/build/checkouts/maven_test/logs [JAVA] [copy] Copying 49 files to /home/nathan/harmony/bti/build/checkouts/maven_test/logs [JAVA] [mkdir] Created dir: /home/nathan/harmony/bti/build/results/maven_test/results/reports [JAVA] [copy] Copying 49 files to /home/nathan/harmony/bti/build/results/maven_test/results/reports read more about [bti][m4] does the maven test fail, but really pass?
Message from Tim Ellison Most recent post: 12/18/2007 7 authors and 18 replies. Based on your own local testing and on the testing results people have reported here, do you think we should declare the r603534 build as M4 and re-open the codebase for change? As usual, this is a development milestone, so we know there are issues, including some we'd likely choose to fix for an end-user release. A milestone is a stable development snapshot that doesn't have any critical flaws or regressions. It does not require a formal project vote, just a show of hands. Regards, Tim read more about [general] Declare M4 == r603534 ?
Message from Stepan Mishura Most recent post: 12/18/2007 9 authors and 14 replies. Hi, Please see testing status[1] for r603534 below. Note to my comments: - I marked tests as regression if they passed on M3 [2] - I question tests as intermittent if they passed on the previous snapshot (r603433) [3] - There are some tests that failed on M3 too. (move them to the exclude lis= ts?) - Not all failures have JIRA issue assigned so please help me to find related JIRA number (if there is any). All comments and clarifications are greatly appreciated! =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D We've the next suites failed on the snapshot. * Eclipse Unit Tests 3.3 - Linux_x86: 4 failures - Windows_x86: pass rate 96.92% - Linux_x86_64: pass rate 95.29% Would be nice to get failures evaluation. We definitely improved stability of the Eclipse Unit Test suite since M3 (Thanks to Vladimir Beliaev). But the are still some issues such as intermittent suite crashes (that make me very upset). * EGAx48: - Linux_x86 & Linux_x86_64 : failed. (HARMONY-5250 / regression?) - Windows_x86: Still no status =96 the scenario causes CC host down after running several hours. Currently I can not figure out if this is the host's issue or problem introduced by Harmony.* EHWA(GUI) - Linux_x86 & Linux_x86_64 : failed. The scenario is quite unstable. Most probably I will drop the scenario in M5 from read more about [testing] M4 candidate (r603534) testing status.
Message from Simon Chow Most recent post: 12/18/2007 3 authors and 6 replies. ------=_Part_7222_23036078.1197880543775 Content-Disposition: inline First, I am just a beginner for OPT. I find a file named opt.emconf in default vm. Is it the default configuration of compilation pipeline in OPT? My question is that, Is Harmony VM able to change the pipeline or method filters at runtime? i.e. Could I specify a pipeline(named P) to a method (named M) dynamically? -- From : Simon.Chow@xxxxxxxxxxx School of Fudan University ------=_Part_7222_23036078.1197880543775-- read more about [drlvm][jitrino]A question of pipeline and method filter
Message from "=?GB2312?B?yrezycjZ?=" Most recent post: 12/17/2007 3 authors and 9 replies. ------=_Part_116_17471468.1197619050983 Content-Disposition: inline As we know, the key word of "synchronized" in JAVA will translated into monenter/monexit pair. And synchronization shoud contain two functions, One is the mutex lock and the other is the *memory barrier*. I traced the compiling pipeline from JAVA bytecode to LIR, found the monenter/monexit pair is finally transformed into some assembly codes among which there are codes to call the interface function provided by Thread Manager. But I did not find any function provided by Thread Manager implementing the *memory barrier.* It seams that only the mutex lock is implemented. I do not know if I am right. Can anyone give some suggestions? Thanks, Chengrong ------=_Part_116_17471468.1197619050983-- read more about [drlvm][jitrino]
Message from Xiaobing Wong Most recent post: 12/17/2007 2 authors and 4 replies. ------=_Part_441_24854211.1197627042528 Content-Disposition: inline Loading constraint is a new regulation since sun jdk 1.2.I use a test suit, finding that there are some difference between harmony and sun jdk 1.5 about the loading constraint. And I am not quite sure about the native resolution of harmony. Who can help me to explain why??? There are two Spoofed.class. One is under the current direction, the other is under the direction : greeters/ . They are different but with the same name. Spoofed.class public class Spoofed { private int secretValue = 42; public int giveMeFive() { return 5; } static { System.out.println( "linking/ex8/Spoofed initialized."); } } greeters/Spoofed.class public class Spoofed { private int secretValue = 100; public int giveMeFive() { return secretValue; } static { System.out.println( "linking/ex8/greeters/Spoofed initialized."); } } The method to invoke loading is as followed: public void greet() { Spoofed spoofed = new Spoofed(); System.out.println("secret val = "+ spoofed.giveMeFive()); spoofed = Delegated.getSpoofed(); System.out.println("secret val = "+ spoofed.giveMeFive()); } In which the Delegated.class: public class Delegated { public static Spoofed getSpoofed() { return new Spoofed(); read more about About the loading constraint
Message from Eugene Ostrovsky Most recent post: 12/17/2007 5 authors and 8 replies. Hi all! We've a regression in stress test suite: http://issues.apache.org/jira/browse/HARMONY-5047 The problem is that in compressed VTable pointers mode (which is default for x86_64 platforms) number of classes that VM could load is limited by the size of VTable memory pool = 8 MB. VM crashes because VT pool is overflowed when the test tries to load about 34000 classes. (VTable for each class is >= 232 B) It seems that we need smarter memory management for VTables in compressed mode. Or probably we should disable compressed VTable pointers at all. Proposals are welcome. Thanks, Eugene. read more about [drlvm] Regression caused by compressed VTable pointers
Message from Oliver Deakin Most recent post: 12/16/2007 3 authors and 6 replies. ICU 3.8.1 has just been released, so Id like to propose that after M4 we upgrade to this release, add it to the fetch-depends target and remove the "homemade" ICU4J jar we've stored in SVN. Im running the tests with the new version now to make sure there are no regressions and will be happy to make the required changes when the time comes. Objections? Regards, Oliver -- Oliver Deakin Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU read more about [classlib] New ICU release
Message from Tim Ellison Most recent post: 12/14/2007 3 authors and 6 replies. It is time for me to submit a brief report to the Board on what we've been doing in Harmony over the last three months. I have written my version of events on the wiki [1], and invite you to either update it directly or respond here and I will merge your changes. I know we've been very active, but we need to keep it short so please try and be succinct. [1] http://wiki.apache.org/harmony/Board200709 Regards, Tim read more about [general] Board report due
Message from Xiao-Feng Li Most recent post: 12/14/2007 3 authors and 6 replies. I copied the EIOffice with Harmony bundle v0.04 for Linux to sourceforge. It's downloadable in following urls: http://sourceforge.net/projects/eio-harmony , or http://eio-harmony.sourceforge.net Thanks, xiaofeng -- http://xiao-feng.blogspot.com read more about [general][bundle] FYI: "EIOffice with Harmony" bundle downloadable in sourceforge
Message from Xiao-Feng Li Most recent post: 12/14/2007 4 authors and 6 replies. For example, Adnroid, IBM JDK at the moment. Thanks, xiaofeng -- http://xiao-feng.blogspot.com read more about [web] should we create a page for Harmony code adopters?
Message from Tim Ellison Most recent post: 12/14/2007 5 authors and 16 replies. Our regular Board report is now due. I have put a draft on the wiki [1], and'd very much welcome your comments, additions, and corrections etc. I'd especially appreciate any noteworthy enhancements since the last report (which was ~Milestone 3), or any issues that I may have missed. [1] http://wiki.apache.org/harmony/Board200712 Thanks, Tim read more about [general] Board report due
Message from Stepan Mishura Most recent post: 12/14/2007 3 authors and 3 replies. Hi Andrew and Alexei (Fedotov). I investigated EVENT014 test failure in stress suite and found the the suite setup checks out several jar files from: http://p-unit.svn.sourceforge.net/svnroot/p-unit/trunk repository. My guess that these jars aren't related to running stress suite with punit. There is no need to download&keep several megabytes. So could you update the stress suite build to checkout only punit related artifacts? Also separation'd make licence issues more clear - as I see punit has ASF licence but many other things in the mentioned repository are not ASF licenced. I'd suggest creating punit.jar to be downloaded during the suite's setup. Thanks, Stepan. read more about [testing] Does stress suite need all jars from punit repository?
Message from "=?GB2312?B?yrezycjZ?=" Most recent post: 12/14/2007 2 authors and 3 replies. ------=_Part_5046_20196701.1196943234923 Content-Disposition: inline I try to get CFG of the callee of current method with the following code just like the escape analysis pass does. But I found the methodDesc of some callees was abnormal, the ByteCode size is 0 and the ByteCode Address is invalid. Why does this happen? //call is a method invoke instruction MethodDesc* methodDesc = 0; if (call == NULL) { // scanned Op_DirectCall, not scanned Op_IndirectMemoryCall return true; } methodDesc = call->asMethodCallInst()->getMethodDesc(); OpndManager& _opndManager(irManager.getOpndManager()); Opnd *returnOpnd = 0; if(call->getDst()->isNull()) returnOpnd = _opndManager.getNullOpnd(); else returnOpnd = _opndManager.createSsaTmpOpnd(call->getDst()->getType()); IRManager* inlinedIRM = new (mm) IRManager(irManager.getMemoryManager(), irManager, *methodDesc, returnOpnd); CompilationInterface& ci= inlinedIRM->getCompilationInterface(); bool cibcmap = ci.isBCMapInfoRequired(); if (cibcmap) { ci.setBCMapInfoRequired(false); } CompilationContext inlineCC(irManager.getMemoryManager(), &ci, irManager.getCurrentJITContext()); inlineCC.setPipeline(irManager.getCompilationContext()->getPipeline()); inlineCC.setHIRManager(inlinedIRM); TranslatorSession* traSession = (TranslatorSession*)translatorAction->createSession( inlineCC.getCompilationLevelMemoryManager()); traSession->setCompilationContext(&inlineCC); inlineCC.se read more about [drlvm][jitrino][optimizer]
Message from Tim Ellison Most recent post: 12/14/2007 2 authors and 2 replies. Looks like the focused testing effort is paying off, with bugs being found and lots of good investigations being conducted. As usual, we have our fair share of bugs in tests to deal with too, but I think that isn't unusual. I'd say the code looks to be pretty good. Has anyone seen anything that would cause us to delay declaring M4? Stepan: you always have a good handle on the overall status<g>. What are your thoughts after the recent must-fix patches have gone in? Regards, Tim read more about [testing] M4 status