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

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

Issue 8896017: Port jump and call instruction decoding and patching for x64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years 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) 2011, 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" // Needed here to get TARGET_ARCH_X64.
6 #if defined(TARGET_ARCH_X64)
7
8 #include "vm/instructions.h"
9 #include "vm/object.h"
10
11 namespace dart {
12
13 bool Instruction::TestBytesWith(const int* data, int num_bytes) const {
14 ASSERT(data != NULL);
15 const uint8_t* byte_array = reinterpret_cast<const uint8_t*>(start_);
16 for (int i = 0; i < num_bytes; i++) {
17 // Skip comparison for data[i] < 0.
18 if ((data[i] >= 0) && (byte_array[i] != (0xFF & data[i]))) {
19 return false;
20 }
21 }
22 return true;
23 }
24
25
26 uword CallOrJump::TargetAddress() const {
27 ASSERT(IsValid());
28 return *reinterpret_cast<uword*>(start() + 2);
29 }
30
31
32 void CallOrJump::SetTargetAddress(uword target) const {
33 ASSERT(IsValid());
34 *reinterpret_cast<uword*>(start() + 2) = target;
35 }
36
37
38 const int* Call::pattern() const {
39 // movq $target, TMP
40 // callq *TMP
41 static const int kCallPattern[kLengthInBytes] =
42 {0x49, 0xBB, -1, -1, -1, -1, -1, -1, -1, -1, 0x41, 0xFF, 0xE3};
43 return kCallPattern;
44 }
45
46
47 const int* Jump::pattern() const {
48 // movq $target, TMP
49 // jmpq TMP
50 static const int kJumpPattern[kLengthInBytes] =
51 {0x49, 0xBB, -1, -1, -1, -1, -1, -1, -1, -1, 0x41, 0xFF, 0xE3};
52 return kJumpPattern;
53 }
54
55
56 } // namespace dart
57
58 #endif // defined TARGET_ARCH_X64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698