Home | History | Annotate | Download | only in src

Lines Matching full:share

1332     // Generator prototypes can share maps since they don't have "constructor"
1749 // TODO(rossberg): Once we optimize proxies, think about a scheme to share
1768 // TODO(rossberg): Once we optimize proxies, think about a scheme to share
1957 Handle<SharedFunctionInfo> share = New<SharedFunctionInfo>(map,
1961 share->set_name(*name);
1966 share->set_code(*code);
1967 share->set_optimized_code_map(Smi::FromInt(0));
1968 share->set_scope_info(ScopeInfo::Empty(isolate()));
1971 share->set_construct_stub(construct_stub);
1972 share->set_instance_class_name(*Object_string());
1973 share->set_function_data(*undefined_value(), SKIP_WRITE_BARRIER);
1974 share->set_script(*undefined_value(), SKIP_WRITE_BARRIER);
1975 share->set_debug_info(*undefined_value(), SKIP_WRITE_BARRIER);
1976 share->set_inferred_name(*empty_string(), SKIP_WRITE_BARRIER);
1978 share->set_feedback_vector(*feedback_vector, SKIP_WRITE_BARRIER);
1979 share->set_profiler_ticks(0);
1980 share->set_ast_node_count(0);
1981 share->set_counters(0);
1984 share->set_length(0);
1985 share->set_formal_parameter_count(0);
1986 share->set_expected_nof_properties(0);
1987 share->set_num_literals(0);
1988 share->set_start_position_and_type(0);
1989 share->set_end_position(0);
1990 share->set_function_token_position(0);
1992 share->set_compiler_hints(0);
1993 share->set_opt_count_and_bailout_reason(0);
1995 return share;