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

Side by Side Diff: src/v8.gyp

Issue 2403093002: [wasm] Canonicalize function signature indices for matching in indirect calls. (Closed)
Patch Set: Add TODO for myself Created 4 years, 2 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 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 'version.cc', 1238 'version.cc',
1239 'version.h', 1239 'version.h',
1240 'vm-state-inl.h', 1240 'vm-state-inl.h',
1241 'vm-state.h', 1241 'vm-state.h',
1242 'wasm/ast-decoder.cc', 1242 'wasm/ast-decoder.cc',
1243 'wasm/ast-decoder.h', 1243 'wasm/ast-decoder.h',
1244 'wasm/decoder.h', 1244 'wasm/decoder.h',
1245 'wasm/leb-helper.h', 1245 'wasm/leb-helper.h',
1246 'wasm/module-decoder.cc', 1246 'wasm/module-decoder.cc',
1247 'wasm/module-decoder.h', 1247 'wasm/module-decoder.h',
1248 'wasm/signature-map.cc',
1249 'wasm/signature-map.h',
1250 'wasm/switch-logic.cc',
1248 'wasm/switch-logic.h', 1251 'wasm/switch-logic.h',
1249 'wasm/switch-logic.cc',
1250 'wasm/wasm-debug.cc', 1252 'wasm/wasm-debug.cc',
1251 'wasm/wasm-debug.h', 1253 'wasm/wasm-debug.h',
1252 'wasm/wasm-external-refs.cc', 1254 'wasm/wasm-external-refs.cc',
1253 'wasm/wasm-external-refs.h', 1255 'wasm/wasm-external-refs.h',
1254 'wasm/wasm-function-name-table.cc', 1256 'wasm/wasm-function-name-table.cc',
1255 'wasm/wasm-function-name-table.h', 1257 'wasm/wasm-function-name-table.h',
1256 'wasm/wasm-js.cc', 1258 'wasm/wasm-js.cc',
1257 'wasm/wasm-js.h', 1259 'wasm/wasm-js.h',
1258 'wasm/wasm-macro-gen.h', 1260 'wasm/wasm-macro-gen.h',
1259 'wasm/wasm-module.cc', 1261 'wasm/wasm-module.cc',
(...skipping 1207 matching lines...) Expand 10 before | Expand all | Expand 10 after
2467 'conditions': [ 2469 'conditions': [
2468 ['want_separate_host_toolset_mkpeephole==1', { 2470 ['want_separate_host_toolset_mkpeephole==1', {
2469 'toolsets': ['host'], 2471 'toolsets': ['host'],
2470 }, { 2472 }, {
2471 'toolsets': ['target'], 2473 'toolsets': ['target'],
2472 }], 2474 }],
2473 ], 2475 ],
2474 }, 2476 },
2475 ], 2477 ],
2476 } 2478 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698