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

Side by Side Diff: test/cctest/cctest.gyp

Issue 469743002: [turbofan] Refactor the InstructionSelector tests. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: ARM64 Created 6 years, 4 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 | « src/compiler/machine-node-factory.h ('k') | test/cctest/compiler/test-instruction-selector.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 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'compiler/graph-builder-tester.cc', 50 'compiler/graph-builder-tester.cc',
51 'compiler/graph-builder-tester.h', 51 'compiler/graph-builder-tester.h',
52 'compiler/graph-tester.h', 52 'compiler/graph-tester.h',
53 'compiler/simplified-graph-builder.cc', 53 'compiler/simplified-graph-builder.cc',
54 'compiler/simplified-graph-builder.h', 54 'compiler/simplified-graph-builder.h',
55 'compiler/test-branch-combine.cc', 55 'compiler/test-branch-combine.cc',
56 'compiler/test-changes-lowering.cc', 56 'compiler/test-changes-lowering.cc',
57 'compiler/test-codegen-deopt.cc', 57 'compiler/test-codegen-deopt.cc',
58 'compiler/test-gap-resolver.cc', 58 'compiler/test-gap-resolver.cc',
59 'compiler/test-graph-reducer.cc', 59 'compiler/test-graph-reducer.cc',
60 'compiler/test-instruction-selector.cc',
61 'compiler/test-instruction.cc', 60 'compiler/test-instruction.cc',
62 'compiler/test-js-context-specialization.cc', 61 'compiler/test-js-context-specialization.cc',
63 'compiler/test-js-constant-cache.cc', 62 'compiler/test-js-constant-cache.cc',
64 'compiler/test-js-typed-lowering.cc', 63 'compiler/test-js-typed-lowering.cc',
65 'compiler/test-linkage.cc', 64 'compiler/test-linkage.cc',
66 'compiler/test-machine-operator-reducer.cc', 65 'compiler/test-machine-operator-reducer.cc',
67 'compiler/test-node-algorithm.cc', 66 'compiler/test-node-algorithm.cc',
68 'compiler/test-node-cache.cc', 67 'compiler/test-node-cache.cc',
69 'compiler/test-node.cc', 68 'compiler/test-node.cc',
70 'compiler/test-operator.cc', 69 'compiler/test-operator.cc',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 'test-utils.cc', 159 'test-utils.cc',
161 'test-version.cc', 160 'test-version.cc',
162 'test-weakmaps.cc', 161 'test-weakmaps.cc',
163 'test-weaksets.cc', 162 'test-weaksets.cc',
164 'test-weaktypedarrays.cc', 163 'test-weaktypedarrays.cc',
165 'trace-extension.cc' 164 'trace-extension.cc'
166 ], 165 ],
167 'conditions': [ 166 'conditions': [
168 ['v8_target_arch=="ia32"', { 167 ['v8_target_arch=="ia32"', {
169 'sources': [ ### gcmole(arch:ia32) ### 168 'sources': [ ### gcmole(arch:ia32) ###
170 'compiler/test-instruction-selector-ia32.cc',
171 'test-assembler-ia32.cc', 169 'test-assembler-ia32.cc',
172 'test-code-stubs.cc', 170 'test-code-stubs.cc',
173 'test-code-stubs-ia32.cc', 171 'test-code-stubs-ia32.cc',
174 'test-disasm-ia32.cc', 172 'test-disasm-ia32.cc',
175 'test-macro-assembler-ia32.cc', 173 'test-macro-assembler-ia32.cc',
176 'test-log-stack-tracer.cc' 174 'test-log-stack-tracer.cc'
177 ], 175 ],
178 }], 176 }],
179 ['v8_target_arch=="x64"', { 177 ['v8_target_arch=="x64"', {
180 'sources': [ ### gcmole(arch:x64) ### 178 'sources': [ ### gcmole(arch:x64) ###
181 'test-assembler-x64.cc', 179 'test-assembler-x64.cc',
182 'test-code-stubs.cc', 180 'test-code-stubs.cc',
183 'test-code-stubs-x64.cc', 181 'test-code-stubs-x64.cc',
184 'test-disasm-x64.cc', 182 'test-disasm-x64.cc',
185 'test-macro-assembler-x64.cc', 183 'test-macro-assembler-x64.cc',
186 'test-log-stack-tracer.cc' 184 'test-log-stack-tracer.cc'
187 ], 185 ],
188 }], 186 }],
189 ['v8_target_arch=="arm"', { 187 ['v8_target_arch=="arm"', {
190 'sources': [ ### gcmole(arch:arm) ### 188 'sources': [ ### gcmole(arch:arm) ###
191 'compiler/test-instruction-selector-arm.cc',
192 'test-assembler-arm.cc', 189 'test-assembler-arm.cc',
193 'test-code-stubs.cc', 190 'test-code-stubs.cc',
194 'test-code-stubs-arm.cc', 191 'test-code-stubs-arm.cc',
195 'test-disasm-arm.cc', 192 'test-disasm-arm.cc',
196 'test-macro-assembler-arm.cc' 193 'test-macro-assembler-arm.cc'
197 ], 194 ],
198 }], 195 }],
199 ['v8_target_arch=="arm64"', { 196 ['v8_target_arch=="arm64"', {
200 'sources': [ ### gcmole(arch:arm64) ### 197 'sources': [ ### gcmole(arch:arm64) ###
201 'compiler/test-instruction-selector-arm64.cc',
202 'test-utils-arm64.cc', 198 'test-utils-arm64.cc',
203 'test-assembler-arm64.cc', 199 'test-assembler-arm64.cc',
204 'test-code-stubs.cc', 200 'test-code-stubs.cc',
205 'test-code-stubs-arm64.cc', 201 'test-code-stubs-arm64.cc',
206 'test-disasm-arm64.cc', 202 'test-disasm-arm64.cc',
207 'test-fuzz-arm64.cc', 203 'test-fuzz-arm64.cc',
208 'test-javascript-arm64.cc', 204 'test-javascript-arm64.cc',
209 'test-js-arm64-variables.cc' 205 'test-js-arm64-variables.cc'
210 ], 206 ],
211 }], 207 }],
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 '<@(_outputs)', 298 '<@(_outputs)',
303 'TEST', # type 299 'TEST', # type
304 'off', # compression 300 'off', # compression
305 '<@(file_list)', 301 '<@(file_list)',
306 ], 302 ],
307 } 303 }
308 ], 304 ],
309 }, 305 },
310 ], 306 ],
311 } 307 }
OLDNEW
« no previous file with comments | « src/compiler/machine-node-factory.h ('k') | test/cctest/compiler/test-instruction-selector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698