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

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

Issue 241573002: Code patching for ARM64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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/assert.h" 5 #include "platform/assert.h"
6 #include "vm/globals.h" 6 #include "vm/globals.h"
7 #if defined(TARGET_ARCH_ARM64) 7 #if defined(TARGET_ARCH_ARM64)
8 8
9 #include "vm/assembler.h" 9 #include "vm/assembler.h"
10 #include "vm/object.h" 10 #include "vm/object.h"
(...skipping 16 matching lines...) Expand all
27 __ mov(R0, R1); 27 __ mov(R0, R1);
28 __ ret(); 28 __ ret();
29 } 29 }
30 30
31 31
32 // Generate a dart code sequence that embeds a string object in it. 32 // Generate a dart code sequence that embeds a string object in it.
33 // This is used to test Embedded String objects in the instructions. 33 // This is used to test Embedded String objects in the instructions.
34 void GenerateEmbedStringInCode(Assembler* assembler, const char* str) { 34 void GenerateEmbedStringInCode(Assembler* assembler, const char* str) {
35 const String& string_object = 35 const String& string_object =
36 String::ZoneHandle(String::New(str, Heap::kOld)); 36 String::ZoneHandle(String::New(str, Heap::kOld));
37 __ Push(PP); // Save caller's pool pointer and load a new one here. 37 __ PushPP(); // Save caller's pool pointer and load a new one here.
38 __ LoadPoolPointer(PP); 38 __ LoadPoolPointer(PP);
39 __ LoadObject(R0, string_object, PP); 39 __ LoadObject(R0, string_object, PP);
40 __ Pop(PP); // Restore caller's pool pointer. 40 __ PopPP(); // Restore caller's pool pointer.
41 __ ret(); 41 __ ret();
42 } 42 }
43 43
44 44
45 // Generate a dart code sequence that embeds a smi object in it. 45 // Generate a dart code sequence that embeds a smi object in it.
46 // This is used to test Embedded Smi objects in the instructions. 46 // This is used to test Embedded Smi objects in the instructions.
47 void GenerateEmbedSmiInCode(Assembler* assembler, intptr_t value) { 47 void GenerateEmbedSmiInCode(Assembler* assembler, intptr_t value) {
48 const Smi& smi_object = Smi::ZoneHandle(Smi::New(value)); 48 const Smi& smi_object = Smi::ZoneHandle(Smi::New(value));
49 const int64_t val = reinterpret_cast<int64_t>(smi_object.raw()); 49 const int64_t val = reinterpret_cast<int64_t>(smi_object.raw());
50 __ LoadImmediate(R0, val, kNoRegister); 50 __ LoadImmediate(R0, val, kNoRegister);
51 __ ret(); 51 __ ret();
52 } 52 }
53 53
54 } // namespace dart 54 } // namespace dart
55 55
56 #endif // defined TARGET_ARCH_ARM64 56 #endif // defined TARGET_ARCH_ARM64
OLDNEW
« runtime/vm/constants_arm64.h ('K') | « runtime/vm/instructions_arm64_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698