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

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

Issue 120723003: Refactors CPU feature detection. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Cleanup Created 6 years, 11 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 "vm/globals.h" 5 #include "vm/globals.h"
6 #if defined(TARGET_ARCH_ARM) 6 #if defined(TARGET_ARCH_ARM)
7 7
8 #include "vm/assembler.h" 8 #include "vm/assembler.h"
9 #include "vm/cpu.h"
9 #include "vm/os.h" 10 #include "vm/os.h"
10 #include "vm/unit_test.h" 11 #include "vm/unit_test.h"
11 #include "vm/virtual_memory.h" 12 #include "vm/virtual_memory.h"
12 13
13 namespace dart { 14 namespace dart {
14 15
15 #define __ assembler-> 16 #define __ assembler->
16 17
17 18
18 ASSEMBLER_TEST_GENERATE(Simple, assembler) { 19 ASSEMBLER_TEST_GENERATE(Simple, assembler) {
(...skipping 3564 matching lines...) Expand 10 before | Expand all | Expand 10 after
3583 __ StoreIntoObject(R2, 3584 __ StoreIntoObject(R2,
3584 FieldAddress(R2, GrowableObjectArray::data_offset()), 3585 FieldAddress(R2, GrowableObjectArray::data_offset()),
3585 R1); 3586 R1);
3586 __ PopList((1 << CTX) | (1 << LR)); 3587 __ PopList((1 << CTX) | (1 << LR));
3587 __ Ret(); 3588 __ Ret();
3588 } 3589 }
3589 3590
3590 } // namespace dart 3591 } // namespace dart
3591 3592
3592 #endif // defined TARGET_ARCH_ARM 3593 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « runtime/vm/assembler_arm.cc ('k') | runtime/vm/assembler_ia32.h » ('j') | runtime/vm/cpu_ia32.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698