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
(344)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: tests/standalone/verified_mem_test.dart
Issue
711833002
:
Support verified heap pointer writes on ia32. (Closed)
Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set:
Created 6 years, 1 month 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/assembler_ia32.h
runtime/vm/assembler_ia32.cc
runtime/vm/code_patcher.h
runtime/vm/code_patcher_ia32.cc
runtime/vm/flow_graph_compiler.h
runtime/vm/flow_graph_compiler_ia32.cc
runtime/vm/intermediate_language_ia32.cc
runtime/vm/intrinsifier_ia32.cc
runtime/vm/object.h
runtime/vm/object.cc
runtime/vm/pages.cc
runtime/vm/raw_object.h
runtime/vm/scavenger.cc
runtime/vm/snapshot.cc
runtime/vm/stub_code_ia32.cc
runtime/vm/verified_memory.h
runtime/vm/verifier.cc
tests/standalone/standalone.status
tests/standalone/verified_mem_test.dart
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« runtime/vm/assembler_ia32.cc
('K') |
« tests/standalone/standalone.status
('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) 2014, 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
//
5
// Test write barrier verification mode.
6
// VMOptions=--verified_mem --verify_before_gc --verify_after_gc
7
8
var a = [];
9
10
void main() {
11
for (int i = 0; i < 123; ++i) {
12
a.add(new List(12345));
13
}
14
for (int i = 0; i < 12345; ++i) {
15
a[0] = new List(100000);
16
}
17
}
OLD
NEW
« runtime/vm/assembler_ia32.cc
('K') |
« tests/standalone/standalone.status
('k') |
no next file »
|
no next file with comments »
Issue 711833002: Support verified heap pointer writes on ia32. (Closed)
Created 6 years, 1 month ago by koda
Modified 6 years, 1 month ago
Reviewers: Ivan Posva
Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Comments: 2
This is Rietveld
408576698