comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/spi/VirtualizableAllocation.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 94f032472c28
children 432b8405e056
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.graal.nodes.spi; 23 package com.oracle.graal.nodes.spi;
24 24
25 /** 25 /**
26 * This interface allows a node to convey information about what its effect would be if some of its inputs were 26 * This interface allows a node to convey information about what its effect would be if some of its
27 * virtualized. 27 * inputs were virtualized.
28 * 28 *
29 * The difference to {@link Virtualizable} is that the {@link #virtualize(VirtualizerTool)} method will be called 29 * The difference to {@link Virtualizable} is that the {@link #virtualize(VirtualizerTool)} method
30 * regardless of whether this node had any interaction with virtualized nodes. This interface can therefore be used for 30 * will be called regardless of whether this node had any interaction with virtualized nodes. This
31 * object allocations, for which virtualization introduces new virtualized objects. 31 * interface can therefore be used for object allocations, for which virtualization introduces new
32 * 32 * virtualized objects.
33 *
33 */ 34 */
34 public interface VirtualizableAllocation extends Virtualizable { 35 public interface VirtualizableAllocation extends Virtualizable {
35 36
36 } 37 }