| 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 #include "platform/globals.h" |
| 6 #if !defined(TARGET_ARCH_ARM64) |
| 7 |
| 5 #include "vm/assembler.h" | 8 #include "vm/assembler.h" |
| 6 #include "vm/globals.h" | 9 #include "vm/globals.h" |
| 7 #include "vm/os.h" | 10 #include "vm/os.h" |
| 8 #include "vm/simulator.h" | 11 #include "vm/simulator.h" |
| 9 #include "vm/unit_test.h" | 12 #include "vm/unit_test.h" |
| 10 #include "vm/virtual_memory.h" | 13 #include "vm/virtual_memory.h" |
| 11 | 14 |
| 12 namespace dart { | 15 namespace dart { |
| 13 | 16 |
| 14 ASSEMBLER_TEST_EXTERN(StoreIntoObject); | 17 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()); | 69 EXPECT(new_array.raw() == grow_new_array.data()); |
| 67 EXPECT(!Isolate::Current()->store_buffer()->Contains(grow_new_array.raw())); | 70 EXPECT(!Isolate::Current()->store_buffer()->Contains(grow_new_array.raw())); |
| 68 | 71 |
| 69 // Store an old object into the new object. | 72 // Store an old object into the new object. |
| 70 test_code(ctx.raw(), old_array.raw(), grow_new_array.raw()); | 73 test_code(ctx.raw(), old_array.raw(), grow_new_array.raw()); |
| 71 EXPECT(old_array.raw() == grow_new_array.data()); | 74 EXPECT(old_array.raw() == grow_new_array.data()); |
| 72 EXPECT(!Isolate::Current()->store_buffer()->Contains(grow_new_array.raw())); | 75 EXPECT(!Isolate::Current()->store_buffer()->Contains(grow_new_array.raw())); |
| 73 } | 76 } |
| 74 | 77 |
| 75 } // namespace dart | 78 } // namespace dart |
| 79 |
| 80 #endif // !defined(TARGET_ARCH_ARM64) |
| OLD | NEW |