Searched refs:arguments_length (Results 1 - 6 of 6) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
H A D | escape-analysis-reducer.cc | 235 Node* arguments_length = NodeProperties::GetValueInput(node, 0); in Finalize() local 236 if (arguments_length->opcode() != IrOpcode::kArgumentsLength) continue; in Finalize() 239 for (Edge edge : arguments_length->use_edges()) { in Finalize()
|
H A D | js-create-lowering.cc | 167 Node* const arguments_length = in ReduceJSCreateArguments() local 172 effect, control, context, arguments_length, shared, in ReduceJSCreateArguments() 189 a.Store(AccessBuilder::ForArgumentsLength(), arguments_length); in ReduceJSCreateArguments() local 197 Node* const arguments_length = in ReduceJSCreateArguments() local 204 arguments_length, effect); in ReduceJSCreateArguments() 216 a.Store(AccessBuilder::ForArgumentsLength(), arguments_length); in ReduceJSCreateArguments() local 223 Node* const arguments_length = in ReduceJSCreateArguments() local 232 arguments_length, effect); in ReduceJSCreateArguments() 1555 // unknown at compile-time, the true {arguments_length} and {arguments_frame} 1559 Node* effect, Node* control, Node* context, Node* arguments_length, in TryAllocateAliasedArguments() 1558 TryAllocateAliasedArguments( Node* effect, Node* control, Node* context, Node* arguments_length, const SharedFunctionInfoRef& shared, bool* has_aliased_arguments) TryAllocateAliasedArguments() argument [all...] |
H A D | js-create-lowering.h | 97 Node* arguments_length,
|
H A D | effect-control-linearizer.cc | 3552 Node* arguments_length = ChangeIntPtrToSmi( in LowerArgumentsLength() local 3555 arguments_length = in LowerArgumentsLength() 3556 __ SmiSub(arguments_length, __ SmiConstant(kJSArgcReceiverSlots)); in LowerArgumentsLength() 3557 return arguments_length; in LowerArgumentsLength() 3567 Node* arguments_length = ChangeIntPtrToSmi( in LowerRestLength() local 3570 arguments_length = in LowerRestLength() 3571 __ SmiSub(arguments_length, __ SmiConstant(kJSArgcReceiverSlots)); in LowerRestLength() 3573 __ SmiSub(arguments_length, __ SmiConstant(formal_parameter_count)); in LowerRestLength()
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast.cc | 931 int arguments_length = arguments_.length(); in ComputeSpreadPosition() local 933 for (; first_spread_index < arguments_length; first_spread_index++) { in ComputeSpreadPosition() 937 if (first_spread_index == arguments_length - 1) { in ComputeSpreadPosition() 940 DCHECK_LT(first_spread_index, arguments_length - 1); in ComputeSpreadPosition()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | parser.cc | 735 int arguments_length = arguments->length(); in PrepareWrappedArguments() local 737 zone->New<ZonePtrList<const AstRawString>>(arguments_length, zone); in PrepareWrappedArguments() 738 for (int i = 0; i < arguments_length; i++) { in PrepareWrappedArguments()
|
Completed in 24 milliseconds