comparison graal/com.oracle.jvmci.hotspot/src/com/oracle/jvmci/hotspot/Stable.java @ 21558:d563baeca9df

changed uses of Graal terminology to JVMCI (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Wed, 27 May 2015 13:43:27 +0200
parents 9579a3c62a9e
children
comparison
equal deleted inserted replaced
21557:31fc2fce38f3 21558:d563baeca9df
24 package com.oracle.jvmci.hotspot; 24 package com.oracle.jvmci.hotspot;
25 25
26 import java.lang.annotation.*; 26 import java.lang.annotation.*;
27 27
28 /** 28 /**
29 * This annotation functions as an alias for the sun.invoke.Stable annotation within Graal code. It 29 * This annotation functions as an alias for the sun.invoke.Stable annotation within JVMCI code. It
30 * is specially recognized during class file parsing in the same way as that annotation. 30 * is specially recognized during class file parsing in the same way as that annotation.
31 */ 31 */
32
33 @Target(ElementType.FIELD) 32 @Target(ElementType.FIELD)
34 @Retention(RetentionPolicy.RUNTIME) 33 @Retention(RetentionPolicy.RUNTIME)
35 public @interface Stable { 34 public @interface Stable {
36 } 35 }