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

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

Issue 8984003: Port code generator to 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
« no previous file with comments | « runtime/vm/code_patcher_x64.cc ('k') | runtime/vm/compiler_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
6 #if defined(TARGET_ARCH_X64)
7
8 #include "vm/assembler.h"
9 #include "vm/code_generator.h"
10 #include "vm/code_patcher.h"
11 #include "vm/dart_entry.h"
12 #include "vm/ic_data.h"
13 #include "vm/instructions.h"
14 #include "vm/native_entry.h"
15 #include "vm/native_entry_test.h"
16 #include "vm/stub_code.h"
17 #include "vm/unit_test.h"
18
19 namespace dart {
20
21 static const intptr_t kPos = 1; // Dummy token index in non-existing source.
22
23 CODEGEN_TEST_GENERATE(NativePatchStaticCall, test) {
24 SequenceNode* node_seq = test->node_sequence();
25 const int num_params = 0;
26 const bool has_opt_params = false;
27 const String& native_name =
28 String::ZoneHandle(String::NewSymbol("TestStaticCallPatching"));
29 NativeFunction native_function = reinterpret_cast<NativeFunction>(
30 NATIVE_ENTRY_FUNCTION(TestStaticCallPatching));
31 node_seq->Add(new ReturnNode(kPos,
32 new NativeBodyNode(kPos,
33 native_name,
34 native_function,
35 num_params,
36 has_opt_params)));
37 }
38
39 CODEGEN_TEST2_GENERATE(PatchStaticCall, function, test) {
40 SequenceNode* node_seq = test->node_sequence();
41 ArgumentListNode* arguments = new ArgumentListNode(kPos);
42 node_seq->Add(new ReturnNode(kPos,
43 new StaticCallNode(kPos, function, arguments)));
44 }
45
46 CODEGEN_TEST2_RUN(PatchStaticCall, NativePatchStaticCall, Instance::null());
47
48 #define __ assembler->
49
50 ASSEMBLER_TEST_GENERATE(IcDataAccess, assembler) {
51 const String& function_name = String::Handle(String::New("Vermicelles"));
52 ICData ic_data(function_name, 1);
53 EXPECT(!Array::Handle(ic_data.data()).IsNull());
54 __ LoadObject(RBX, Array::ZoneHandle(ic_data.data()));
55 __ LoadObject(R10, CodeGenerator::ArgumentsDescriptor(1, Array::Handle()));
56 ExternalLabel target_label(
57 "InlineCache", StubCode::OneArgCheckInlineCacheEntryPoint());
58 __ call(&target_label);
59 __ ret();
60 }
61
62
63 ASSEMBLER_TEST_RUN(IcDataAccess, entry) {
64 uword return_address = entry + CodePatcher::InstanceCallSizeInBytes();
65 const Array& array = Array::Handle(
66 CodePatcher::GetInstanceCallIcDataAt(return_address));
67 EXPECT(!array.IsNull());
68 ICData ic_data(array);
69 EXPECT_STREQ("Vermicelles",
70 String::Handle(ic_data.FunctionName()).ToCString());
71 EXPECT_EQ(1, ic_data.NumberOfArgumentsChecked());
72 EXPECT_EQ(0, ic_data.NumberOfChecks());
73 const String& new_function_name = String::Handle(String::New("Rigi"));
74 ICData new_ic_data(new_function_name, 1);
75 EXPECT_STREQ("Rigi", String::Handle(new_ic_data.FunctionName()).ToCString());
76 CodePatcher::SetInstanceCallIcDataAt(return_address,
77 Array::ZoneHandle(new_ic_data.data()));
78 const Array& new_array = Array::Handle(
79 CodePatcher::GetInstanceCallIcDataAt(return_address));
80 ICData test_ic_data(new_array);
81 EXPECT_STREQ("Rigi", String::Handle(test_ic_data.FunctionName()).ToCString());
82 }
83
84 } // namespace dart
85
86 #endif // TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « runtime/vm/code_patcher_x64.cc ('k') | runtime/vm/compiler_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698