OLD | NEW |
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/arguments.h" | 7 #include "src/arguments.h" |
8 #include "src/code-stubs.h" | 8 #include "src/code-stubs.h" |
9 #include "src/conversions-inl.h" | 9 #include "src/conversions-inl.h" |
10 #include "src/elements.h" | 10 #include "src/elements.h" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 } else { | 64 } else { |
65 FastArrayPushStub stub(isolate); | 65 FastArrayPushStub stub(isolate); |
66 InstallCode(isolate, holder, "push", stub.GetCode()); | 66 InstallCode(isolate, holder, "push", stub.GetCode()); |
67 } | 67 } |
68 InstallBuiltin(isolate, holder, "shift", Builtins::kArrayShift); | 68 InstallBuiltin(isolate, holder, "shift", Builtins::kArrayShift); |
69 InstallBuiltin(isolate, holder, "unshift", Builtins::kArrayUnshift); | 69 InstallBuiltin(isolate, holder, "unshift", Builtins::kArrayUnshift); |
70 InstallBuiltin(isolate, holder, "slice", Builtins::kArraySlice); | 70 InstallBuiltin(isolate, holder, "slice", Builtins::kArraySlice); |
71 InstallBuiltin(isolate, holder, "splice", Builtins::kArraySplice); | 71 InstallBuiltin(isolate, holder, "splice", Builtins::kArraySplice); |
72 InstallBuiltin(isolate, holder, "includes", Builtins::kArrayIncludes, 2); | 72 InstallBuiltin(isolate, holder, "includes", Builtins::kArrayIncludes, 2); |
73 InstallBuiltin(isolate, holder, "indexOf", Builtins::kArrayIndexOf, 2); | 73 InstallBuiltin(isolate, holder, "indexOf", Builtins::kArrayIndexOf, 2); |
| 74 InstallBuiltin(isolate, holder, "keys", Builtins::kArrayPrototypeKeys, 0); |
| 75 InstallBuiltin(isolate, holder, "values", Builtins::kArrayPrototypeValues, 0); |
| 76 InstallBuiltin(isolate, holder, "entries", Builtins::kArrayPrototypeEntries, |
| 77 0); |
74 | 78 |
75 return *holder; | 79 return *holder; |
76 } | 80 } |
77 | 81 |
78 | 82 |
79 RUNTIME_FUNCTION(Runtime_FixedArrayGet) { | 83 RUNTIME_FUNCTION(Runtime_FixedArrayGet) { |
80 SealHandleScope shs(isolate); | 84 SealHandleScope shs(isolate); |
81 DCHECK(args.length() == 2); | 85 DCHECK(args.length() == 2); |
82 CONVERT_ARG_CHECKED(FixedArray, object, 0); | 86 CONVERT_ARG_CHECKED(FixedArray, object, 0); |
83 CONVERT_SMI_ARG_CHECKED(index, 1); | 87 CONVERT_SMI_ARG_CHECKED(index, 1); |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
634 if (search_element->StrictEquals(*element_k)) { | 638 if (search_element->StrictEquals(*element_k)) { |
635 return *index_obj; | 639 return *index_obj; |
636 } | 640 } |
637 } | 641 } |
638 } | 642 } |
639 return Smi::FromInt(-1); | 643 return Smi::FromInt(-1); |
640 } | 644 } |
641 | 645 |
642 } // namespace internal | 646 } // namespace internal |
643 } // namespace v8 | 647 } // namespace v8 |
OLD | NEW |