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

Side by Side Diff: src/v8.gyp

Issue 2413243002: Introduce a CompilerDispatcherTracer and track how long jobs take (Closed)
Patch Set: 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 719 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 'compiler/value-numbering-reducer.h', 730 'compiler/value-numbering-reducer.h',
731 'compiler/verifier.cc', 731 'compiler/verifier.cc',
732 'compiler/verifier.h', 732 'compiler/verifier.h',
733 'compiler/wasm-compiler.cc', 733 'compiler/wasm-compiler.cc',
734 'compiler/wasm-compiler.h', 734 'compiler/wasm-compiler.h',
735 'compiler/wasm-linkage.cc', 735 'compiler/wasm-linkage.cc',
736 'compiler/zone-stats.cc', 736 'compiler/zone-stats.cc',
737 'compiler/zone-stats.h', 737 'compiler/zone-stats.h',
738 'compiler-dispatcher/compiler-dispatcher-job.cc', 738 'compiler-dispatcher/compiler-dispatcher-job.cc',
739 'compiler-dispatcher/compiler-dispatcher-job.h', 739 'compiler-dispatcher/compiler-dispatcher-job.h',
740 'compiler-dispatcher/compiler-dispatcher-tracer.cc',
741 'compiler-dispatcher/compiler-dispatcher-tracer.h',
740 'compiler-dispatcher/optimizing-compile-dispatcher.cc', 742 'compiler-dispatcher/optimizing-compile-dispatcher.cc',
741 'compiler-dispatcher/optimizing-compile-dispatcher.h', 743 'compiler-dispatcher/optimizing-compile-dispatcher.h',
742 'compiler.cc', 744 'compiler.cc',
743 'compiler.h', 745 'compiler.h',
744 'context-measure.cc', 746 'context-measure.cc',
745 'context-measure.h', 747 'context-measure.h',
746 'contexts-inl.h', 748 'contexts-inl.h',
747 'contexts.cc', 749 'contexts.cc',
748 'contexts.h', 750 'contexts.h',
749 'conversions-inl.h', 751 'conversions-inl.h',
(...skipping 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after
1816 'base/platform/elapsed-timer.h', 1818 'base/platform/elapsed-timer.h',
1817 'base/platform/time.cc', 1819 'base/platform/time.cc',
1818 'base/platform/time.h', 1820 'base/platform/time.h',
1819 'base/platform/condition-variable.cc', 1821 'base/platform/condition-variable.cc',
1820 'base/platform/condition-variable.h', 1822 'base/platform/condition-variable.h',
1821 'base/platform/mutex.cc', 1823 'base/platform/mutex.cc',
1822 'base/platform/mutex.h', 1824 'base/platform/mutex.h',
1823 'base/platform/platform.h', 1825 'base/platform/platform.h',
1824 'base/platform/semaphore.cc', 1826 'base/platform/semaphore.cc',
1825 'base/platform/semaphore.h', 1827 'base/platform/semaphore.h',
1828 'base/ring-buffer.h',
1826 'base/safe_conversions.h', 1829 'base/safe_conversions.h',
1827 'base/safe_conversions_impl.h', 1830 'base/safe_conversions_impl.h',
1828 'base/safe_math.h', 1831 'base/safe_math.h',
1829 'base/safe_math_impl.h', 1832 'base/safe_math_impl.h',
1830 'base/sys-info.cc', 1833 'base/sys-info.cc',
1831 'base/sys-info.h', 1834 'base/sys-info.h',
1832 'base/utils/random-number-generator.cc', 1835 'base/utils/random-number-generator.cc',
1833 'base/utils/random-number-generator.h', 1836 'base/utils/random-number-generator.h',
1834 ], 1837 ],
1835 'target_conditions': [ 1838 'target_conditions': [
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
2471 'conditions': [ 2474 'conditions': [
2472 ['want_separate_host_toolset_mkpeephole==1', { 2475 ['want_separate_host_toolset_mkpeephole==1', {
2473 'toolsets': ['host'], 2476 'toolsets': ['host'],
2474 }, { 2477 }, {
2475 'toolsets': ['target'], 2478 'toolsets': ['target'],
2476 }], 2479 }],
2477 ], 2480 ],
2478 }, 2481 },
2479 ], 2482 ],
2480 } 2483 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698