1. 20 8月, 2013 1 次提交
  2. 19 8月, 2013 1 次提交
  3. 07 8月, 2013 1 次提交
  4. 06 8月, 2013 1 次提交
  5. 05 8月, 2013 1 次提交
  6. 04 7月, 2013 1 次提交
  7. 26 6月, 2013 1 次提交
  8. 23 5月, 2013 1 次提交
  9. 16 5月, 2013 1 次提交
  10. 08 5月, 2013 1 次提交
  11. 07 5月, 2013 1 次提交
  12. 30 4月, 2013 1 次提交
  13. 26 4月, 2013 1 次提交
  14. 10 4月, 2013 1 次提交
  15. 28 3月, 2013 1 次提交
  16. 19 3月, 2013 2 次提交
  17. 16 3月, 2013 1 次提交
  18. 14 3月, 2013 1 次提交
    • M
      8003348: SA can not read core file on OS · 8458636d
      minqi 提交于
      Summary: Macosx uses Mach-O file format for binary files, not ELF format. Currently SA works on core files on other platforms, t his change enables SA work on core file generated on Darwin.
      Reviewed-by: sla, sspitsyn
      Contributed-by: yumin.qi@oracle.com
      8458636d
  19. 28 2月, 2013 1 次提交
  20. 22 2月, 2013 2 次提交
  21. 18 2月, 2013 1 次提交
  22. 14 2月, 2013 1 次提交
  23. 12 2月, 2013 1 次提交
  24. 08 2月, 2013 1 次提交
    • S
      8006423: SA: NullPointerException in... · 55f73fa3
      sla 提交于
      8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
      Summary: Do not rely on mach thread port names to identify threads from SA
      Reviewed-by: dholmes, minqi, rbackman
      55f73fa3
  25. 06 2月, 2013 1 次提交
  26. 20 2月, 2013 1 次提交
  27. 01 2月, 2013 1 次提交
    • M
      8000973: SA on windows thread inspection is broken · 6cb561ef
      minqi 提交于
      Summary: After bug 7161732, On Windows SA could not find correct address of thread_id of OSThread since _thread_id moved to end of the class . The presupposition of the address is following thread handle no longer stands. Fix by adding thread_id field to OSThread and getting the  address directly from OSThread.
      Reviewed-by: nloodin, sspitsyn
      Contributed-by: yumin.qi@oracle.com
      6cb561ef
  28. 29 1月, 2013 1 次提交
  29. 25 1月, 2013 1 次提交
    • M
      8005278: Serviceability Agent: jmap -heap and jstack -m fail · 98a7aa39
      minqi 提交于
      Summary: BinaryTreeDictionary is typedef'ed as AFLBinaryTreeDictionary in vmStructs and in SA we still use old name for that. FreeList now is a template based class which is not reflect in SA type library. When SA does calculation of heap for CMS, the former will cause failure to retrieve BinaryTreeDictionary  sine the rename. The later will fail wherever it is used in SA.
      Reviewed-by: dholmes, sla, coleenp
      Contributed-by: yunda.mly@taobao.com
      98a7aa39
  30. 16 1月, 2013 1 次提交
  31. 14 1月, 2013 1 次提交
  32. 21 12月, 2012 1 次提交
  33. 12 12月, 2012 1 次提交
  34. 28 11月, 2012 1 次提交
  35. 13 11月, 2012 1 次提交
    • M
      6830717: replay of compilations would help with debugging · 00de2884
      minqi 提交于
      Summary: When java process crashed in compiler thread, repeat the compilation process will help finding root cause. This is done with using SA dump application class data and replay data from core dump, then use debug version of jvm to recompile the problematic java method.
      Reviewed-by: kvn, twisti, sspitsyn
      Contributed-by: yumin.qi@oracle.com
      00de2884
  36. 07 11月, 2012 1 次提交
  37. 19 10月, 2012 2 次提交
    • M
      8001055: Bytes.swap should follow big endian · 8c235999
      minqi 提交于
      Summary: This is a mistake change in 6879063 about Bytes.swap. Java byte code order always follows big endian, but in that change, assume they follow native platform order that is not right.
      Reviewed-by: coleenp, sspitsyn, dholmes
      Contributed-by: yumin.qi@oracle.com
      8c235999
    • M
      8000818: SA constant pool need to reference to reference map after permgen removal · 6e872cfa
      minqi 提交于
      Summary: After permgen removal, constant pool changed to put _ldc and _ldc_w (fast_ldc and fast_ldcw) index to reference map, no longer calculated via constant pool cache.
      Reviewed-by: coleenp, sspitsyn, dholmes
      Contributed-by: yumin.qi@oracle.com
      6e872cfa