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

Side by Side Diff: src/runtime.js

Issue 1295433002: [runtime] Remove useless IN builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 // This files contains runtime support implemented in JavaScript. 5 // This files contains runtime support implemented in JavaScript.
6 6
7 // CAUTION: Some of the functions specified in this file are called 7 // CAUTION: Some of the functions specified in this file are called
8 // directly from compiled code. These are the functions with names in 8 // directly from compiled code. These are the functions with names in
9 // ALL CAPS. The compiled code passes the first argument in 'this'. 9 // ALL CAPS. The compiled code passes the first argument in 'this'.
10 10
(...skipping 26 matching lines...) Expand all
37 var BIT_AND; 37 var BIT_AND;
38 var BIT_AND_STRONG; 38 var BIT_AND_STRONG;
39 var BIT_XOR; 39 var BIT_XOR;
40 var BIT_XOR_STRONG; 40 var BIT_XOR_STRONG;
41 var SHL; 41 var SHL;
42 var SHL_STRONG; 42 var SHL_STRONG;
43 var SAR; 43 var SAR;
44 var SAR_STRONG; 44 var SAR_STRONG;
45 var SHR; 45 var SHR;
46 var SHR_STRONG; 46 var SHR_STRONG;
47 var IN;
48 var INSTANCE_OF; 47 var INSTANCE_OF;
49 var CALL_NON_FUNCTION; 48 var CALL_NON_FUNCTION;
50 var CALL_NON_FUNCTION_AS_CONSTRUCTOR; 49 var CALL_NON_FUNCTION_AS_CONSTRUCTOR;
51 var CALL_FUNCTION_PROXY; 50 var CALL_FUNCTION_PROXY;
52 var CALL_FUNCTION_PROXY_AS_CONSTRUCTOR; 51 var CALL_FUNCTION_PROXY_AS_CONSTRUCTOR;
53 var CONCAT_ITERABLE_TO_ARRAY; 52 var CONCAT_ITERABLE_TO_ARRAY;
54 var APPLY_PREPARE; 53 var APPLY_PREPARE;
55 var REFLECT_APPLY_PREPARE; 54 var REFLECT_APPLY_PREPARE;
56 var REFLECT_CONSTRUCT_PREPARE; 55 var REFLECT_CONSTRUCT_PREPARE;
57 var STACK_OVERFLOW; 56 var STACK_OVERFLOW;
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 } 475 }
477 throw %MakeTypeError(kStrongImplicitConversion); 476 throw %MakeTypeError(kStrongImplicitConversion);
478 } 477 }
479 478
480 479
481 /* ----------------------------- 480 /* -----------------------------
482 - - - H e l p e r s - - - 481 - - - H e l p e r s - - -
483 ----------------------------- 482 -----------------------------
484 */ 483 */
485 484
486 // ECMA-262, section 11.8.7, page 54.
487 IN = function IN(x) {
488 if (!IS_SPEC_OBJECT(x)) {
489 throw %MakeTypeError(kInvalidInOperatorUse, this, x);
490 }
491 if (%_IsNonNegativeSmi(this)) {
492 if (IS_ARRAY(x) && %_HasFastPackedElements(x)) {
493 return this < x.length;
494 }
495 return %HasElement(x, this);
496 }
497 return %HasProperty(x, %$toName(this));
498 }
499
500
501 // ECMA-262, section 11.8.6, page 54. To make the implementation more 485 // ECMA-262, section 11.8.6, page 54. To make the implementation more
502 // efficient, the return value should be zero if the 'this' is an 486 // efficient, the return value should be zero if the 'this' is an
503 // instance of F, and non-zero if not. This makes it possible to avoid 487 // instance of F, and non-zero if not. This makes it possible to avoid
504 // an expensive ToBoolean conversion in the generated code. 488 // an expensive ToBoolean conversion in the generated code.
505 INSTANCE_OF = function INSTANCE_OF(F) { 489 INSTANCE_OF = function INSTANCE_OF(F) {
506 var V = this; 490 var V = this;
507 if (!IS_SPEC_FUNCTION(F)) { 491 if (!IS_SPEC_FUNCTION(F)) {
508 throw %MakeTypeError(kInstanceofFunctionExpected, F); 492 throw %MakeTypeError(kInstanceofFunctionExpected, F);
509 } 493 }
510 494
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 $toBoolean = ToBoolean; 912 $toBoolean = ToBoolean;
929 $toInteger = ToInteger; 913 $toInteger = ToInteger;
930 $toLength = ToLength; 914 $toLength = ToLength;
931 $toName = ToName; 915 $toName = ToName;
932 $toNumber = ToNumber; 916 $toNumber = ToNumber;
933 $toPositiveInteger = ToPositiveInteger; 917 $toPositiveInteger = ToPositiveInteger;
934 $toPrimitive = ToPrimitive; 918 $toPrimitive = ToPrimitive;
935 $toString = ToString; 919 $toString = ToString;
936 920
937 }) 921 })
OLDNEW
« no previous file with comments | « src/hydrogen.cc ('k') | src/runtime/runtime.h » ('j') | src/runtime/runtime-object.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698