zoukankan      html  css  js  c++  java
  • JAVA and .Net Complier Rearrange code lines feature.

    In my previous post. I have been talking about the .Net JIT re-order instructions feature. Actually . In java world . 

    The javac compiler has performs next to no optimisations.

    The JIT native compiler could re-order instructions where there is a memory ordering problem. However, the CPU also can re-order instructions and memory updates which have the same effect.

    What is achieved by allowing this freedm to the compiler ?

    The main benefit is code portability. The more guarantees you provide, the more difficult it is to ensure every platform actually does this.

    There is also a significant performance improvement by allowing the CPU to execute instructions as and when it can rather than in a strict order.

    Is it really possible for the compiler to produce code which is more efficient by rearranging the code ?

    Yes. but the re-ordering done by the CPU is more significant.

    I am yet to see a practical case for this. I feel sometimes that the benefits if any are far outweighed by the concurrency risks this can introduce.

    Is there any way that programmer can tell compiler not to rearrange lines like this ?

    This is why you use memory barriers like volatilesynchronized blocks and Lock. When you use these you get thread safety guarantees.

    I know that using synchronization primitives effectively handles the side-effects of rearranging , but I am asking if there is any direct way ( compiler option ) to turn this off ?

    You can turn off the JIT, but most re-ordering is done by the CPU so it wouldn't achieve much.

    Avoiding re-ordering of updates is such a small part of the thread safety problem (its biggest issue is that is obscure and rarely occurs which makes testing it hard) And once you write thread safe code, this is alleviated.

  • 相关阅读:
    JS内置对象-Array之splice-删插替
    for-in的缺点
    Obeject.hasOwnProperty
    JS中的深拷贝和浅拷贝
    函数中this的指向
    CSS预处理器之less和sass
    [转]javaweb学习总结(四十四)——监听器(Listener)学习
    [转]javaweb学习总结(四十三)——Filter高级开发
    [转]javaweb学习总结(四十二)——Filter(过滤器)学习
    [转]javaweb学习总结(四十一)——Apache的DBUtils框架学习
  • 原文地址:https://www.cnblogs.com/malaikuangren/p/2591469.html
Copyright © 2011-2022 走看看