Searched refs:HOTSPOT_INFOPOINT_SORT_ORDER (Results 1 - 1 of 1) sorted by relevance

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DHotSpotCompiledCodeBuilder.java142 static final Map<InfopointReason, Integer> HOTSPOT_INFOPOINT_SORT_ORDER = new EnumMap<>(InfopointReason.class); field in class:HotSpotCompiledCodeBuilder.SiteComparator
145 HOTSPOT_INFOPOINT_SORT_ORDER.put(InfopointReason.SAFEPOINT, -4);
146 HOTSPOT_INFOPOINT_SORT_ORDER.put(InfopointReason.CALL, -3);
147 HOTSPOT_INFOPOINT_SORT_ORDER.put(InfopointReason.IMPLICIT_EXCEPTION, -2);
148 HOTSPOT_INFOPOINT_SORT_ORDER.put(InfopointReason.METHOD_START, 2);
149 HOTSPOT_INFOPOINT_SORT_ORDER.put(InfopointReason.METHOD_END, 3);
150 HOTSPOT_INFOPOINT_SORT_ORDER.put(InfopointReason.BYTECODE_POSITION, 4);
154 return HOTSPOT_INFOPOINT_SORT_ORDER.get(info.reason);

Completed in 37 milliseconds