Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/vm/vm.gyp

Issue 1263043007: Add ImmutableHeap class consisting of parts (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Addressed comments, merged other CL about allocation budget in space Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« src/vm/immutable_heap.h ('K') | « src/vm/object_memory.cc ('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')
OLDNEW
1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file 1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 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.md file. 3 # BSD-style license that can be found in the LICENSE.md file.
4 4
5 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'include_dirs': [ 7 'include_dirs': [
8 '../../', 8 '../../',
9 ], 9 ],
10 }, 10 },
(...skipping 14 matching lines...) Expand all
25 'event_handler_linux.cc', 25 'event_handler_linux.cc',
26 'ffi.h', 26 'ffi.h',
27 'ffi.cc', 27 'ffi.cc',
28 'ffi_linux.cc', 28 'ffi_linux.cc',
29 'ffi_macos.cc', 29 'ffi_macos.cc',
30 'ffi_posix.cc', 30 'ffi_posix.cc',
31 'fletch.cc', 31 'fletch.cc',
32 'fletch_api_impl.cc', 32 'fletch_api_impl.cc',
33 'heap.cc', 33 'heap.cc',
34 'heap_validator.cc', 34 'heap_validator.cc',
35 'immutable_heap.cc',
35 'gc_thread.cc', 36 'gc_thread.cc',
36 'interpreter.cc', 37 'interpreter.cc',
37 'intrinsics.cc', 38 'intrinsics.cc',
38 'lookup_cache.cc', 39 'lookup_cache.cc',
39 'natives.cc', 40 'natives.cc',
40 'object.cc', 41 'object.cc',
41 'object_list.cc', 42 'object_list.cc',
42 'object_map.cc', 43 'object_map.cc',
43 'object_memory.cc', 44 'object_memory.cc',
44 'port.cc', 45 'port.cc',
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 'target_name': 'ffi_test_library', 226 'target_name': 'ffi_test_library',
226 'type': 'shared_library', 227 'type': 'shared_library',
227 'dependencies': [ 228 'dependencies': [
228 ], 229 ],
229 'sources': [ 230 'sources': [
230 'ffi_test_library.c', 231 'ffi_test_library.c',
231 ], 232 ],
232 }, 233 },
233 ], 234 ],
234 } 235 }
OLDNEW
« src/vm/immutable_heap.h ('K') | « src/vm/object_memory.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698