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

Side by Side Diff: src/runtime/runtime-function.cc

Issue 2539093002: [runtime] Port simple String.prototype.indexOf cases to TF Builtin (Closed)
Patch Set: call runtime for large strings Created 4 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
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/runtime/runtime-utils.h" 5 #include "src/runtime/runtime-utils.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/arguments.h" 8 #include "src/arguments.h"
9 #include "src/compiler.h" 9 #include "src/compiler.h"
10 #include "src/frames-inl.h" 10 #include "src/frames-inl.h"
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 266
267 267
268 RUNTIME_FUNCTION(Runtime_Call) { 268 RUNTIME_FUNCTION(Runtime_Call) {
269 HandleScope scope(isolate); 269 HandleScope scope(isolate);
270 DCHECK_LE(2, args.length()); 270 DCHECK_LE(2, args.length());
271 int const argc = args.length() - 2; 271 int const argc = args.length() - 2;
272 CONVERT_ARG_HANDLE_CHECKED(Object, target, 0); 272 CONVERT_ARG_HANDLE_CHECKED(Object, target, 0);
273 CONVERT_ARG_HANDLE_CHECKED(Object, receiver, 1); 273 CONVERT_ARG_HANDLE_CHECKED(Object, receiver, 1);
274 ScopedVector<Handle<Object>> argv(argc); 274 ScopedVector<Handle<Object>> argv(argc);
275 for (int i = 0; i < argc; ++i) { 275 for (int i = 0; i < argc; ++i) {
276 argv[i] = args.at<Object>(2 + i); 276 argv[i] = args.at(2 + i);
277 } 277 }
278 RETURN_RESULT_OR_FAILURE( 278 RETURN_RESULT_OR_FAILURE(
279 isolate, Execution::Call(isolate, target, receiver, argc, argv.start())); 279 isolate, Execution::Call(isolate, target, receiver, argc, argv.start()));
280 } 280 }
281 281
282 282
283 // ES6 section 9.2.1.2, OrdinaryCallBindThis for sloppy callee. 283 // ES6 section 9.2.1.2, OrdinaryCallBindThis for sloppy callee.
284 RUNTIME_FUNCTION(Runtime_ConvertReceiver) { 284 RUNTIME_FUNCTION(Runtime_ConvertReceiver) {
285 HandleScope scope(isolate); 285 HandleScope scope(isolate);
286 DCHECK(args.length() == 1); 286 DCHECK(args.length() == 1);
(...skipping 15 matching lines...) Expand all
302 DCHECK_EQ(1, args.length()); 302 DCHECK_EQ(1, args.length());
303 CONVERT_ARG_HANDLE_CHECKED(JSReceiver, function, 0); 303 CONVERT_ARG_HANDLE_CHECKED(JSReceiver, function, 0);
304 return function->IsJSBoundFunction() 304 return function->IsJSBoundFunction()
305 ? *JSBoundFunction::ToString( 305 ? *JSBoundFunction::ToString(
306 Handle<JSBoundFunction>::cast(function)) 306 Handle<JSBoundFunction>::cast(function))
307 : *JSFunction::ToString(Handle<JSFunction>::cast(function)); 307 : *JSFunction::ToString(Handle<JSFunction>::cast(function));
308 } 308 }
309 309
310 } // namespace internal 310 } // namespace internal
311 } // namespace v8 311 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698