comparison graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/ea/PartialEscapeAnalysisTest.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents b7da4418a7c3
children 3365d13f6be5
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
36 import com.oracle.graal.phases.common.*; 36 import com.oracle.graal.phases.common.*;
37 import com.oracle.graal.virtual.nodes.*; 37 import com.oracle.graal.virtual.nodes.*;
38 import com.oracle.graal.virtual.phases.ea.*; 38 import com.oracle.graal.virtual.phases.ea.*;
39 39
40 /** 40 /**
41 * In these test cases the probability of all invokes is set to a high value, such that an InliningPhase should inline 41 * In these test cases the probability of all invokes is set to a high value, such that an
42 * them all. After that, the PartialEscapeAnalysisPhase is expected to remove all allocations and return the correct 42 * InliningPhase should inline them all. After that, the PartialEscapeAnalysisPhase is expected to
43 * values. 43 * remove all allocations and return the correct values.
44 */ 44 */
45 public class PartialEscapeAnalysisTest extends GraalCompilerTest { 45 public class PartialEscapeAnalysisTest extends GraalCompilerTest {
46 46
47 public static class TestObject { 47 public static class TestObject {
48 48