Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(535)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: test/mjsunit/regress/regress-4788-2.js
Issue
1775883003
:
Revert of Version 5.0.71.10 (cherry-pick) (Closed)
Base URL: https://chromium.googlesource.com/v8/v8.git@5.0
Patch Set:
Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
include/v8-version.h
src/arm/code-stubs-arm.cc
src/arm64/code-stubs-arm64.cc
src/compiler/js-generic-lowering.h
src/compiler/js-generic-lowering.cc
src/ia32/code-stubs-ia32.cc
src/interpreter/interpreter.cc
src/mips/code-stubs-mips.cc
src/mips64/code-stubs-mips64.cc
src/objects-inl.h
src/ppc/code-stubs-ppc.cc
src/runtime/runtime.h
src/runtime/runtime-interpreter.cc
src/runtime/runtime-object.cc
src/runtime/runtime-operators.cc
src/x64/code-stubs-x64.cc
test/mjsunit/mjsunit.status
test/mjsunit/regress/regress-4788-1.js
test/mjsunit/regress/regress-4788-2.js
test/unittests/runtime/runtime-interpreter-unittest.cc
View unified diff
|
Download patch
« no previous file with comments
|
« test/mjsunit/regress/regress-4788-1.js
('k') |
test/unittests/runtime/runtime-interpreter-unittest.cc »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
// Copyright 2016 the V8 project authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
// Flags: --allow-natives-syntax
6
7
var f = (function() {
8
"use asm";
9
function foo(x) {
10
return x < x;
11
}
12
return foo;
13
})();
14
15
function deopt(f) {
16
return {
17
toString : function() {
18
%DeoptimizeFunction(f);
19
return "2";
20
}
21
};
22
}
23
24
%OptimizeFunctionOnNextCall(f);
25
assertFalse(f(deopt(f)));
OLD
NEW
« no previous file with comments
|
« test/mjsunit/regress/regress-4788-1.js
('k') |
test/unittests/runtime/runtime-interpreter-unittest.cc »
('j') |
no next file with comments »
Issue 1775883003: Revert of Version 5.0.71.10 (cherry-pick) (Closed)
Created 4 years, 9 months ago by Michael Starzinger
Modified 4 years, 9 months ago
Reviewers: Michael Hablich
Base URL: https://chromium.googlesource.com/v8/v8.git@5.0
Comments: 0
This is Rietveld
408576698