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

Side by Side Diff: runtime/vm/debugger_api_impl_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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 "include/dart_debugger_api.h" 8 #include "include/dart_debugger_api.h"
6 #include "include/dart_mirrors_api.h" 9 #include "include/dart_mirrors_api.h"
7 #include "platform/assert.h" 10 #include "platform/assert.h"
8 #include "vm/dart_api_impl.h" 11 #include "vm/dart_api_impl.h"
9 #include "vm/thread.h" 12 #include "vm/thread.h"
10 #include "vm/unit_test.h" 13 #include "vm/unit_test.h"
11 14
12 namespace dart { 15 namespace dart {
13 16
14 DECLARE_FLAG(int, optimization_counter_threshold); 17 DECLARE_FLAG(int, optimization_counter_threshold);
(...skipping 2057 matching lines...) Expand 10 before | Expand all | Expand 10 after
2072 2075
2073 Dart_Handle list_type = Dart_InstanceGetType(list_access_test_obj); 2076 Dart_Handle list_type = Dart_InstanceGetType(list_access_test_obj);
2074 Dart_Handle super_type = Dart_GetSupertype(list_type); 2077 Dart_Handle super_type = Dart_GetSupertype(list_type);
2075 EXPECT(!Dart_IsError(super_type)); 2078 EXPECT(!Dart_IsError(super_type));
2076 super_type = Dart_GetSupertype(super_type); 2079 super_type = Dart_GetSupertype(super_type);
2077 EXPECT(!Dart_IsError(super_type)); 2080 EXPECT(!Dart_IsError(super_type));
2078 EXPECT(super_type == Dart_Null()); 2081 EXPECT(super_type == Dart_Null());
2079 } 2082 }
2080 2083
2081 } // namespace dart 2084 } // namespace dart
2085
2086 #endif // !defined(TARGET_ARCH_ARM64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698