synchronized中的monitorenter指令一定涉及到monitor吗?

我们知道Java中synchronized关键字修饰同步块时底层使用的是monitorenter和monitorexit两个指令,这我有一个疑问:

public class Main {
    public static void main(String[] args) {
        Main main = new Main();
        main.method();
    }

    public void method() {
        synchronized (this) {
            System.out.println("synchronized code1");
        }
    }
}

这里只有一个线程调用了method方法,通过javap可看到monitorenter指令,网上有很多人说是线程去尝试获取monitor的所有权,但是我觉得这里只有一个线程应该是偏向锁呀,应该不会去涉及到kew-word里面关联的 monitor(我认知中monitor只有重量级锁才会关联它),大家谁能帮我解惑呀,先谢过^_^

 

参考https://www.jianshu.com/p/4758852cbff4