1. 29 7月, 2014 1 次提交
    • T
      8040121: Load variable through a pointer of an incompatible type in... · 1aec8f2a
      thartmann 提交于
      8040121: Load variable through a pointer of an incompatible type in src/hotspot/src/share/vm: opto/output.cpp, runtime/sharedRuntimeTrans.cpp, utilities/globalDefinitions_visCPP.hpp
      Summary: Fixed parfait warnings in globalDefinitions files by using a union for casts.
      Reviewed-by: kvn
      1aec8f2a
  2. 22 5月, 2014 1 次提交
  3. 29 7月, 2014 1 次提交
  4. 06 8月, 2014 1 次提交
  5. 11 7月, 2014 1 次提交
  6. 09 7月, 2014 1 次提交
  7. 07 7月, 2014 1 次提交
  8. 01 7月, 2014 1 次提交
  9. 26 6月, 2014 3 次提交
  10. 25 6月, 2014 4 次提交
  11. 24 6月, 2014 2 次提交
  12. 12 3月, 2014 1 次提交
  13. 13 3月, 2014 1 次提交
  14. 12 3月, 2014 1 次提交
  15. 06 3月, 2014 1 次提交
  16. 26 3月, 2014 1 次提交
  17. 27 2月, 2014 2 次提交
  18. 21 2月, 2014 2 次提交
  19. 14 2月, 2014 2 次提交
  20. 10 2月, 2014 2 次提交
  21. 14 1月, 2014 1 次提交
  22. 07 8月, 2014 1 次提交
  23. 05 8月, 2014 1 次提交
  24. 03 8月, 2014 1 次提交
  25. 30 7月, 2014 1 次提交
  26. 30 5月, 2014 1 次提交
  27. 17 1月, 2014 1 次提交
  28. 29 7月, 2014 1 次提交
  29. 26 6月, 2014 1 次提交
  30. 18 7月, 2014 1 次提交
    • G
      8050978: Fix bad field access check in C1 and C2 · ce549026
      goetz 提交于
      Summary: JCK8 test vm/constantpool/accessControl/accessControl004/accessControl00402m3/accessControl00402m3.html fails with -Xbatch -Xcomp due to bad field access check in C1 and C2. Fix: In ciField::ciField(), just before the canonical holder is stored into the _holder variable (and which is used by ciField::will_link()) perform an additional access check with the holder declared in the class file. If this check fails, store the declared holder instead and ciField::will_link() will bail out compilation for this field later on. Then, the interpreter will throw an PrivilegedAccessException at runtime.
      Reviewed-by: kvn, vlivanov
      Contributed-by: andreas.schoesser@sap.com
      ce549026