Home
last modified time | relevance | path

Searched refs:JSConstructNode (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Djs-inlining.cc65 Node* new_target() const { return JSConstructNode{call_}.new_target(); } in new_target()
74 : JSConstructNode{call_}.ArgumentCount(); in argument_count()
80 : JSConstructNode{call_}.Parameters().frequency(); in frequency()
620 JSConstructNode n(node); in ReduceJSCall()
Djs-call-reducer.cc824 return JSConstructNode{node_ptr()}.ArgumentCount(); in ConstructArity()
828 return JSConstructNode{node_ptr()}.target(); in TargetInput()
832 return JSConstructNode{node_ptr()}.new_target(); in NewTargetInput()
871 JSConstructNode n(node_ptr()); in CallPromiseExecutor()
887 JSConstructNode n(node_ptr()); in CallPromiseReject()
2248 JSConstructNode n(node_ptr()); in ReducePromiseConstructor()
3091 STATIC_ASSERT(JSConstructNode::FirstArgumentIndex() == 2); in ReduceReflectConstruct()
3099 STATIC_ASSERT(JSConstructNode::TargetIndex() == 0); in ReduceReflectConstruct()
3100 STATIC_ASSERT(JSConstructNode::NewTargetIndex() == 1); in ReduceReflectConstruct()
3101 STATIC_ASSERT(JSConstructNode::kFeedbackVectorIsLastInput); in ReduceReflectConstruct()
[all …]
Djs-typed-lowering.cc1531 JSConstructNode::NewTargetIndex()); in ReduceBuiltin()
1532 new_target = JSConstructNode{node}.new_target(); in ReduceBuiltin()
1533 node->ReplaceInput(JSConstructNode::NewTargetIndex(), in ReduceBuiltin()
1535 node->RemoveInput(JSConstructNode{node}.FeedbackVectorIndex()); in ReduceBuiltin()
1613 JSConstructNode n(node); in ReduceJSConstruct()
1633 STATIC_ASSERT(JSConstructNode::TargetIndex() == 0); in ReduceJSConstruct()
1634 STATIC_ASSERT(JSConstructNode::NewTargetIndex() == 1); in ReduceJSConstruct()
Dbytecode-graph-builder.cc2652 const int arity = JSConstructNode::ArityForArgc(arg_count); in GetConstructArgumentsFromRegister()
2656 STATIC_ASSERT(JSConstructNode::TargetIndex() == 0); in GetConstructArgumentsFromRegister()
2657 STATIC_ASSERT(JSConstructNode::NewTargetIndex() == 1); in GetConstructArgumentsFromRegister()
2658 STATIC_ASSERT(JSConstructNode::FirstArgumentIndex() == 2); in GetConstructArgumentsFromRegister()
2659 STATIC_ASSERT(JSConstructNode::kFeedbackVectorIsLastInput); in GetConstructArgumentsFromRegister()
2690 const uint32_t arity = JSConstructNode::ArityForArgc(arg_count); in VisitConstruct()
2722 const uint32_t arity = JSConstructNode::ArityForArgc(arg_count); in VisitConstructWithSpread()
Djs-inlining-heuristic.cc689 JSConstructNode n(node); in CreateOrReuseDispatch()
Djs-generic-lowering.cc858 JSConstructNode n(node); in LowerJSConstruct()
Djs-operator.h1545 using JSConstructNode = JSConstructNodeBase<IrOpcode::kJSConstruct>; variable