Lines Matching refs:position

11  * exact position within the method data.
34 static int readTag(HotSpotVMConfig config, HotSpotMethodData data, int position) {
35 final int tag = data.readUnsignedByte(position, config.dataLayoutTagOffset);
45 int getBCI(HotSpotMethodData data, int position) {
46 return data.readUnsignedShort(position, config.dataLayoutBCIOffset);
50 * Computes the size for the specific data at the given position.
54 final int getSize(HotSpotMethodData data, int position) {
55 int size = staticSize + getDynamicSize(data, position);
57 int vmSize = HotSpotJVMCIRuntime.runtime().compilerToVm.methodDataProfileDataSize(data.metaspaceMethodData, position);
62 TriState getExceptionSeen(HotSpotMethodData data, int position) {
64 return TriState.get((getFlags(data, position) & EXCEPTIONS_MASK) != 0);
69 * @param position
71 JavaTypeProfile getTypeProfile(HotSpotMethodData data, int position) {
77 * @param position
79 JavaMethodProfile getMethodProfile(HotSpotMethodData data, int position) {
85 * @param position
87 double getBranchTakenProbability(HotSpotMethodData data, int position) {
93 * @param position
95 double[] getSwitchProbabilities(HotSpotMethodData data, int position) {
101 * @param position
103 int getExecutionCount(HotSpotMethodData data, int position) {
109 * @param position
111 TriState getNullSeen(HotSpotMethodData data, int position) {
115 protected int getFlags(HotSpotMethodData data, int position) {
116 return data.readUnsignedByte(position, config.dataLayoutFlagsOffset);
121 * @param position
123 protected int getDynamicSize(HotSpotMethodData data, int position) {