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

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

Issue 1759383003: [compiler] Add relocatable pointer constants for wasm memory references. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix mips/mips64 compile Created 4 years, 9 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'compiler/test-loop-assignment-analysis.cc', 64 'compiler/test-loop-assignment-analysis.cc',
65 'compiler/test-loop-analysis.cc', 65 'compiler/test-loop-analysis.cc',
66 'compiler/test-machine-operator-reducer.cc', 66 'compiler/test-machine-operator-reducer.cc',
67 'compiler/test-multiple-return.cc', 67 'compiler/test-multiple-return.cc',
68 'compiler/test-node.cc', 68 'compiler/test-node.cc',
69 'compiler/test-operator.cc', 69 'compiler/test-operator.cc',
70 'compiler/test-osr.cc', 70 'compiler/test-osr.cc',
71 'compiler/test-pipeline.cc', 71 'compiler/test-pipeline.cc',
72 'compiler/test-representation-change.cc', 72 'compiler/test-representation-change.cc',
73 'compiler/test-run-bytecode-graph-builder.cc', 73 'compiler/test-run-bytecode-graph-builder.cc',
74 'compiler/test-run-calls-to-external-references.cc',
75 'compiler/test-run-deopt.cc', 74 'compiler/test-run-deopt.cc',
76 'compiler/test-run-inlining.cc', 75 'compiler/test-run-inlining.cc',
77 'compiler/test-run-intrinsics.cc', 76 'compiler/test-run-intrinsics.cc',
78 'compiler/test-run-jsbranches.cc', 77 'compiler/test-run-jsbranches.cc',
79 'compiler/test-run-jscalls.cc', 78 'compiler/test-run-jscalls.cc',
80 'compiler/test-run-jsexceptions.cc', 79 'compiler/test-run-jsexceptions.cc',
81 'compiler/test-run-jsobjects.cc', 80 'compiler/test-run-jsobjects.cc',
82 'compiler/test-run-jsops.cc', 81 'compiler/test-run-jsops.cc',
83 'compiler/test-run-machops.cc', 82 'compiler/test-run-machops.cc',
84 'compiler/test-run-native-calls.cc', 83 'compiler/test-run-native-calls.cc',
85 'compiler/test-run-stackcheck.cc', 84 'compiler/test-run-stackcheck.cc',
86 'compiler/test-run-stubs.cc', 85 'compiler/test-run-stubs.cc',
87 'compiler/test-run-variables.cc', 86 'compiler/test-run-variables.cc',
87 'compiler/test-run-wasm-machops.cc',
88 'compiler/test-simplified-lowering.cc', 88 'compiler/test-simplified-lowering.cc',
89 'cctest.cc', 89 'cctest.cc',
90 'expression-type-collector.cc', 90 'expression-type-collector.cc',
91 'expression-type-collector.h', 91 'expression-type-collector.h',
92 'interpreter/test-bytecode-generator.cc', 92 'interpreter/test-bytecode-generator.cc',
93 'interpreter/test-interpreter.cc', 93 'interpreter/test-interpreter.cc',
94 'interpreter/bytecode-expectations-printer.cc', 94 'interpreter/bytecode-expectations-printer.cc',
95 'interpreter/bytecode-expectations-printer.h', 95 'interpreter/bytecode-expectations-printer.h',
96 'gay-fixed.cc', 96 'gay-fixed.cc',
97 'gay-precision.cc', 97 'gay-precision.cc',
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 'wasm/wasm-run-utils.h', 195 'wasm/wasm-run-utils.h',
196 ], 196 ],
197 'conditions': [ 197 'conditions': [
198 ['v8_target_arch=="ia32"', { 198 ['v8_target_arch=="ia32"', {
199 'sources': [ ### gcmole(arch:ia32) ### 199 'sources': [ ### gcmole(arch:ia32) ###
200 'test-assembler-ia32.cc', 200 'test-assembler-ia32.cc',
201 'test-code-stubs.cc', 201 'test-code-stubs.cc',
202 'test-code-stubs-ia32.cc', 202 'test-code-stubs-ia32.cc',
203 'test-disasm-ia32.cc', 203 'test-disasm-ia32.cc',
204 'test-macro-assembler-ia32.cc', 204 'test-macro-assembler-ia32.cc',
205 'test-log-stack-tracer.cc' 205 'test-log-stack-tracer.cc',
206 'test-wasm-relocation-disasm-ia32.cc'
206 ], 207 ],
207 }], 208 }],
208 ['v8_target_arch=="x64"', { 209 ['v8_target_arch=="x64"', {
209 'sources': [ ### gcmole(arch:x64) ### 210 'sources': [ ### gcmole(arch:x64) ###
210 'test-assembler-x64.cc', 211 'test-assembler-x64.cc',
211 'test-code-stubs.cc', 212 'test-code-stubs.cc',
212 'test-code-stubs-x64.cc', 213 'test-code-stubs-x64.cc',
213 'test-disasm-x64.cc', 214 'test-disasm-x64.cc',
214 'test-macro-assembler-x64.cc', 215 'test-macro-assembler-x64.cc',
215 'test-log-stack-tracer.cc' 216 'test-log-stack-tracer.cc',
217 'test-wasm-relocation-disasm-x64.cc'
216 ], 218 ],
217 }], 219 }],
218 ['v8_target_arch=="arm"', { 220 ['v8_target_arch=="arm"', {
219 'sources': [ ### gcmole(arch:arm) ### 221 'sources': [ ### gcmole(arch:arm) ###
220 'test-assembler-arm.cc', 222 'test-assembler-arm.cc',
221 'test-code-stubs.cc', 223 'test-code-stubs.cc',
222 'test-code-stubs-arm.cc', 224 'test-code-stubs-arm.cc',
223 'test-disasm-arm.cc', 225 'test-disasm-arm.cc',
224 'test-macro-assembler-arm.cc' 226 'test-macro-assembler-arm.cc',
227 'test-wasm-relocation-disasm-arm.cc'
225 ], 228 ],
226 }], 229 }],
227 ['v8_target_arch=="arm64"', { 230 ['v8_target_arch=="arm64"', {
228 'sources': [ ### gcmole(arch:arm64) ### 231 'sources': [ ### gcmole(arch:arm64) ###
229 'test-utils-arm64.cc', 232 'test-utils-arm64.cc',
230 'test-assembler-arm64.cc', 233 'test-assembler-arm64.cc',
231 'test-code-stubs.cc', 234 'test-code-stubs.cc',
232 'test-code-stubs-arm64.cc', 235 'test-code-stubs-arm64.cc',
233 'test-disasm-arm64.cc', 236 'test-disasm-arm64.cc',
234 'test-fuzz-arm64.cc', 237 'test-fuzz-arm64.cc',
235 'test-javascript-arm64.cc', 238 'test-javascript-arm64.cc',
236 'test-js-arm64-variables.cc' 239 'test-js-arm64-variables.cc',
240 'test-wasm-relocation-disasm-arm64.cc'
237 ], 241 ],
238 }], 242 }],
239 ['v8_target_arch=="ppc"', { 243 ['v8_target_arch=="ppc"', {
240 'sources': [ ### gcmole(arch:ppc) ### 244 'sources': [ ### gcmole(arch:ppc) ###
241 'test-assembler-ppc.cc', 245 'test-assembler-ppc.cc',
242 'test-code-stubs.cc', 246 'test-code-stubs.cc',
243 'test-disasm-ppc.cc' 247 'test-disasm-ppc.cc'
244 ], 248 ],
245 }], 249 }],
246 ['v8_target_arch=="ppc64"', { 250 ['v8_target_arch=="ppc64"', {
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 '../../build/isolate.gypi', 401 '../../build/isolate.gypi',
398 ], 402 ],
399 'sources': [ 403 'sources': [
400 'cctest.isolate', 404 'cctest.isolate',
401 ], 405 ],
402 }, 406 },
403 ], 407 ],
404 }], 408 }],
405 ], 409 ],
406 } 410 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698