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

Side by Side Diff: runtime/vm/assembler_arm64_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: Adds TODOs 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 #include "vm/globals.h"
6 #if defined(TARGET_ARCH_ARM64)
7
8 #include "vm/assembler.h"
9 #include "vm/cpu.h"
10 #include "vm/os.h"
11 #include "vm/unit_test.h"
12 #include "vm/virtual_memory.h"
13
14 namespace dart {
15
16 #define __ assembler->
17
18 ASSEMBLER_TEST_GENERATE(Simple, assembler) {
19 __ add(kDoubleWord, R0, ZR, AddSubOperand(ZR));
20 __ addi(kDoubleWord, R0, R0, AddSubOperand(42));
21 __ ret();
22 }
23
24
25 ASSEMBLER_TEST_RUN(Simple, test) {
26 typedef int (*SimpleCode)();
27 EXPECT_EQ(42, EXECUTE_TEST_CODE_INT32(SimpleCode, test->entry()));
28 }
29
30 } // namespace dart
31
32 #endif // defined(TARGET_ARCH_ARM64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698