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

Side by Side Diff: test/cctest/compiler/test-run-jscalls.cc

Issue 1323543002: [runtime] Replace %to_string_fun with %_ToString. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@ToStringStub
Patch Set: REBASE. Fixes Created 5 years, 2 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
« no previous file with comments | « src/v8natives.js ('k') | test/mjsunit/compiler/jsnatives.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "test/cctest/compiler/function-tester.h" 7 #include "test/cctest/compiler/function-tester.h"
8 8
9 using namespace v8::internal; 9 using namespace v8::internal;
10 using namespace v8::internal::compiler; 10 using namespace v8::internal::compiler;
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 FLAG_allow_natives_syntax = true; 136 FLAG_allow_natives_syntax = true;
137 FunctionTester T("(function(a,b) { return %NumberImul(a, b); })"); 137 FunctionTester T("(function(a,b) { return %NumberImul(a, b); })");
138 138
139 T.CheckCall(T.Val(2730), T.Val(42), T.Val(65)); 139 T.CheckCall(T.Val(2730), T.Val(42), T.Val(65));
140 T.CheckCall(T.Val(798), T.Val(42), T.Val(19)); 140 T.CheckCall(T.Val(798), T.Val(42), T.Val(19));
141 } 141 }
142 142
143 143
144 TEST(RuntimeCallJS) { 144 TEST(RuntimeCallJS) {
145 FLAG_allow_natives_syntax = true; 145 FLAG_allow_natives_syntax = true;
146 FunctionTester T("(function(a) { return %to_string_fun(a); })"); 146 FunctionTester T("(function(a) { return %to_number_fun(a); })");
147 147
148 T.CheckCall(T.Val("23"), T.Val(23), T.undefined()); 148 T.CheckCall(T.Val(23), T.Val(23), T.undefined());
149 T.CheckCall(T.Val("4.2"), T.Val(4.2), T.undefined()); 149 T.CheckCall(T.Val(4.2), T.Val(4.2), T.undefined());
150 T.CheckCall(T.Val("str"), T.Val("str"), T.undefined()); 150 T.CheckCall(T.Val(1), T.true_value(), T.undefined());
151 T.CheckCall(T.Val("true"), T.true_value(), T.undefined());
152 T.CheckCall(T.Val("false"), T.false_value(), T.undefined());
153 T.CheckCall(T.Val("undefined"), T.undefined(), T.undefined());
154 } 151 }
155 152
156 153
157 TEST(RuntimeCallInline) { 154 TEST(RuntimeCallInline) {
158 FLAG_allow_natives_syntax = true; 155 FLAG_allow_natives_syntax = true;
159 FunctionTester T("(function(a) { return %_IsSpecObject(a); })"); 156 FunctionTester T("(function(a) { return %_IsSpecObject(a); })");
160 157
161 T.CheckCall(T.false_value(), T.Val(23), T.undefined()); 158 T.CheckCall(T.false_value(), T.Val(23), T.undefined());
162 T.CheckCall(T.false_value(), T.Val(4.2), T.undefined()); 159 T.CheckCall(T.false_value(), T.Val(4.2), T.undefined());
163 T.CheckCall(T.false_value(), T.Val("str"), T.undefined()); 160 T.CheckCall(T.false_value(), T.Val("str"), T.undefined());
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 v8::Context::Scope scope(context); 244 v8::Context::Scope scope(context);
248 v8::Local<v8::Value> value = CompileRun(script); 245 v8::Local<v8::Value> value = CompileRun(script);
249 i::Handle<i::Object> ofun = v8::Utils::OpenHandle(*value); 246 i::Handle<i::Object> ofun = v8::Utils::OpenHandle(*value);
250 i::Handle<i::JSFunction> jsfun = Handle<JSFunction>::cast(ofun); 247 i::Handle<i::JSFunction> jsfun = Handle<JSFunction>::cast(ofun);
251 jsfun->set_code(T.function->code()); 248 jsfun->set_code(T.function->code());
252 jsfun->set_shared(T.function->shared()); 249 jsfun->set_shared(T.function->shared());
253 context->Global()->Set(v8_str("foo"), v8::Utils::ToLocal(jsfun)); 250 context->Global()->Set(v8_str("foo"), v8::Utils::ToLocal(jsfun));
254 CompileRun("var x = 24;"); 251 CompileRun("var x = 24;");
255 ExpectObject("foo()", context->Global()); 252 ExpectObject("foo()", context->Global());
256 } 253 }
OLDNEW
« no previous file with comments | « src/v8natives.js ('k') | test/mjsunit/compiler/jsnatives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698