|
1 | 1 | /* |
2 | | - * Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 | 4 | * |
5 | 5 | * This code is free software; you can redistribute it and/or modify it |
@@ -539,7 +539,7 @@ Object send(Message message, Object[] args, |
539 | 539 |
|
540 | 540 | private static final class FrameSlotInfoImpl { |
541 | 541 | /** |
542 | | - * This is meant to monitor updates performed on {@link FrameSlot}. Each {@link FrameSlot} |
| 542 | + * This is meant to monitor updates performed on {@code FrameSlot}. Each {@code FrameSlot} |
543 | 543 | * holds an {@link Assumption} in it's "info" field; it is valid as long as no non-local |
544 | 544 | * update has ever taken place.<br/> |
545 | 545 | * The background to this rather strange assumption is that non-local reads are very hard to |
@@ -775,7 +775,7 @@ public synchronized void setMultiSlot(Frame frame, FrameSlot slot, Object newVal |
775 | 775 | /** |
776 | 776 | * Retrieves the not-changed-locally {@link Assumption} for the given frame slot. |
777 | 777 | * |
778 | | - * @return The "not changed locally" assumption of the given {@link FrameSlot} |
| 778 | + * @return The "not changed locally" assumption of the given {@code FrameSlot} |
779 | 779 | */ |
780 | 780 | public static Assumption getNotChangedNonLocallyAssumption(FrameSlot slot) { |
781 | 781 | return getFrameSlotInfo(slot).nonLocalModifiedAssumption; |
@@ -817,10 +817,10 @@ private static synchronized FrameSlot findOrAddFrameSlot(FrameDescriptor fd, Obj |
817 | 817 | // methods for changing frame slot contents |
818 | 818 |
|
819 | 819 | /** |
820 | | - * Checks if the assumption of the given {@link FrameSlot} has to be invalidated. |
| 820 | + * Checks if the assumption of the given {@code FrameSlot} has to be invalidated. |
821 | 821 | * |
822 | 822 | * @param curFrame |
823 | | - * @param slot {@link FrameSlot}; its "info" is assumed to be an Assumption, throws an |
| 823 | + * @param slot {@code FrameSlot}; its "info" is assumed to be an Assumption, throws an |
824 | 824 | * {@link RInternalError} otherwise |
825 | 825 | * @param invalidateProfile Used to guard the invalidation code. |
826 | 826 | */ |
|
0 commit comments