| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // TODO(zra): Remove when test is ready to enable. |
| 6 #include "platform/globals.h" |
| 7 #if !defined(TARGET_ARCH_ARM64) |
| 8 |
| 5 #include "vm/assembler.h" | 9 #include "vm/assembler.h" |
| 6 #include "vm/globals.h" | 10 #include "vm/globals.h" |
| 7 #include "vm/os.h" | 11 #include "vm/os.h" |
| 8 #include "vm/simulator.h" | 12 #include "vm/simulator.h" |
| 9 #include "vm/unit_test.h" | 13 #include "vm/unit_test.h" |
| 10 #include "vm/virtual_memory.h" | 14 #include "vm/virtual_memory.h" |
| 11 | 15 |
| 12 namespace dart { | 16 namespace dart { |
| 13 | 17 |
| 14 ASSEMBLER_TEST_EXTERN(StoreIntoObject); | 18 ASSEMBLER_TEST_EXTERN(StoreIntoObject); |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 EXPECT(new_array.raw() == grow_new_array.data()); | 70 EXPECT(new_array.raw() == grow_new_array.data()); |
| 67 EXPECT(!Isolate::Current()->store_buffer()->Contains(grow_new_array.raw())); | 71 EXPECT(!Isolate::Current()->store_buffer()->Contains(grow_new_array.raw())); |
| 68 | 72 |
| 69 // Store an old object into the new object. | 73 // Store an old object into the new object. |
| 70 test_code(ctx.raw(), old_array.raw(), grow_new_array.raw()); | 74 test_code(ctx.raw(), old_array.raw(), grow_new_array.raw()); |
| 71 EXPECT(old_array.raw() == grow_new_array.data()); | 75 EXPECT(old_array.raw() == grow_new_array.data()); |
| 72 EXPECT(!Isolate::Current()->store_buffer()->Contains(grow_new_array.raw())); | 76 EXPECT(!Isolate::Current()->store_buffer()->Contains(grow_new_array.raw())); |
| 73 } | 77 } |
| 74 | 78 |
| 75 } // namespace dart | 79 } // namespace dart |
| 80 |
| 81 #endif // !defined(TARGET_ARCH_ARM64) |
| OLD | NEW |