Changeset 51939 in webkit


Ignore:
Timestamp:
Dec 9, 2009, 11:47:41 PM (16 years ago)
Author:
mjs@apple.com
Message:

2009-12-09 Maciej Stachowiak <mjs@apple.com>

Reviewed by Oliver Hunt.

Google reader gets stuck in the "Loading..." state and does not complete
https://bugs.webkit.org/show_bug.cgi?id=32256
<rdar://problem/7456388>

  • jit/JITArithmetic.cpp: (JSC::JIT::emitSlow_op_jless): Fix some backward branches.

2009-12-09 Maciej Stachowiak <mjs@apple.com>

Reviewed by Oliver Hunt.

Test for: Google reader gets stuck in the "Loading..." state and does not complete
https://bugs.webkit.org/show_bug.cgi?id=32256

  • fast/js/codegen-jless-expected.txt: Added.
  • fast/js/codegen-jless.html: Added.
  • fast/js/script-tests/codegen-jless.js: Added.
Location:
trunk
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r51933 r51939  
     12009-12-09  Maciej Stachowiak  <mjs@apple.com>
     2
     3        Reviewed by Oliver Hunt.
     4
     5        Google reader gets stuck in the "Loading..." state and does not complete
     6        https://bugs.webkit.org/show_bug.cgi?id=32256
     7        <rdar://problem/7456388>
     8
     9        * jit/JITArithmetic.cpp:
     10        (JSC::JIT::emitSlow_op_jless): Fix some backward branches.
     11
    1122009-12-09  Gavin Barraclough  <barraclough@apple.com>
    213
  • trunk/JavaScriptCore/jit/JITArithmetic.cpp

    r51737 r51939  
    16151615        stubCall.addArgument(op2, regT2);
    16161616        stubCall.call();
    1617         emitJumpSlowToHot(branchTest32(Zero, regT0), target);
     1617        emitJumpSlowToHot(branchTest32(NonZero, regT0), target);
    16181618
    16191619    } else if (isOperandConstantImmediateInt(op1)) {
     
    16561656        stubCall.addArgument(regT1);
    16571657        stubCall.call();
    1658         emitJumpSlowToHot(branchTest32(Zero, regT0), target);
     1658        emitJumpSlowToHot(branchTest32(NonZero, regT0), target);
    16591659
    16601660    } else {
  • trunk/LayoutTests/ChangeLog

    r51938 r51939  
     12009-12-09  Maciej Stachowiak  <mjs@apple.com>
     2
     3        Reviewed by Oliver Hunt.
     4
     5        Test for: Google reader gets stuck in the "Loading..." state and does not complete
     6        https://bugs.webkit.org/show_bug.cgi?id=32256
     7
     8        * fast/js/codegen-jless-expected.txt: Added.
     9        * fast/js/codegen-jless.html: Added.
     10        * fast/js/script-tests/codegen-jless.js: Added.
     11
    1122009-12-09  Csaba Osztrogonác  <ossy@webkit.org>
    213
  • trunk/LayoutTests/platform/win/editing/selection/doubleclick-should-not-expand-across-lines.html

    r49767 r51939  
    22<html>
    33<head>
    4 <link rel="stylesheet" href="../../../../fast/js/resources/js-test-style.css">
    5 <script src="../../../../fast/js/resources/js-test-pre.js"></script>
     4<link rel="stylesheet" href="../../../fast/js/resources/js-test-style.css">
     5<script src="../../../fast/js/resources/js-test-pre.js"></script>
    66</head>
    77<body>
     
    99<div id="console"></div>
    1010<script src="script-tests/doubleclick-should-not-expand-across-lines.js"></script>
    11 <script src="../../../../fast/js/resources/js-test-post.js"></script>
     11<script src="../../../fast/js/resources/js-test-post.js"></script>
    1212</body>
    1313</html>
Note: See TracChangeset for help on using the changeset viewer.