2014-10-01 08:34:25 +00:00
|
|
|
# Copyright 2014 the V8 project authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
{
|
|
|
|
'variables': {
|
|
|
|
'v8_code': 1,
|
|
|
|
},
|
|
|
|
'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'],
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'unittests',
|
|
|
|
'type': 'executable',
|
|
|
|
'variables': {
|
|
|
|
'optimize': 'max',
|
|
|
|
},
|
|
|
|
'dependencies': [
|
|
|
|
'../../testing/gmock.gyp:gmock',
|
|
|
|
'../../testing/gtest.gyp:gtest',
|
|
|
|
'../../tools/gyp/v8.gyp:v8_libplatform',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
2015-07-20 06:54:54 +00:00
|
|
|
'defines': [
|
|
|
|
# TODO(jochen): Remove again after this is globally turned on.
|
|
|
|
'V8_IMMINENT_DEPRECATION_WARNINGS',
|
|
|
|
],
|
2014-10-01 08:34:25 +00:00
|
|
|
'sources': [ ### gcmole(all) ###
|
2015-09-04 14:02:13 +00:00
|
|
|
'atomic-utils-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'base/bits-unittest.cc',
|
|
|
|
'base/cpu-unittest.cc',
|
|
|
|
'base/division-by-constant-unittest.cc',
|
|
|
|
'base/flags-unittest.cc',
|
2014-10-06 12:27:24 +00:00
|
|
|
'base/functional-unittest.cc',
|
2015-01-30 09:29:25 +00:00
|
|
|
'base/logging-unittest.cc',
|
2014-12-16 07:31:46 +00:00
|
|
|
'base/iterator-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'base/platform/condition-variable-unittest.cc',
|
|
|
|
'base/platform/mutex-unittest.cc',
|
|
|
|
'base/platform/platform-unittest.cc',
|
|
|
|
'base/platform/semaphore-unittest.cc',
|
|
|
|
'base/platform/time-unittest.cc',
|
|
|
|
'base/sys-info-unittest.cc',
|
|
|
|
'base/utils/random-number-generator-unittest.cc',
|
2014-10-10 08:06:21 +00:00
|
|
|
'char-predicates-unittest.cc',
|
2015-11-09 20:42:29 +00:00
|
|
|
'compiler/binary-operator-reducer-unittest.cc',
|
2015-10-17 17:50:11 +00:00
|
|
|
'compiler/branch-elimination-unittest.cc',
|
2015-09-10 16:21:34 +00:00
|
|
|
'compiler/bytecode-graph-builder-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'compiler/change-lowering-unittest.cc',
|
2015-07-22 04:50:16 +00:00
|
|
|
'compiler/coalesced-live-ranges-unittest.cc',
|
2014-12-22 13:06:34 +00:00
|
|
|
'compiler/common-operator-reducer-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'compiler/common-operator-unittest.cc',
|
|
|
|
'compiler/compiler-test-utils.h',
|
2014-12-02 15:56:22 +00:00
|
|
|
'compiler/control-equivalence-unittest.cc',
|
2015-02-17 13:29:31 +00:00
|
|
|
'compiler/control-flow-optimizer-unittest.cc',
|
[turbofan] Proper dead code elimination as regular reducer.
The three different concerns that the ControlReducer used to deal with
are now properly separated into
a.) DeadCodeElimination, which is a regular AdvancedReducer, that
propagates Dead via control edges,
b.) CommonOperatorReducer, which does strength reduction on common
operators (i.e. Branch, Phi, and friends), and
c.) GraphTrimming, which removes dead->live edges from the graph.
This will make it possible to run the DeadCodeElimination together with
other passes that actually introduce Dead nodes, i.e. typed lowering;
and it opens the door for general inlining without two stage fix point
iteration.
To make the DeadCodeElimination easier and more uniform, we basically
reverted the introduction of DeadValue and DeadEffect, and changed the
Dead operator to produce control, value and effect. Note however that
this is not a requirement, but merely a way to make dead propagation
easier and more uniform. We could always go back and decide to have
different Dead operators if some other change requires that.
Note that there are several additional opportunities for cleanup now,
i.e. OSR deconstruction could be a regular reducer now, and we don't
need to use TheHole as dead value marker in the GraphReducer. And we can
actually run the dead code elimination together with the other passes
instead of using separate passes over the graph. We will do this in
follow up CLs.
R=jarin@chromium.org, mstarzinger@chromium.org
Review URL: https://codereview.chromium.org/1193833002
Cr-Commit-Position: refs/heads/master@{#29146}
2015-06-19 12:07:17 +00:00
|
|
|
'compiler/dead-code-elimination-unittest.cc',
|
2014-11-04 14:37:22 +00:00
|
|
|
'compiler/diamond-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'compiler/graph-reducer-unittest.cc',
|
2015-05-06 10:12:47 +00:00
|
|
|
'compiler/graph-reducer-unittest.h',
|
2015-06-17 10:56:27 +00:00
|
|
|
'compiler/graph-trimmer-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'compiler/graph-unittest.cc',
|
|
|
|
'compiler/graph-unittest.h',
|
|
|
|
'compiler/instruction-selector-unittest.cc',
|
|
|
|
'compiler/instruction-selector-unittest.h',
|
2014-11-27 09:19:31 +00:00
|
|
|
'compiler/instruction-sequence-unittest.cc',
|
|
|
|
'compiler/instruction-sequence-unittest.h',
|
2015-07-23 14:21:26 +00:00
|
|
|
'compiler/interpreter-assembler-unittest.cc',
|
|
|
|
'compiler/interpreter-assembler-unittest.h',
|
2014-10-01 08:34:25 +00:00
|
|
|
'compiler/js-builtin-reducer-unittest.cc',
|
[turbofan]: Add a context relaxation Reducer
In many cases, the context that TurboFan's ASTGraphBuilder or subsequent
reduction operations attaches to nodes does not need to be that exact
context, but rather only needs to be one with the same native context,
because it is used internally only to fetch the native context, e.g. for
creating and throwing exceptions.
This reducer recognizes common cases where the context that is specified
for a node can be relaxed to a canonical, less specific one. This
relaxed context can either be the enclosing function's context or a specific
Module or Script context that is explicitly created within the function.
This optimization is especially important for TurboFan-generated code stubs
which use context specialization and inlining to generate optimal code.
Without context relaxation, many extraneous moves are generated to pass
exactly the right context to internal functions like ToNumber and
AllocateHeapNumber, which only need the native context. By turning context
relaxation on, these moves disappear because all these common internal
context uses are unified to the context passed into the stub function, which
is typically already in the correct context register and remains there for
short stubs. It also eliminates the explicit use of a specialized context
constant in the code stub in these cases, which could cause memory leaks.
Review URL: https://codereview.chromium.org/1244583003
Cr-Commit-Position: refs/heads/master@{#29763}
2015-07-20 17:15:59 +00:00
|
|
|
'compiler/js-context-relaxation-unittest.cc',
|
2015-01-26 09:05:47 +00:00
|
|
|
'compiler/js-intrinsic-lowering-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'compiler/js-operator-unittest.cc',
|
2014-10-07 07:36:21 +00:00
|
|
|
'compiler/js-typed-lowering-unittest.cc',
|
2015-07-22 18:27:16 +00:00
|
|
|
'compiler/linkage-tail-call-unittest.cc',
|
2015-03-17 09:38:37 +00:00
|
|
|
'compiler/liveness-analyzer-unittest.cc',
|
2015-08-31 13:26:57 +00:00
|
|
|
'compiler/live-range-unittest.cc',
|
2014-12-05 07:59:04 +00:00
|
|
|
'compiler/load-elimination-unittest.cc',
|
2015-01-20 09:45:02 +00:00
|
|
|
'compiler/loop-peeling-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'compiler/machine-operator-reducer-unittest.cc',
|
2015-01-02 07:43:34 +00:00
|
|
|
'compiler/machine-operator-unittest.cc',
|
2014-11-27 09:19:31 +00:00
|
|
|
'compiler/move-optimizer-unittest.cc',
|
2015-04-29 14:39:55 +00:00
|
|
|
'compiler/node-cache-unittest.cc',
|
2014-11-07 16:47:25 +00:00
|
|
|
'compiler/node-matchers-unittest.cc',
|
2015-01-16 11:04:01 +00:00
|
|
|
'compiler/node-properties-unittest.cc',
|
2014-10-20 11:26:23 +00:00
|
|
|
'compiler/node-test-utils.cc',
|
|
|
|
'compiler/node-test-utils.h',
|
2015-01-16 11:04:01 +00:00
|
|
|
'compiler/node-unittest.cc',
|
2015-01-09 14:19:55 +00:00
|
|
|
'compiler/opcodes-unittest.cc',
|
2014-11-03 13:26:46 +00:00
|
|
|
'compiler/register-allocator-unittest.cc',
|
2015-01-22 13:01:02 +00:00
|
|
|
'compiler/schedule-unittest.cc',
|
2014-11-03 15:17:08 +00:00
|
|
|
'compiler/select-lowering-unittest.cc',
|
2015-01-26 11:21:14 +00:00
|
|
|
'compiler/scheduler-unittest.cc',
|
2015-06-25 04:47:06 +00:00
|
|
|
'compiler/simplified-operator-reducer-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'compiler/simplified-operator-unittest.cc',
|
2015-03-16 13:43:02 +00:00
|
|
|
'compiler/state-values-utils-unittest.cc',
|
2015-05-05 09:42:59 +00:00
|
|
|
'compiler/tail-call-optimization-unittest.cc',
|
2015-02-12 15:21:17 +00:00
|
|
|
'compiler/typer-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'compiler/value-numbering-reducer-unittest.cc',
|
2014-10-21 12:38:46 +00:00
|
|
|
'compiler/zone-pool-unittest.cc',
|
2015-05-07 10:03:35 +00:00
|
|
|
'counters-unittest.cc',
|
2015-09-02 17:48:10 +00:00
|
|
|
'interpreter/bytecodes-unittest.cc',
|
2015-08-13 11:27:54 +00:00
|
|
|
'interpreter/bytecode-array-builder-unittest.cc',
|
2015-09-10 16:21:34 +00:00
|
|
|
'interpreter/bytecode-array-iterator-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'libplatform/default-platform-unittest.cc',
|
|
|
|
'libplatform/task-queue-unittest.cc',
|
|
|
|
'libplatform/worker-thread-unittest.cc',
|
2015-10-08 13:49:19 +00:00
|
|
|
'heap/bitmap-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'heap/gc-idle-time-handler-unittest.cc',
|
2015-07-07 11:37:44 +00:00
|
|
|
'heap/memory-reducer-unittest.cc',
|
2015-06-15 08:32:52 +00:00
|
|
|
'heap/heap-unittest.cc',
|
2015-09-25 14:49:07 +00:00
|
|
|
'heap/scavenge-job-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'run-all-unittests.cc',
|
2015-09-28 18:05:56 +00:00
|
|
|
'runtime/runtime-interpreter-unittest.cc',
|
2014-10-01 08:34:25 +00:00
|
|
|
'test-utils.h',
|
|
|
|
'test-utils.cc',
|
|
|
|
],
|
|
|
|
'conditions': [
|
|
|
|
['v8_target_arch=="arm"', {
|
|
|
|
'sources': [ ### gcmole(arch:arm) ###
|
|
|
|
'compiler/arm/instruction-selector-arm-unittest.cc',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
['v8_target_arch=="arm64"', {
|
|
|
|
'sources': [ ### gcmole(arch:arm64) ###
|
|
|
|
'compiler/arm64/instruction-selector-arm64-unittest.cc',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
['v8_target_arch=="ia32"', {
|
|
|
|
'sources': [ ### gcmole(arch:ia32) ###
|
|
|
|
'compiler/ia32/instruction-selector-ia32-unittest.cc',
|
|
|
|
],
|
|
|
|
}],
|
2014-10-02 15:48:48 +00:00
|
|
|
['v8_target_arch=="mipsel"', {
|
|
|
|
'sources': [ ### gcmole(arch:mipsel) ###
|
|
|
|
'compiler/mips/instruction-selector-mips-unittest.cc',
|
|
|
|
],
|
|
|
|
}],
|
2014-11-19 15:44:39 +00:00
|
|
|
['v8_target_arch=="mips64el"', {
|
|
|
|
'sources': [ ### gcmole(arch:mips64el) ###
|
|
|
|
'compiler/mips64/instruction-selector-mips64-unittest.cc',
|
|
|
|
],
|
|
|
|
}],
|
2014-10-01 08:34:25 +00:00
|
|
|
['v8_target_arch=="x64"', {
|
|
|
|
'sources': [ ### gcmole(arch:x64) ###
|
|
|
|
'compiler/x64/instruction-selector-x64-unittest.cc',
|
|
|
|
],
|
|
|
|
}],
|
2015-01-16 07:42:00 +00:00
|
|
|
['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', {
|
|
|
|
'sources': [ ### gcmole(arch:ppc) ###
|
|
|
|
'compiler/ppc/instruction-selector-ppc-unittest.cc',
|
|
|
|
],
|
|
|
|
}],
|
2015-04-30 07:50:22 +00:00
|
|
|
['OS=="aix"', {
|
|
|
|
'ldflags': [ '-Wl,-bbigtoc' ],
|
|
|
|
}],
|
2014-10-01 08:34:25 +00:00
|
|
|
['component=="shared_library"', {
|
|
|
|
# compiler-unittests can't be built against a shared library, so we
|
|
|
|
# need to depend on the underlying static target in that case.
|
2015-03-30 14:54:22 +00:00
|
|
|
'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'],
|
2014-10-01 08:34:25 +00:00
|
|
|
}, {
|
|
|
|
'dependencies': ['../../tools/gyp/v8.gyp:v8'],
|
|
|
|
}],
|
|
|
|
['os_posix == 1', {
|
|
|
|
# TODO(svenpanne): This is a temporary work-around to fix the warnings
|
|
|
|
# that show up because we use -std=gnu++0x instead of -std=c++11.
|
|
|
|
'cflags!': [
|
|
|
|
'-pedantic',
|
|
|
|
],
|
|
|
|
'direct_dependent_settings': {
|
|
|
|
'cflags!': [
|
|
|
|
'-pedantic',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}],
|
2015-08-18 15:04:02 +00:00
|
|
|
['v8_wasm!=0', {
|
|
|
|
'dependencies': [
|
|
|
|
'../../third_party/wasm/test/unittests/wasm/wasm.gyp:wasm_unittests',
|
|
|
|
],
|
|
|
|
}],
|
2014-10-01 08:34:25 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
2015-10-05 09:48:25 +00:00
|
|
|
'conditions': [
|
|
|
|
['test_isolation_mode != "noop"', {
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'unittests_run',
|
|
|
|
'type': 'none',
|
|
|
|
'dependencies': [
|
|
|
|
'unittests',
|
|
|
|
],
|
|
|
|
'includes': [
|
|
|
|
'../../build/isolate.gypi',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'unittests.isolate',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
2014-10-01 08:34:25 +00:00
|
|
|
}
|