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
(614)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: tests/language/vm/create_array_instr_deopt_test.dart
Issue
2900963008
:
Reapply "Shuffle around deopt id allocation... (Closed)
Patch Set: .
Created 3 years, 7 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:
runtime/vm/aot_optimizer.cc
runtime/vm/branch_optimizer.cc
runtime/vm/constant_propagator.cc
runtime/vm/flow_graph.cc
runtime/vm/flow_graph_builder.h
runtime/vm/flow_graph_builder.cc
runtime/vm/flow_graph_inliner.cc
runtime/vm/intermediate_language.h
runtime/vm/intermediate_language.cc
runtime/vm/intermediate_language_test.cc
runtime/vm/intrinsifier.cc
runtime/vm/jit_optimizer.cc
runtime/vm/kernel_binary_flowgraph.cc
runtime/vm/kernel_to_il.h
runtime/vm/kernel_to_il.cc
runtime/vm/regexp_assembler.cc
runtime/vm/regexp_assembler_ir.h
runtime/vm/regexp_assembler_ir.cc
runtime/vm/simulator_dbc.cc
tests/language/vm/create_array_instr_deopt2_test.dart
tests/language/vm/create_array_instr_deopt_test.dart
View unified diff
|
Download patch
« runtime/vm/flow_graph_inliner.cc
('K') |
« tests/language/vm/create_array_instr_deopt2_test.dart
('k') |
no next file »
|
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 (c) 2017, the Dart project authors. Please see the AUTHORS file
2
// for details. All rights reserved. Use of this source code is governed by a
3
// BSD-style license that can be found in the LICENSE file.
4
// VMOptions=--optimization-counter-threshold=10 --no-use-osr --no-background-co mpilation --enable_inlining_annotations
5
6
const NeverInline = "NeverInline";
7
8
@NeverInline
9
foo(n) {
10
try {
11
return new List(n);
12
} catch (e) {}
13
}
14
15
main() {
16
for (var i = 0; i < 20; i++) {
17
foo(5);
18
}
19
foo("");
20
}
OLD
NEW
« runtime/vm/flow_graph_inliner.cc
('K') |
« tests/language/vm/create_array_instr_deopt2_test.dart
('k') |
no next file »
|
no next file with comments »
Issue 2900963008: Reapply "Shuffle around deopt id allocation... (Closed)
Created 3 years, 7 months ago by rmacnak
Modified 3 years, 6 months ago
Reviewers: Vyacheslav Egorov (Google)
Base URL:
Comments: 6
This is Rietveld
408576698