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

Side by Side Diff: src/compiler/compiler.gyp

Issue 539503002: [turbofan] Initial version of ValueNumberingReducer. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Nit and clang-format. Created 6 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 | Annotate | Revision Log
« no previous file with comments | « BUILD.gn ('k') | src/compiler/js-graph.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 the V8 project authors. All rights reserved. 1 # Copyright 2014 the V8 project authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'v8_code': 1, 7 'v8_code': 1,
8 }, 8 },
9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'],
10 'targets': [ 10 'targets': [
(...skipping 11 matching lines...) Expand all
22 'common-operator-unittest.cc', 22 'common-operator-unittest.cc',
23 'compiler-test-utils.h', 23 'compiler-test-utils.h',
24 'graph-reducer-unittest.cc', 24 'graph-reducer-unittest.cc',
25 'graph-unittest.cc', 25 'graph-unittest.cc',
26 'graph-unittest.h', 26 'graph-unittest.h',
27 'instruction-selector-unittest.cc', 27 'instruction-selector-unittest.cc',
28 'instruction-selector-unittest.h', 28 'instruction-selector-unittest.h',
29 'machine-operator-reducer-unittest.cc', 29 'machine-operator-reducer-unittest.cc',
30 'machine-operator-unittest.cc', 30 'machine-operator-unittest.cc',
31 'simplified-operator-reducer-unittest.cc', 31 'simplified-operator-reducer-unittest.cc',
32 'value-numbering-reducer-unittest.cc',
32 ], 33 ],
33 'conditions': [ 34 'conditions': [
34 ['v8_target_arch=="arm"', { 35 ['v8_target_arch=="arm"', {
35 'sources': [ ### gcmole(arch:arm) ### 36 'sources': [ ### gcmole(arch:arm) ###
36 'arm/instruction-selector-arm-unittest.cc', 37 'arm/instruction-selector-arm-unittest.cc',
37 ], 38 ],
38 }], 39 }],
39 ['v8_target_arch=="arm64"', { 40 ['v8_target_arch=="arm64"', {
40 'sources': [ ### gcmole(arch:arm64) ### 41 'sources': [ ### gcmole(arch:arm64) ###
41 'arm64/instruction-selector-arm64-unittest.cc', 42 'arm64/instruction-selector-arm64-unittest.cc',
42 ], 43 ],
43 }], 44 }],
44 ['v8_target_arch=="ia32"', { 45 ['v8_target_arch=="ia32"', {
45 'sources': [ ### gcmole(arch:ia32) ### 46 'sources': [ ### gcmole(arch:ia32) ###
46 'ia32/instruction-selector-ia32-unittest.cc', 47 'ia32/instruction-selector-ia32-unittest.cc',
47 ], 48 ],
48 }], 49 }],
49 ['v8_target_arch=="x64"', { 50 ['v8_target_arch=="x64"', {
50 'sources': [ ### gcmole(arch:x64) ### 51 'sources': [ ### gcmole(arch:x64) ###
51 'x64/instruction-selector-x64-unittest.cc', 52 'x64/instruction-selector-x64-unittest.cc',
52 ], 53 ],
53 }], 54 }],
54 ], 55 ],
55 }, 56 },
56 ], 57 ],
57 } 58 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/compiler/js-graph.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698