- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 HotSpot 上处理“thin-locks”时,我无法理解锁记录的生命周期是什么。
我的理解是:
When a thread
T
first attempts to acquire alock on objecto
, it triggers a "thin lock" creation -- alock record
is created onT
's stack, on the current frameF
, and a copy ofthemark work
(that will now be referred as adisplaced header
) plus a referencetoo
is stored onF
. Through a CAS operationo
's header is madeto reference the lock record (and the last two bits are set to00
to mark this object as thin-locked!).There are multiple reasons why the CAS operation could fail, though:
- Another thread was quicker to grab the lock, we'll need to turn this thin-lock into a full-blown monitor instead;
- The CAS failed but it can be seen that the reference to the lock record belongs to
T
s stack, so we must be attempting to re-enterthe same lock, which is fine. In that case, the lock record of thecurrent stack-frame is kept null.
鉴于此,我有几个问题:
o
?任何人都可以阐明这一点吗?
让我引用上一个链接中的一段话:
Whenever an object is lightweight locked by a monitorenter bytecode, alock record is either implicitly or explicitly allocated on the stackof the thread performing the lock acquisition operation. The lockrecord holds the original value of the object’s mark word and alsocontains metadata necessary to identify which object is locked. Duringlock acquisition, the mark word is copied into the lock record (such acopy is called a displaced mark word), and an atomic compare-and-swap(CAS) operation is performed to attempt to make the object’s mark wordpoint to the lock record. If the CAS succeeds, the current thread ownsthe lock. If it fails, because some other thread acquired the lock, aslow path is taken in which the lock is inflated, during whichoperation an OS mutex and condition variable are associated with theobject. During the inflation process, the object’s mark word isupdated with a CAS to point to a data structure containing pointers tothe mutex and condition variable. During an unlock operation, anattempt is made to CAS the mark word, which should still point to thelock record, with the displaced mark word stored in the lock record.If the CAS succeeds, there was no contention for the monitor andlightweight locking remains in effect. If it fails, the lock wascontended while it was held and a slow path is taken to properlyrelease the lock and notify other threads waiting to acquire the lock.Recursive locking is handled in a straightforward fashion. If duringlightweight lock acquisition it is determined that the current threadalready owns the lock by virtue of the object’s mark word pointinginto its stack, a zero is stored into the on-stack lock record ratherthan the current value of the object’s mark word. If zero is seen in alock record during an unlock operation, the object is known to berecursively locked by the current thread and no update of the object’smark word occurs. The number of such lock records implicitly recordsthe monitor recursion count. This is a significant property to thebest of our knowledge not attained by most other JVMs.
谢谢
最佳答案
Why would we create a new lock record each time we attempt to enter a lock? Wouldn't it be preferable to just keep a single lock record for each object o?
看来您错过了锁定记录的要点。锁定记录不是一些每个对象 实体,而是每个锁定站点。例如,如果一个方法有 3 个 synchronized
block ,那么它的栈帧最多可能有 3 个锁定记录,无论是 3 个不同的锁定对象,还是同一个对象被递归锁定 3 次。
锁记录(实际上,它们在 HotSpot 源代码中并没有这样称呼;它们通常被称为“monitor”、“monitor slot”、“monitors block”等)有助于维护堆栈帧之间的映射及其锁定的显示器。特别是,当一个栈帧因为异常被移除时,所有的锁都需要自动释放。因此,可以将监视器槽视为类似于局部变量槽的东西,它可以保存对相同或不同对象的引用。与局部变量一样,监视器与给定的堆栈帧相关联。它们持有对锁定对象的引用,但它们本身并不是“锁”。
When leaving a synchronized block, I failed to understand how can the VM know whether we should release the lock or whether we're still "unwinding" from a recursive lock.
一个锁记录(一个监视器槽)包含两个东西:一个对锁定对象的引用和一个所谓的“置换头”。置换 header 是对象 header 的先前(未锁定)值,如果它是递归锁,则为零。
我上面解释过,如果我们对一个对象加锁3次,就会有3条加锁记录。只有第一个包含实际的非零位移 header ,其他两个将具有零。这意味着,前两条 monitorexit
指令将用零弹出锁定记录,意识到这是一个递归锁定,因此不会更新对象。当最后一个锁定记录被删除时,JVM 会在移位的 header 中看到一个非零值,并将其存储回真实的对象 header 中,从而将其标记为已解锁。
关于java - 关于HotSpot中thin-locks实现中锁记录的使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68765997/
我正在研究调试应用程序中的“OutOfMemoryError: Metaspace”错误。就在 OOME 之前,我在 gc 日志中看到以下内容: {Heap before GC invocations
我目前正在使用 SmoothDivScroll 来实现图像的滚动流。但是,左边的 Hotspot 太快了,而 Right Hotspot 似乎 react 不正常。 我设置了一个 fiddle 来展示
是否有命令行参数来增加 Hotspot 将编译的 Java 方法的最大大小(从 8000 个字节码开始)? 最佳答案 您可能需要下载 sources并为此使用调试标志构建(我不确定)。 java -X
我正在尝试处理一个 excel 文件。但是我遇到了以下问题 An unexpected error has been detected by HotSpot Virtual Machine: SIGS
有些人使用NetBeans 来跟踪和调试JDK9。但是,由于我使用 ssh 访问服务器上的源代码,所以我必须使用 GDB 来跟踪源代码并查看 JDK/Hotspot 代码的控制流,而我不能使用 GUI
Pure methods是那些没有副作用的:它们的唯一作用是返回一个值,该值是其参数的函数。 使用相同的参数对同一个纯方法的两次调用将返回相同的值。那么,假设两次调用具有相同参数的纯方法,HotSpo
假设您有一个“简单的”枚举: public enum Day { SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATUR
众所周知,HotSpot 分析运行时使用模式和性能特征,然后在 Java 应用程序运行时基于该分析优化 JIT 流程。因此,在尝试对 Java 应用程序进行基准测试时,通常建议谨慎行事,以便允许在进行
为了简化问题,我们假设在我们的 JRE 中,我们有一个不使用 JIT 的 Hotspot JVM 实现。这意味着我们不会预编译机器代码。 我想理解,JVM在遇到字节码时,解释器是否使用Hotspot编
观看Towards a Universal VM演示文稿中,我研究了这张幻灯片,其中列出了 HotSpot JIT 所做的所有优化: 在特定于语言的技术部分中存在反反射。我试图在互联网上查找有关它的一
我要为 Java 社区做出贡献,并且我对 JVM 很感兴趣。 现在我想下载最新的 JVM Hotspot 源代码并跟踪更新。 首先,我转到http://openjdk.java.net/ . 在其左侧
好吧,我对这个问题很困惑。我正在尝试运行一些似乎适用于一个人但不适用于另外两个人的专有软件。软件抛出此异常: Exception in thread "AWT-EventQueue-1" java.l
HotSpot 虚拟机检测到意外错误: EXCEPTION_ACCESS_VIOLATION (0xc0000005),位于 pc=0x6d6cf45b、pid=1800、tid=2824 Java
据我了解 modulus operation可以使用一些& 明智的魔法进行优化,其中除数是 2 的幂... 这可能是 JIT 编译器进行的优化? 最佳答案 我在这个问题上花了一些时间,写了这个 blo
我正在阅读 HotSpot VM 应用的优化技术,并发现 this presentation by Oracle其中列出了 HotSpot VM 尝试内联方法调用时的三种可能条件: Devirtual
我正在寻找一个开源 JavaScript 库/插件,它可以让我实现一个自定义函数: 允许特权用户在图像上的任意位置放置一个或多个图形图标(例如,类似 Google 的图钉),并将超链接、评论或其他属性
关于 HotSpot JVM 垃圾收集的一些问题。 我们有一个正在运行的 java 进程,选项是: -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateSt
了解 Java HotSpot VM 的最佳方式是什么?如果我想修改源代码并添加自己的功能,最好的开发环境是什么(ctags 是否可以很好地与大型代码库配合使用,或者我是否需要一个成熟的 IDE)?
这是一个长时间运行的服务器应用程序,它会产生大量短暂的垃圾,并且在启动后几乎没有任何东西。大多数时候年轻一代收集速度很快,即使是 10 GB 也很快,因为它几乎都是垃圾,但我们偶尔会看到残酷的异常值。
当我在 Java Hotspot 客户端中运行计时测试程序时,我得到了一致的行为。然而,当我在 Hotspot 服务器上运行它时,我得到了意想不到的结果。本质上,在我尝试过的某些情况下,多态性的成本高
我是一名优秀的程序员,十分优秀!