HomeSort by relevance Sort by last modified time
    Searched refs:mapped_count (Results 1 - 8 of 8) sorted by null

  /external/v8/src/compiler/
escape-analysis-reducer.cc 232 int mapped_count = NewArgumentsElementsMappedCountOf(node->op()); local
242 // value of {mapped_count} from the number of formal parameters.
244 mapped_count != 0,
245 mapped_count == FormalParameterCountOf(arguments_length->op()));
248 : (mapped_count == 0)
289 if (mapped_count == 0) {
js-create-lowering.cc 1497 int mapped_count = Min(argument_count, parameter_count); local
1551 int mapped_count = parameter_count; local
    [all...]
simplified-operator.cc     [all...]
simplified-operator.h 739 const Operator* NewArgumentsElements(int mapped_count);
effect-control-linearizer.cc 2717 int mapped_count = NewArgumentsElementsMappedCountOf(node->op()); local
    [all...]
  /external/v8/src/builtins/
builtins-arguments-gen.cc 284 Node* mapped_count = local
288 IntPtrOrSmiAdd(mapped_count, IntPtrOrSmiConstant(2, mode), mode);
316 ElementOffsetFromIndex(mapped_count, PACKED_ELEMENTS, mode,
333 // We need to fill in mapped_count slots. They index the context,
338 // MIN_CONTEXT_SLOTS+argument_count-mapped_count
345 mapped_count, mode));
builtins-internal-gen.cc 80 TNode<IntPtrT> mapped_count = local
107 // the mapped elements (i.e. the first {mapped_count}) with the hole, but
109 TNode<IntPtrT> number_of_holes = IntPtrMin(mapped_count, length);
170 SmiFromIntPtr(mapped_count));
    [all...]
  /external/v8/src/runtime/
runtime-scopes.cc 406 int mapped_count = Min(argument_count, parameter_count); local
408 isolate->factory()->NewFixedArray(mapped_count + 2, NOT_TENURED);
424 while (index >= mapped_count) {
435 for (int i = 0; i < mapped_count; i++) {
445 if (parameter >= mapped_count) continue;
587 CONVERT_SMI_ARG_CHECKED(mapped_count, 2);
593 int number_of_holes = Min(mapped_count, length);
    [all...]

Completed in 327 milliseconds