| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 // TODO(mythria): Remove this define after this flag is turned on globally | 5 // TODO(mythria): Remove this define after this flag is turned on globally |
| 6 #define V8_IMMINENT_DEPRECATION_WARNINGS | 6 #define V8_IMMINENT_DEPRECATION_WARNINGS |
| 7 | 7 |
| 8 #include <stdlib.h> | 8 #include <stdlib.h> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| 11 #include "src/v8.h" | 11 #include "src/v8.h" |
| 12 | 12 |
| 13 #include "src/compilation-cache.h" | 13 #include "src/compilation-cache.h" |
| 14 #include "src/execution.h" | 14 #include "src/execution.h" |
| 15 #include "src/factory.h" | 15 #include "src/factory.h" |
| 16 #include "src/global-handles.h" | 16 #include "src/global-handles.h" |
| 17 #include "src/heap/slots-buffer.h" | 17 #include "src/heap/slots-buffer.h" |
| 18 #include "src/ic/ic.h" | 18 #include "src/ic/ic.h" |
| 19 #include "src/macro-assembler.h" | 19 #include "src/macro-assembler.h" |
| 20 #include "test/cctest/cctest.h" | 20 #include "test/cctest/cctest.h" |
| 21 #include "test/cctest/heap-tester.h" | 21 #include "test/cctest/heap/utils-inl.h" |
| 22 | 22 |
| 23 using namespace v8::base; | 23 using namespace v8::base; |
| 24 using namespace v8::internal; | 24 using namespace v8::internal; |
| 25 | 25 |
| 26 #if V8_DOUBLE_FIELDS_UNBOXING | 26 #if V8_DOUBLE_FIELDS_UNBOXING |
| 27 | 27 |
| 28 | 28 |
| 29 // | 29 // |
| 30 // Helper functions. | 30 // Helper functions. |
| 31 // | 31 // |
| (...skipping 1574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1606 | 1606 |
| 1607 // TODO(ishell): add respective tests for property kind reconfiguring from | 1607 // TODO(ishell): add respective tests for property kind reconfiguring from |
| 1608 // accessor field to double, once accessor fields are supported by | 1608 // accessor field to double, once accessor fields are supported by |
| 1609 // Map::ReconfigureProperty(). | 1609 // Map::ReconfigureProperty(). |
| 1610 | 1610 |
| 1611 | 1611 |
| 1612 // TODO(ishell): add respective tests for fast property removal case once | 1612 // TODO(ishell): add respective tests for fast property removal case once |
| 1613 // Map::ReconfigureProperty() supports that. | 1613 // Map::ReconfigureProperty() supports that. |
| 1614 | 1614 |
| 1615 #endif | 1615 #endif |
| OLD | NEW |