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

Side by Side Diff: test/cctest/test-migrations.cc

Issue 1221433021: Move SmartPointer to base. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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 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 "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/base/smart-pointers.h"
10 #include "src/code-stubs.h" 11 #include "src/code-stubs.h"
11 #include "src/compilation-cache.h" 12 #include "src/compilation-cache.h"
12 #include "src/execution.h" 13 #include "src/execution.h"
13 #include "src/factory.h" 14 #include "src/factory.h"
14 #include "src/global-handles.h" 15 #include "src/global-handles.h"
15 #include "src/ic/stub-cache.h" 16 #include "src/ic/stub-cache.h"
16 #include "src/macro-assembler.h" 17 #include "src/macro-assembler.h"
17 #include "src/smart-pointers.h"
18 #include "test/cctest/cctest.h" 18 #include "test/cctest/cctest.h"
19 19
20 using namespace v8::internal; 20 using namespace v8::internal;
21 21
22 22
23 // TODO(ishell): fix this once TransitionToPrototype stops generalizing 23 // TODO(ishell): fix this once TransitionToPrototype stops generalizing
24 // all field representations (similar to crbug/448711 where elements kind 24 // all field representations (similar to crbug/448711 where elements kind
25 // and observed transitions caused generalization of all field representations). 25 // and observed transitions caused generalization of all field representations).
26 const bool IS_PROTO_TRANS_ISSUE_FIXED = false; 26 const bool IS_PROTO_TRANS_ISSUE_FIXED = false;
27 27
(...skipping 2150 matching lines...) Expand 10 before | Expand all | Expand 10 after
2178 Handle<AccessorPair> pair = CreateAccessorPair(true, true); 2178 Handle<AccessorPair> pair = CreateAccessorPair(true, true);
2179 TransitionToAccessorConstantOperator transition_op(pair); 2179 TransitionToAccessorConstantOperator transition_op(pair);
2180 2180
2181 SameMapChecker checker; 2181 SameMapChecker checker;
2182 TestTransitionTo(transition_op, transition_op, checker); 2182 TestTransitionTo(transition_op, transition_op, checker);
2183 } 2183 }
2184 2184
2185 2185
2186 // TODO(ishell): add this test once IS_ACCESSOR_FIELD_SUPPORTED is supported. 2186 // TODO(ishell): add this test once IS_ACCESSOR_FIELD_SUPPORTED is supported.
2187 // TEST(TransitionAccessorConstantToAnotherAccessorConstant) 2187 // TEST(TransitionAccessorConstantToAnotherAccessorConstant)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698