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

Side by Side Diff: src/v8.gyp

Issue 2095893002: Use source position table for unoptimized code. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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 910 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 'interpreter/control-flow-builders.cc', 921 'interpreter/control-flow-builders.cc',
922 'interpreter/control-flow-builders.h', 922 'interpreter/control-flow-builders.h',
923 'interpreter/handler-table-builder.cc', 923 'interpreter/handler-table-builder.cc',
924 'interpreter/handler-table-builder.h', 924 'interpreter/handler-table-builder.h',
925 'interpreter/interpreter.cc', 925 'interpreter/interpreter.cc',
926 'interpreter/interpreter.h', 926 'interpreter/interpreter.h',
927 'interpreter/interpreter-assembler.cc', 927 'interpreter/interpreter-assembler.cc',
928 'interpreter/interpreter-assembler.h', 928 'interpreter/interpreter-assembler.h',
929 'interpreter/interpreter-intrinsics.cc', 929 'interpreter/interpreter-intrinsics.cc',
930 'interpreter/interpreter-intrinsics.h', 930 'interpreter/interpreter-intrinsics.h',
931 'interpreter/source-position-table.cc',
932 'interpreter/source-position-table.h',
933 'isolate-inl.h', 931 'isolate-inl.h',
934 'isolate.cc', 932 'isolate.cc',
935 'isolate.h', 933 'isolate.h',
936 'json-parser.cc', 934 'json-parser.cc',
937 'json-parser.h', 935 'json-parser.h',
938 'json-stringifier.cc', 936 'json-stringifier.cc',
939 'json-stringifier.h', 937 'json-stringifier.h',
940 'keys.h', 938 'keys.h',
941 'keys.cc', 939 'keys.cc',
942 'layout-descriptor-inl.h', 940 'layout-descriptor-inl.h',
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 'snapshot/serializer.cc', 1095 'snapshot/serializer.cc',
1098 'snapshot/serializer.h', 1096 'snapshot/serializer.h',
1099 'snapshot/serializer-common.cc', 1097 'snapshot/serializer-common.cc',
1100 'snapshot/serializer-common.h', 1098 'snapshot/serializer-common.h',
1101 'snapshot/snapshot.h', 1099 'snapshot/snapshot.h',
1102 'snapshot/snapshot-common.cc', 1100 'snapshot/snapshot-common.cc',
1103 'snapshot/snapshot-source-sink.cc', 1101 'snapshot/snapshot-source-sink.cc',
1104 'snapshot/snapshot-source-sink.h', 1102 'snapshot/snapshot-source-sink.h',
1105 'snapshot/startup-serializer.cc', 1103 'snapshot/startup-serializer.cc',
1106 'snapshot/startup-serializer.h', 1104 'snapshot/startup-serializer.h',
1105 'source-position-table.cc',
1106 'source-position-table.h',
1107 'source-position.h', 1107 'source-position.h',
1108 'splay-tree.h', 1108 'splay-tree.h',
1109 'splay-tree-inl.h', 1109 'splay-tree-inl.h',
1110 'startup-data-util.cc', 1110 'startup-data-util.cc',
1111 'startup-data-util.h', 1111 'startup-data-util.h',
1112 'string-builder.cc', 1112 'string-builder.cc',
1113 'string-builder.h', 1113 'string-builder.h',
1114 'string-search.h', 1114 'string-search.h',
1115 'string-stream.cc', 1115 'string-stream.cc',
1116 'string-stream.h', 1116 'string-stream.h',
(...skipping 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after
2286 }], 2286 }],
2287 ['want_separate_host_toolset==1', { 2287 ['want_separate_host_toolset==1', {
2288 'toolsets': ['host'], 2288 'toolsets': ['host'],
2289 }, { 2289 }, {
2290 'toolsets': ['target'], 2290 'toolsets': ['target'],
2291 }], 2291 }],
2292 ], 2292 ],
2293 }, 2293 },
2294 ], 2294 ],
2295 } 2295 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698