comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotMethodDataAccessor.java @ 14906:f3a5036cc13c

javadoc fixes javadoc has become stricter in jdk8
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 31 Mar 2014 20:51:09 +0200
parents 579a2a124c95
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14905:b7afc71535d3 14906:f3a5036cc13c
87 Tag getTag(); 87 Tag getTag();
88 88
89 /** 89 /**
90 * Returns the BCI stored in the LayoutData header. 90 * Returns the BCI stored in the LayoutData header.
91 * 91 *
92 * @return An integer >= 0 and <= Short.MAX_VALUE, or -1 if not supported. 92 * @return An integer &ge; 0 and &le; Short.MAX_VALUE, or -1 if not supported.
93 */ 93 */
94 int getBCI(HotSpotMethodData data, int position); 94 int getBCI(HotSpotMethodData data, int position);
95 95
96 /** 96 /**
97 * Computes the size for the specific data at the given position. 97 * Computes the size for the specific data at the given position.
98 * 98 *
99 * @return An integer > 0. 99 * @return An integer &gt; 0.
100 */ 100 */
101 int getSize(HotSpotMethodData data, int position); 101 int getSize(HotSpotMethodData data, int position);
102 102
103 JavaTypeProfile getTypeProfile(HotSpotMethodData data, int position); 103 JavaTypeProfile getTypeProfile(HotSpotMethodData data, int position);
104 104