comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotForeignCallLinkage.java @ 14908:8db6e76cb658

Formatter: Keep one enum constant per line
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 14:09:03 +0200
parents 126ef8e8aa59
children be6fc21b25f8
comparison
equal deleted inserted replaced
14907:7683ad455d81 14908:8db6e76cb658
44 * Constants for specifying whether a foreign call destroys or preserves registers. A foreign 44 * Constants for specifying whether a foreign call destroys or preserves registers. A foreign
45 * call will always destroy {@link HotSpotForeignCallLinkage#getOutgoingCallingConvention() its} 45 * call will always destroy {@link HotSpotForeignCallLinkage#getOutgoingCallingConvention() its}
46 * {@linkplain ForeignCallLinkage#getTemporaries() temporary} registers. 46 * {@linkplain ForeignCallLinkage#getTemporaries() temporary} registers.
47 */ 47 */
48 public enum RegisterEffect { 48 public enum RegisterEffect {
49 DESTROYS_REGISTERS, PRESERVES_REGISTERS 49 DESTROYS_REGISTERS,
50 PRESERVES_REGISTERS
50 } 51 }
51 52
52 /** 53 /**
53 * Constants for specifying whether a call is a leaf or not. A leaf function does not lock, GC 54 * Constants for specifying whether a call is a leaf or not. A leaf function does not lock, GC
54 * or throw exceptions. That is, the thread's execution state during the call is never inspected 55 * or throw exceptions. That is, the thread's execution state during the call is never inspected
55 * by another thread. 56 * by another thread.
56 */ 57 */
57 public enum Transition { 58 public enum Transition {
58 LEAF_NOFP, LEAF, NOT_LEAF; 59 LEAF_NOFP,
60 LEAF,
61 NOT_LEAF;
59 } 62 }
60 63
61 /** 64 /**
62 * Sentinel marker for a computed jump address. 65 * Sentinel marker for a computed jump address.
63 */ 66 */