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

Side by Side Diff: test/cctest/compiler/test-linkage.cc

Issue 696223002: Now with more checkings! Skip the CallFunctionStub when the callee function can be statically deter… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/compiler.h" 7 #include "src/compiler.h"
8 #include "src/zone.h" 8 #include "src/zone.h"
9 9
10 #include "src/compiler/common-operator.h" 10 #include "src/compiler/common-operator.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 } 83 }
84 84
85 85
86 TEST(TestLinkageJSCall) { 86 TEST(TestLinkageJSCall) {
87 HandleAndZoneScope handles; 87 HandleAndZoneScope handles;
88 Handle<JSFunction> function = Compile("a + c"); 88 Handle<JSFunction> function = Compile("a + c");
89 CompilationInfoWithZone info(function); 89 CompilationInfoWithZone info(function);
90 Linkage linkage(info.zone(), &info); 90 Linkage linkage(info.zone(), &info);
91 91
92 for (int i = 0; i < 32; i++) { 92 for (int i = 0; i < 32; i++) {
93 CallDescriptor* descriptor = linkage.GetJSCallDescriptor(i); 93 CallDescriptor* descriptor =
94 linkage.GetJSCallDescriptor(i, CallDescriptor::kNoFlags);
94 CHECK_NE(NULL, descriptor); 95 CHECK_NE(NULL, descriptor);
95 CHECK_EQ(i, descriptor->JSParameterCount()); 96 CHECK_EQ(i, descriptor->JSParameterCount());
96 CHECK_EQ(1, descriptor->ReturnCount()); 97 CHECK_EQ(1, descriptor->ReturnCount());
97 CHECK_EQ(Operator::kNoProperties, descriptor->properties()); 98 CHECK_EQ(Operator::kNoProperties, descriptor->properties());
98 CHECK_EQ(true, descriptor->IsJSFunctionCall()); 99 CHECK_EQ(true, descriptor->IsJSFunctionCall());
99 } 100 }
100 } 101 }
101 102
102 103
103 TEST(TestLinkageRuntimeCall) { 104 TEST(TestLinkageRuntimeCall) {
104 // TODO(titzer): test linkage creation for outgoing runtime calls. 105 // TODO(titzer): test linkage creation for outgoing runtime calls.
105 } 106 }
106 107
107 108
108 TEST(TestLinkageStubCall) { 109 TEST(TestLinkageStubCall) {
109 // TODO(titzer): test linkage creation for outgoing stub calls. 110 // TODO(titzer): test linkage creation for outgoing stub calls.
110 } 111 }
111 112
112 113
113 #endif // V8_TURBOFAN_TARGET 114 #endif // V8_TURBOFAN_TARGET
OLDNEW
« src/compiler/js-generic-lowering.cc ('K') | « src/compiler/x64/linkage-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698