view mxtool/ClasspathDump.java @ 18415:6dc4f0be9a70

Add support of lzcnt and tzcnt - support of lzcnt and tzcnt instructions, - unit tests for lzcnt/tzcnt, - ability to emit bsf/bsr in case lzcnt/tzcnt were turned off from the command line, - tightening the stamps produced by ScanBitForward/ReverseNode nodes. Contributed-By: Igor Veresov <igor.veresov@oracle.com>
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 19 Nov 2014 13:32:05 +0100
parents a6bd486b1b44
children
line wrap: on
line source

public class ClasspathDump {
    public static void main(String[] args) {
        System.out.print(System.getProperty("sun.boot.class.path"));
        System.out.print("|");
        System.out.print(System.getProperty("java.ext.dirs"));
        System.out.print("|");
        System.out.print(System.getProperty("java.endorsed.dirs"));
    }
}