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

Side by Side Diff: runtime/vm/assembler_test.cc

Issue 221133002: Begins work on ARM64, first assembler test. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Fixed Rn/Rd modes for R31 Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698