comparison graal/com.oracle.max.criutils/src/com/oracle/max/criutils/UnsignedMath.java @ 5763:a3d71693e0ce

removed bytecode disassembly from CodeCacheRuntime into separate BytecodeDisassembler class removed VM call for doing bytecode disassembly added support for explicitly excluding classes from JaCoCo (put '// JaCoCo Exclude' somewhere in the source file) added node intrinsics to MaterializeNode added snippets for the UnsignedMath classes each file opened by CFGPrinter now includes a unique id in its name to avoid a race of multiple threads writing to the same file the IdealGraphPrinter uses the new BytecodeDisassembler mechanism teh UnsignedMath class is exclude from JaCoCo processing as it is used in snippets
author Doug Simon <doug.simon@oracle.com>
date Wed, 04 Jul 2012 21:57:49 +0200
parents 956217932b8c
children
comparison
equal deleted inserted replaced
5762:b30cced39597 5763:a3d71693e0ce
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.max.criutils; 23 package com.oracle.max.criutils;
24
25 //JaCoCo Exclude
24 26
25 /** 27 /**
26 * Utilities for unsigned comparisons. 28 * Utilities for unsigned comparisons.
27 * All methods have correct, but slow, standard Java implementations so that 29 * All methods have correct, but slow, standard Java implementations so that
28 * they can be used with compilers not supporting the intrinsics. 30 * they can be used with compilers not supporting the intrinsics.