summaryrefslogtreecommitdiff
path: root/deps/v8/src/builtins/iterator.tq
blob: e662e4e75e5afef0d4788438daabdd077aee138f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include 'src/builtins/builtins-iterator-gen.h'

namespace iterator {
  // Returned from IteratorBuiltinsAssembler::GetIterator().
  struct IteratorRecord {
    // iteratorRecord.[[Iterator]]
    object: JSReceiver;

    // iteratorRecord.[[NextMethod]]
    next: JSAny;
  }

  extern macro IteratorBuiltinsAssembler::GetIteratorMethod(
      implicit context: Context)(JSAny): JSAny;
  extern macro IteratorBuiltinsAssembler::GetIterator(
      implicit context: Context)(JSAny): IteratorRecord;

  extern macro IteratorBuiltinsAssembler::IteratorStep(
      implicit context: Context)(IteratorRecord): JSReceiver
      labels Done;
  extern macro IteratorBuiltinsAssembler::IteratorStep(
      implicit context: Context)(IteratorRecord, Map): JSReceiver
      labels Done;

  extern macro IteratorBuiltinsAssembler::IteratorValue(
      implicit context: Context)(JSReceiver): JSAny;
  extern macro IteratorBuiltinsAssembler::IteratorValue(
      implicit context: Context)(JSReceiver, Map): JSAny;

  extern macro IteratorBuiltinsAssembler::IteratorCloseOnException(
      implicit context: Context)(IteratorRecord, JSAny): never;

  extern macro IteratorBuiltinsAssembler::IterableToList(
      implicit context: Context)(JSAny, JSAny): JSArray;

  extern macro IteratorBuiltinsAssembler::StringListFromIterable(
      implicit context: Context)(JSAny): JSArray;

  extern builtin IterableToListMayPreserveHoles(implicit context:
                                                    Context)(JSAny, JSAny);
  extern builtin IterableToListWithSymbolLookup(implicit context:
                                                    Context)(JSAny);

  transitioning builtin GetIteratorWithFeedback(
      context: Context, receiver: JSAny, loadSlot: Smi, callSlot: Smi,
      feedback: Undefined | FeedbackVector): JSAny {
    let iteratorMethod: JSAny;
    typeswitch (feedback) {
      case (Undefined): {
        iteratorMethod = GetProperty(receiver, IteratorSymbolConstant());
      }
      case (feedback: FeedbackVector): {
        iteratorMethod = LoadIC(
            context, receiver, IteratorSymbolConstant(), loadSlot, feedback);
      }
    }
    return CallIteratorWithFeedback(
        context, receiver, iteratorMethod, callSlot, feedback);
  }

  transitioning builtin CallIteratorWithFeedback(
      context: Context, receiver: JSAny, iteratorMethod: JSAny, callSlot: Smi,
      feedback: Undefined | FeedbackVector): JSAny {
    const callSlotUnTagged: uintptr = Unsigned(SmiUntag(callSlot));
    CollectCallFeedback(iteratorMethod, context, feedback, callSlotUnTagged);
    const iteratorCallable: Callable = Cast<Callable>(iteratorMethod)
        otherwise ThrowCalledNonCallable(iteratorMethod);
    const iterator: JSAny = Call(context, iteratorCallable, receiver);
    typeswitch (iterator) {
      case (JSReceiver): {
        return iterator;
      }
      case (JSPrimitive): {
        ThrowSymbolIteratorInvalid();
      }
    }
  }
}