comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotVMConfig.java @ 14549:36d39c597c79

Respect CIPrintCompilerName and output a timestamp in Graal's PrintCompilation implementation
author Gilles Duboscq <duboscq@ssw.jku.at>
date Sun, 16 Mar 2014 19:19:53 +0100
parents 12eaf1a47a90
children bf7d914b8ef7
comparison
equal deleted inserted replaced
14548:e1a2302a42bc 14549:36d39c597c79
707 @HotSpotVMFlag(name = "CompileTheWorldStartAt") @Stable public int compileTheWorldStartAt; 707 @HotSpotVMFlag(name = "CompileTheWorldStartAt") @Stable public int compileTheWorldStartAt;
708 @HotSpotVMFlag(name = "CompileTheWorldStopAt") @Stable public int compileTheWorldStopAt; 708 @HotSpotVMFlag(name = "CompileTheWorldStopAt") @Stable public int compileTheWorldStopAt;
709 @HotSpotVMFlag(name = "DontCompileHugeMethods") @Stable public boolean dontCompileHugeMethods; 709 @HotSpotVMFlag(name = "DontCompileHugeMethods") @Stable public boolean dontCompileHugeMethods;
710 @HotSpotVMFlag(name = "HugeMethodLimit") @Stable public int hugeMethodLimit; 710 @HotSpotVMFlag(name = "HugeMethodLimit") @Stable public int hugeMethodLimit;
711 @HotSpotVMFlag(name = "PrintCompilation") @Stable public boolean printCompilation; 711 @HotSpotVMFlag(name = "PrintCompilation") @Stable public boolean printCompilation;
712 @HotSpotVMFlag(name = "CIPrintCompilerName") @Stable public boolean printCompilerName;
712 @HotSpotVMFlag(name = "PrintInlining") @Stable public boolean printInlining; 713 @HotSpotVMFlag(name = "PrintInlining") @Stable public boolean printInlining;
713 @HotSpotVMFlag(name = "GraalUseFastLocking") @Stable public boolean useFastLocking; 714 @HotSpotVMFlag(name = "GraalUseFastLocking") @Stable public boolean useFastLocking;
714 @HotSpotVMFlag(name = "ForceUnreachable") @Stable public boolean forceUnreachable; 715 @HotSpotVMFlag(name = "ForceUnreachable") @Stable public boolean forceUnreachable;
715 @HotSpotVMFlag(name = "GPUOffload") @Stable public boolean gpuOffload; 716 @HotSpotVMFlag(name = "GPUOffload") @Stable public boolean gpuOffload;
716 717