OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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 #include <stdlib.h> | 5 #include <stdlib.h> |
6 #include <utility> | 6 #include <utility> |
7 | 7 |
8 #include "test/cctest/test-api.h" | 8 #include "test/cctest/test-api.h" |
9 | 9 |
10 #include "src/v8.h" | 10 #include "src/v8.h" |
11 | 11 |
12 #include "src/compilation-cache.h" | 12 #include "src/compilation-cache.h" |
13 #include "src/compilation-dependencies.h" | 13 #include "src/compilation-dependencies.h" |
| 14 #include "src/compilation-info.h" |
14 #include "src/execution.h" | 15 #include "src/execution.h" |
15 #include "src/factory.h" | 16 #include "src/factory.h" |
16 #include "src/field-type.h" | 17 #include "src/field-type.h" |
17 #include "src/global-handles.h" | 18 #include "src/global-handles.h" |
18 #include "src/ic/stub-cache.h" | 19 #include "src/ic/stub-cache.h" |
19 #include "src/macro-assembler.h" | 20 #include "src/macro-assembler.h" |
20 | 21 |
21 using namespace v8::internal; | 22 using namespace v8::internal; |
22 | 23 |
23 | 24 |
(...skipping 2382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2406 Handle<AccessorPair> pair = CreateAccessorPair(true, true); | 2407 Handle<AccessorPair> pair = CreateAccessorPair(true, true); |
2407 TransitionToAccessorConstantOperator transition_op(pair); | 2408 TransitionToAccessorConstantOperator transition_op(pair); |
2408 | 2409 |
2409 SameMapChecker checker; | 2410 SameMapChecker checker; |
2410 TestTransitionTo(transition_op, transition_op, checker); | 2411 TestTransitionTo(transition_op, transition_op, checker); |
2411 } | 2412 } |
2412 | 2413 |
2413 | 2414 |
2414 // TODO(ishell): add this test once IS_ACCESSOR_FIELD_SUPPORTED is supported. | 2415 // TODO(ishell): add this test once IS_ACCESSOR_FIELD_SUPPORTED is supported. |
2415 // TEST(TransitionAccessorConstantToAnotherAccessorConstant) | 2416 // TEST(TransitionAccessorConstantToAnotherAccessorConstant) |
OLD | NEW |