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

Side by Side Diff: tools/gyp/v8.gyp

Issue 1320503004: [heap] Move IdentityMap data structure out of heap. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « test/cctest/test-identity-map.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 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 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 '../../src/heap-snapshot-generator.h', 707 '../../src/heap-snapshot-generator.h',
708 '../../src/heap/memory-reducer.cc', 708 '../../src/heap/memory-reducer.cc',
709 '../../src/heap/memory-reducer.h', 709 '../../src/heap/memory-reducer.h',
710 '../../src/heap/gc-idle-time-handler.cc', 710 '../../src/heap/gc-idle-time-handler.cc',
711 '../../src/heap/gc-idle-time-handler.h', 711 '../../src/heap/gc-idle-time-handler.h',
712 '../../src/heap/gc-tracer.cc', 712 '../../src/heap/gc-tracer.cc',
713 '../../src/heap/gc-tracer.h', 713 '../../src/heap/gc-tracer.h',
714 '../../src/heap/heap-inl.h', 714 '../../src/heap/heap-inl.h',
715 '../../src/heap/heap.cc', 715 '../../src/heap/heap.cc',
716 '../../src/heap/heap.h', 716 '../../src/heap/heap.h',
717 '../../src/heap/identity-map.cc',
718 '../../src/heap/identity-map.h',
719 '../../src/heap/incremental-marking-inl.h', 717 '../../src/heap/incremental-marking-inl.h',
720 '../../src/heap/incremental-marking.cc', 718 '../../src/heap/incremental-marking.cc',
721 '../../src/heap/incremental-marking.h', 719 '../../src/heap/incremental-marking.h',
722 '../../src/heap/mark-compact-inl.h', 720 '../../src/heap/mark-compact-inl.h',
723 '../../src/heap/mark-compact.cc', 721 '../../src/heap/mark-compact.cc',
724 '../../src/heap/mark-compact.h', 722 '../../src/heap/mark-compact.h',
725 '../../src/heap/objects-visiting-inl.h', 723 '../../src/heap/objects-visiting-inl.h',
726 '../../src/heap/objects-visiting.cc', 724 '../../src/heap/objects-visiting.cc',
727 '../../src/heap/objects-visiting.h', 725 '../../src/heap/objects-visiting.h',
728 '../../src/heap/spaces-inl.h', 726 '../../src/heap/spaces-inl.h',
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 '../../src/ic/call-optimization.h', 791 '../../src/ic/call-optimization.h',
794 '../../src/ic/handler-compiler.cc', 792 '../../src/ic/handler-compiler.cc',
795 '../../src/ic/handler-compiler.h', 793 '../../src/ic/handler-compiler.h',
796 '../../src/ic/ic-inl.h', 794 '../../src/ic/ic-inl.h',
797 '../../src/ic/ic-state.cc', 795 '../../src/ic/ic-state.cc',
798 '../../src/ic/ic-state.h', 796 '../../src/ic/ic-state.h',
799 '../../src/ic/ic.cc', 797 '../../src/ic/ic.cc',
800 '../../src/ic/ic.h', 798 '../../src/ic/ic.h',
801 '../../src/ic/ic-compiler.cc', 799 '../../src/ic/ic-compiler.cc',
802 '../../src/ic/ic-compiler.h', 800 '../../src/ic/ic-compiler.h',
801 '../../src/identity-map.cc',
802 '../../src/identity-map.h',
803 '../../src/interface-descriptors.cc', 803 '../../src/interface-descriptors.cc',
804 '../../src/interface-descriptors.h', 804 '../../src/interface-descriptors.h',
805 '../../src/interpreter/bytecodes.cc', 805 '../../src/interpreter/bytecodes.cc',
806 '../../src/interpreter/bytecodes.h', 806 '../../src/interpreter/bytecodes.h',
807 '../../src/interpreter/bytecode-generator.cc', 807 '../../src/interpreter/bytecode-generator.cc',
808 '../../src/interpreter/bytecode-generator.h', 808 '../../src/interpreter/bytecode-generator.h',
809 '../../src/interpreter/bytecode-array-builder.cc', 809 '../../src/interpreter/bytecode-array-builder.cc',
810 '../../src/interpreter/bytecode-array-builder.h', 810 '../../src/interpreter/bytecode-array-builder.h',
811 '../../src/interpreter/interpreter.cc', 811 '../../src/interpreter/interpreter.cc',
812 '../../src/interpreter/interpreter.h', 812 '../../src/interpreter/interpreter.h',
(...skipping 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after
2023 }], 2023 }],
2024 ['want_separate_host_toolset==1', { 2024 ['want_separate_host_toolset==1', {
2025 'toolsets': ['host'], 2025 'toolsets': ['host'],
2026 }, { 2026 }, {
2027 'toolsets': ['target'], 2027 'toolsets': ['target'],
2028 }], 2028 }],
2029 ], 2029 ],
2030 }, 2030 },
2031 ], 2031 ],
2032 } 2032 }
OLDNEW
« no previous file with comments | « test/cctest/test-identity-map.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698