comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/spi/StampProvider.java @ 22255:565196752144

KlassPointerStamp needs valid getStackKind implementation
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Mon, 20 Jul 2015 11:18:35 -0700
parents 16e61bb57e90
children
comparison
equal deleted inserted replaced
22254:efeabef8df70 22255:565196752144
34 * Create the stamp of the {@link LoadHubNode hub} of an object. 34 * Create the stamp of the {@link LoadHubNode hub} of an object.
35 */ 35 */
36 Stamp createHubStamp(ObjectStamp object); 36 Stamp createHubStamp(ObjectStamp object);
37 37
38 /** 38 /**
39 * Create the stamp of a possibly null hub.
40 */
41 Stamp createHubStamp(boolean nonNull);
42
43 /**
39 * Create the stamp of a pointer to a method. 44 * Create the stamp of a pointer to a method.
40 */ 45 */
41 Stamp createMethodStamp(); 46 Stamp createMethodStamp();
42 } 47 }