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

Side by Side Diff: src/v8.gyp

Issue 2342853002: [TypeFeedbackVector] special ic slots for interpreter compare/binary ops. (Closed)
Patch Set: Code comments. Created 4 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
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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 'compiler/store-store-elimination.cc', 725 'compiler/store-store-elimination.cc',
726 'compiler/store-store-elimination.h', 726 'compiler/store-store-elimination.h',
727 'compiler/tail-call-optimization.cc', 727 'compiler/tail-call-optimization.cc',
728 'compiler/tail-call-optimization.h', 728 'compiler/tail-call-optimization.h',
729 'compiler/types.cc', 729 'compiler/types.cc',
730 'compiler/types.h', 730 'compiler/types.h',
731 'compiler/type-cache.cc', 731 'compiler/type-cache.cc',
732 'compiler/type-cache.h', 732 'compiler/type-cache.h',
733 'compiler/type-hint-analyzer.cc', 733 'compiler/type-hint-analyzer.cc',
734 'compiler/type-hint-analyzer.h', 734 'compiler/type-hint-analyzer.h',
735 'compiler/type-hints.cc',
736 'compiler/type-hints.h',
737 'compiler/typed-optimization.cc', 735 'compiler/typed-optimization.cc',
738 'compiler/typed-optimization.h', 736 'compiler/typed-optimization.h',
739 'compiler/typer.cc', 737 'compiler/typer.cc',
740 'compiler/typer.h', 738 'compiler/typer.h',
741 'compiler/unwinding-info-writer.h', 739 'compiler/unwinding-info-writer.h',
742 'compiler/value-numbering-reducer.cc', 740 'compiler/value-numbering-reducer.cc',
743 'compiler/value-numbering-reducer.h', 741 'compiler/value-numbering-reducer.h',
744 'compiler/verifier.cc', 742 'compiler/verifier.cc',
745 'compiler/verifier.h', 743 'compiler/verifier.h',
746 'compiler/wasm-compiler.cc', 744 'compiler/wasm-compiler.cc',
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
1213 'ic/stub-cache.cc', 1211 'ic/stub-cache.cc',
1214 'ic/stub-cache.h', 1212 'ic/stub-cache.h',
1215 'tracing/trace-event.cc', 1213 'tracing/trace-event.cc',
1216 'tracing/trace-event.h', 1214 'tracing/trace-event.h',
1217 'transitions-inl.h', 1215 'transitions-inl.h',
1218 'transitions.cc', 1216 'transitions.cc',
1219 'transitions.h', 1217 'transitions.h',
1220 'type-feedback-vector-inl.h', 1218 'type-feedback-vector-inl.h',
1221 'type-feedback-vector.cc', 1219 'type-feedback-vector.cc',
1222 'type-feedback-vector.h', 1220 'type-feedback-vector.h',
1221 'type-hints.cc',
1222 'type-hints.h',
1223 'type-info.cc', 1223 'type-info.cc',
1224 'type-info.h', 1224 'type-info.h',
1225 'unicode-inl.h', 1225 'unicode-inl.h',
1226 'unicode.cc', 1226 'unicode.cc',
1227 'unicode.h', 1227 'unicode.h',
1228 'unicode-cache-inl.h', 1228 'unicode-cache-inl.h',
1229 'unicode-cache.h', 1229 'unicode-cache.h',
1230 'unicode-decoder.cc', 1230 'unicode-decoder.cc',
1231 'unicode-decoder.h', 1231 'unicode-decoder.h',
1232 'uri.cc', 1232 'uri.cc',
(...skipping 1221 matching lines...) Expand 10 before | Expand all | Expand 10 after
2454 'conditions': [ 2454 'conditions': [
2455 ['want_separate_host_toolset_mkpeephole==1', { 2455 ['want_separate_host_toolset_mkpeephole==1', {
2456 'toolsets': ['host'], 2456 'toolsets': ['host'],
2457 }, { 2457 }, {
2458 'toolsets': ['target'], 2458 'toolsets': ['target'],
2459 }], 2459 }],
2460 ], 2460 ],
2461 }, 2461 },
2462 ], 2462 ],
2463 } 2463 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698