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

Side by Side Diff: src/v8.gyp

Issue 2810893002: [heap] Implement simple concurrent marking deque. (Closed)
Patch Set: rebase 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.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 935 matching lines...) Expand 10 before | Expand all | Expand 10 after
946 'handles.cc', 946 'handles.cc',
947 'handles.h', 947 'handles.h',
948 'heap-symbols.h', 948 'heap-symbols.h',
949 'heap/array-buffer-tracker-inl.h', 949 'heap/array-buffer-tracker-inl.h',
950 'heap/array-buffer-tracker.cc', 950 'heap/array-buffer-tracker.cc',
951 'heap/array-buffer-tracker.h', 951 'heap/array-buffer-tracker.h',
952 'heap/code-stats.cc', 952 'heap/code-stats.cc',
953 'heap/code-stats.h', 953 'heap/code-stats.h',
954 'heap/concurrent-marking.cc', 954 'heap/concurrent-marking.cc',
955 'heap/concurrent-marking.h', 955 'heap/concurrent-marking.h',
956 'heap/concurrent-marking-deque.h',
956 'heap/embedder-tracing.cc', 957 'heap/embedder-tracing.cc',
957 'heap/embedder-tracing.h', 958 'heap/embedder-tracing.h',
958 'heap/memory-reducer.cc', 959 'heap/memory-reducer.cc',
959 'heap/memory-reducer.h', 960 'heap/memory-reducer.h',
960 'heap/gc-idle-time-handler.cc', 961 'heap/gc-idle-time-handler.cc',
961 'heap/gc-idle-time-handler.h', 962 'heap/gc-idle-time-handler.h',
962 'heap/gc-tracer.cc', 963 'heap/gc-tracer.cc',
963 'heap/gc-tracer.h', 964 'heap/gc-tracer.h',
964 'heap/heap-inl.h', 965 'heap/heap-inl.h',
965 'heap/heap.cc', 966 'heap/heap.cc',
(...skipping 12 matching lines...) Expand all
978 'heap/objects-visiting-inl.h', 979 'heap/objects-visiting-inl.h',
979 'heap/objects-visiting.cc', 980 'heap/objects-visiting.cc',
980 'heap/objects-visiting.h', 981 'heap/objects-visiting.h',
981 'heap/page-parallel-job.h', 982 'heap/page-parallel-job.h',
982 'heap/remembered-set.h', 983 'heap/remembered-set.h',
983 'heap/scavenge-job.h', 984 'heap/scavenge-job.h',
984 'heap/scavenge-job.cc', 985 'heap/scavenge-job.cc',
985 'heap/scavenger-inl.h', 986 'heap/scavenger-inl.h',
986 'heap/scavenger.cc', 987 'heap/scavenger.cc',
987 'heap/scavenger.h', 988 'heap/scavenger.h',
989 'heap/sequential-marking-deque.cc',
990 'heap/sequential-marking-deque.h',
988 'heap/slot-set.h', 991 'heap/slot-set.h',
989 'heap/spaces-inl.h', 992 'heap/spaces-inl.h',
990 'heap/spaces.cc', 993 'heap/spaces.cc',
991 'heap/spaces.h', 994 'heap/spaces.h',
992 'heap/store-buffer.cc', 995 'heap/store-buffer.cc',
993 'heap/store-buffer.h', 996 'heap/store-buffer.h',
994 'intl.cc', 997 'intl.cc',
995 'intl.h', 998 'intl.h',
996 'icu_util.cc', 999 'icu_util.cc',
997 'icu_util.h', 1000 'icu_util.h',
(...skipping 1495 matching lines...) Expand 10 before | Expand all | Expand 10 after
2493 }], 2496 }],
2494 ['want_separate_host_toolset==1', { 2497 ['want_separate_host_toolset==1', {
2495 'toolsets': ['host'], 2498 'toolsets': ['host'],
2496 }, { 2499 }, {
2497 'toolsets': ['target'], 2500 'toolsets': ['target'],
2498 }], 2501 }],
2499 ], 2502 ],
2500 }, 2503 },
2501 ], 2504 ],
2502 } 2505 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698