You need to sign in or sign up before continuing.
  1. 20 6月, 2013 3 次提交
  2. 19 6月, 2013 1 次提交
    • M
      8015660: Test8009761.java "Failed: init recursive calls: 24. After deopt 25" · 69b09c77
      minqi 提交于
      Summary: Windows reserves and only partially commits thread stack. For detecting more thread stack space for execution,  Windows installs one-shot page as guard page just before the current commited edge. It will trigger STACK_OVERFLOW_EXCEPTION when lands on last 4 pages of thread stack space. StackYellowPages default value is 2 on Windows (plus 1 page of StackRedPages, 3 pages guarded by hotspot) so the exception happens one page before Yellow pages. Same route executed second time will have one more page brought in, this leads same execution with different stack depth(interpreter mode). We need match Windows settings so the stack overflow exception will not happen before Yellow pages.
      Reviewed-by: dholmes
      Contributed-by: andreas.schoesser@sap.com
      69b09c77
  3. 18 6月, 2013 3 次提交
  4. 10 6月, 2013 1 次提交
  5. 15 6月, 2013 5 次提交
  6. 14 6月, 2013 10 次提交
  7. 10 6月, 2013 1 次提交
  8. 08 6月, 2013 3 次提交
  9. 07 6月, 2013 3 次提交
  10. 06 6月, 2013 3 次提交
  11. 05 6月, 2013 5 次提交
  12. 04 6月, 2013 2 次提交
    • S
      8015803: Test8015436.java fails 'can not access a member of class Test8015436... · 3f350947
      sspitsyn 提交于
      8015803: Test8015436.java fails 'can not access a member of class Test8015436 with modifiers "public static"'
      Summary: Newly added test has an issue: the main class must be public
      Reviewed-by: kvn, jbachorik, coleenp
      Contributed-by: serguei.spitsyn@oracle.com
      3f350947
    • T
      6976350: G1: deal with fragmentation while copying objects during GC · fc475a94
      tamao 提交于
      Summary: Create G1ParGCAllocBufferContainer to contain two buffers instead of previously using one buffer, in order to hold the first priority buffer longer. Thus, when some large objects hits the value of free space left in the first priority buffer it has an alternative to fit in the second priority buffer while the first priority buffer is given more chances to try allocating smaller objects. Overall, it will improve heap space efficiency.
      Reviewed-by: johnc, jmasa, brutisso
      Contributed-by: Ntamao <tao.mao@oracle.com>
      fc475a94