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

Side by Side Diff: src/v8.gyp

Issue 2451853002: Uniform and precise source positions for inlining (Closed)
Patch Set: addressed comments Created 4 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.
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 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 'compiler/select-lowering.cc', 702 'compiler/select-lowering.cc',
703 'compiler/select-lowering.h', 703 'compiler/select-lowering.h',
704 'compiler/simd-scalar-lowering.cc', 704 'compiler/simd-scalar-lowering.cc',
705 'compiler/simd-scalar-lowering.h', 705 'compiler/simd-scalar-lowering.h',
706 'compiler/simplified-lowering.cc', 706 'compiler/simplified-lowering.cc',
707 'compiler/simplified-lowering.h', 707 'compiler/simplified-lowering.h',
708 'compiler/simplified-operator-reducer.cc', 708 'compiler/simplified-operator-reducer.cc',
709 'compiler/simplified-operator-reducer.h', 709 'compiler/simplified-operator-reducer.h',
710 'compiler/simplified-operator.cc', 710 'compiler/simplified-operator.cc',
711 'compiler/simplified-operator.h', 711 'compiler/simplified-operator.h',
712 'compiler/source-position.cc', 712 'compiler/compiler-source-position-table.cc',
713 'compiler/source-position.h', 713 'compiler/compiler-source-position-table.h',
714 'compiler/state-values-utils.cc', 714 'compiler/state-values-utils.cc',
715 'compiler/state-values-utils.h', 715 'compiler/state-values-utils.h',
716 'compiler/store-store-elimination.cc', 716 'compiler/store-store-elimination.cc',
717 'compiler/store-store-elimination.h', 717 'compiler/store-store-elimination.h',
718 'compiler/tail-call-optimization.cc', 718 'compiler/tail-call-optimization.cc',
719 'compiler/tail-call-optimization.h', 719 'compiler/tail-call-optimization.h',
720 'compiler/types.cc', 720 'compiler/types.cc',
721 'compiler/types.h', 721 'compiler/types.h',
722 'compiler/type-cache.cc', 722 'compiler/type-cache.cc',
723 'compiler/type-cache.h', 723 'compiler/type-cache.h',
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
1188 'snapshot/serializer-common.cc', 1188 'snapshot/serializer-common.cc',
1189 'snapshot/serializer-common.h', 1189 'snapshot/serializer-common.h',
1190 'snapshot/snapshot.h', 1190 'snapshot/snapshot.h',
1191 'snapshot/snapshot-common.cc', 1191 'snapshot/snapshot-common.cc',
1192 'snapshot/snapshot-source-sink.cc', 1192 'snapshot/snapshot-source-sink.cc',
1193 'snapshot/snapshot-source-sink.h', 1193 'snapshot/snapshot-source-sink.h',
1194 'snapshot/startup-serializer.cc', 1194 'snapshot/startup-serializer.cc',
1195 'snapshot/startup-serializer.h', 1195 'snapshot/startup-serializer.h',
1196 'source-position-table.cc', 1196 'source-position-table.cc',
1197 'source-position-table.h', 1197 'source-position-table.h',
1198 'source-position.cc',
1198 'source-position.h', 1199 'source-position.h',
1199 'splay-tree.h', 1200 'splay-tree.h',
1200 'splay-tree-inl.h', 1201 'splay-tree-inl.h',
1201 'startup-data-util.cc', 1202 'startup-data-util.cc',
1202 'startup-data-util.h', 1203 'startup-data-util.h',
1203 'string-builder.cc', 1204 'string-builder.cc',
1204 'string-builder.h', 1205 'string-builder.h',
1205 'string-search.h', 1206 'string-search.h',
1206 'string-stream.cc', 1207 'string-stream.cc',
1207 'string-stream.h', 1208 'string-stream.h',
(...skipping 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
2465 'conditions': [ 2466 'conditions': [
2466 ['want_separate_host_toolset_mkpeephole==1', { 2467 ['want_separate_host_toolset_mkpeephole==1', {
2467 'toolsets': ['host'], 2468 'toolsets': ['host'],
2468 }, { 2469 }, {
2469 'toolsets': ['target'], 2470 'toolsets': ['target'],
2470 }], 2471 }],
2471 ], 2472 ],
2472 }, 2473 },
2473 ], 2474 ],
2474 } 2475 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698