516d8438ad
The collection builtins (Map, Set, WeakMap, WeakSet) are still written
in JavaScript and make heavy use of %_ClassOf, which is kind of
expensive compared to a simple instance type check. Change that to use
simple instance type checks instead.
R=jarin@chromium.org
BUG=v8:6261,v8:6278,v8:6344
Review-Url: https://codereview.chromium.org/2814773005
Cr-Original-Commit-Position: refs/heads/master@{#45106}
Committed: 28170099fd
Review-Url: https://codereview.chromium.org/2814773005
Cr-Commit-Position: refs/heads/master@{#45124}
35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
# Copyright 2016 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.
|
|
|
|
[
|
|
|
|
##############################################################################
|
|
['variant != default', {
|
|
# Issue 6166.
|
|
'debugger/asm-js-breakpoint-during-exec': [PASS, FAIL],
|
|
# Issue 6167.
|
|
'debugger/eval-scopes': [PASS, FAIL],
|
|
'debugger/scope-skip-variables-with-empty-name': [PASS, FAIL],
|
|
'debugger/update-call-frame-scopes': [PASS, FAIL],
|
|
'debugger/side-effect-free-debug-evaluate': [PASS, FAIL],
|
|
# Issue 6170. Crash.
|
|
'cpu-profiler/console-profile': [SKIP],
|
|
'cpu-profiler/console-profile-end-parameterless-crash': [SKIP],
|
|
# Issue 6171. Timeout.
|
|
'debugger/set-blackbox-patterns': [SKIP],
|
|
}], # variant != default
|
|
|
|
##############################################################################
|
|
['variant == noturbofan', {
|
|
# Crashes due to missing source position in ToBooleanICStub?
|
|
'runtime/command-line-api': [SKIP],
|
|
}], # variant == noturbofan
|
|
|
|
##############################################################################
|
|
['variant == wasm_traps', {
|
|
'*': [SKIP],
|
|
}], # variant == wasm_traps
|
|
|
|
]
|