HomeSort by relevance Sort by last modified time
    Searched refs:shared_info (Results 1 - 25 of 48) sorted by null

1 2

  /external/v8/src/compiler/
frame-states.cc 72 Handle<SharedFunctionInfo> shared_info; local
73 if (info.shared_info().ToHandle(&shared_info)) {
74 os << ", " << Brief(*shared_info);
frame-states.h 96 Handle<SharedFunctionInfo> shared_info,
101 shared_info_(shared_info),
106 Handle<SharedFunctionInfo> shared_info() const { return shared_info_; } function in class:v8::internal::compiler::FrameStateFunctionInfo
140 MaybeHandle<SharedFunctionInfo> shared_info() const { function in class:v8::internal::compiler::final
142 : info_->shared_info();
js-inlining.cc 302 info_->shared_info()->DebugName()->ToCString().get());
311 info_->shared_info()->DebugName()->ToCString().get());
321 info_->shared_info()->DebugName()->ToCString().get());
329 info_->shared_info()->DebugName()->ToCString().get());
345 info_->shared_info()->DebugName()->ToCString().get());
356 Handle<SharedFunctionInfo> shared_info; local
357 if (info.shared_info().ToHandle(&shared_info) &&
358 *shared_info == function->shared()) {
361 info_->shared_info()->DebugName()->ToCString().get())
    [all...]
pipeline-statistics.cc 54 source_size_ = static_cast<size_t>(info->shared_info()->SourceSize());
56 info->shared_info()->DebugName()->ToCString();
basic-block-instrumentor.cc 58 if (info->has_shared_info() && info->shared_info()->name()->IsString()) {
60 String::cast(info->shared_info()->name())->PrintUC16(os);
code-generator.cc 89 if (!inlined.shared_info.is_identical_to(info->shared_info())) {
90 DefineDeoptimizationLiteral(inlined.shared_info);
98 if (!inlined.shared_info.is_identical_to(info->shared_info())) {
375 data->SetSharedFunctionInfo(*info->shared_info());
567 Handle<SharedFunctionInfo> shared_info; local
568 if (!descriptor->shared_info().ToHandle(&shared_info)) {
572 shared_info = info()->shared_info()
    [all...]
js-inlining-heuristic.cc 65 if (info_->shared_info()->asm_function()) return NoChange();
common-operator.h 186 Handle<SharedFunctionInfo> shared_info,
js-operator.h 417 CreateClosureParameters(Handle<SharedFunctionInfo> shared_info,
419 : shared_info_(shared_info), pretenure_(pretenure) {}
421 Handle<SharedFunctionInfo> shared_info() const { return shared_info_; } function in class:v8::internal::compiler::final
515 const Operator* CreateClosure(Handle<SharedFunctionInfo> shared_info,
js-operator.cc 433 lhs.shared_info().location() == rhs.shared_info().location();
444 return base::hash_combine(p.pretenure(), p.shared_info().location());
449 return os << p.pretenure() << ", " << Brief(*p.shared_info());
    [all...]
pipeline.cc 383 start_position_(info->shared_info()->start_position()) {}
498 Handle<Code> code(data->info()->shared_info()->code(), data->isolate());
512 if (data->info()->shared_info()->HasBytecodeArray()) {
617 if (data->info()->shared_info()->HasBytecodeArray()) {
    [all...]
  /external/v8/src/
compiler.cc 74 PARSE_INFO_GETTER(Handle<SharedFunctionInfo>, shared_info)
103 return parse_info_ && !parse_info_->shared_info().is_null();
140 if (shared_info()->is_compiled()) {
144 shared_info()->feedback_vector(), parse_info->isolate());
146 if (shared_info()->never_compiled()) MarkAsFirstCompile();
177 opt_count_(has_shared_info() ? shared_info()->opt_count() : 0),
233 (!has_shared_info() || !shared_info()->optimization_disabled());
376 if (info()->shared_info()->HasDebugInfo()) {
397 bool should_recompile = !info()->shared_info()->has_deoptimization_support();
411 DCHECK(info()->shared_info()->has_deoptimization_support())
919 Handle<SharedFunctionInfo> shared_info = parse_info->shared_info(); local
1371 Handle<SharedFunctionInfo> shared_info; local
    [all...]
deoptimizer.cc 2954 SharedFunctionInfo* shared_info = local
2970 SharedFunctionInfo* shared_info = local
2987 SharedFunctionInfo* shared_info = local
3000 SharedFunctionInfo* shared_info = local
3013 SharedFunctionInfo* shared_info = local
3025 SharedFunctionInfo* shared_info = local
    [all...]
deoptimizer.h 128 Handle<SharedFunctionInfo> shared_info() const { return shared_info_; } function in class:v8::internal::TranslatedFrame
175 SharedFunctionInfo* shared_info, int height);
177 SharedFunctionInfo* shared_info,
180 SharedFunctionInfo* shared_info);
181 static TranslatedFrame ArgumentsAdaptorFrame(SharedFunctionInfo* shared_info,
183 static TranslatedFrame ConstructStubFrame(SharedFunctionInfo* shared_info,
195 SharedFunctionInfo* shared_info = nullptr, int height = 0)
198 raw_shared_info_(shared_info),
    [all...]
compiler.h 149 Handle<SharedFunctionInfo> shared_info() const;
402 Handle<SharedFunctionInfo> shared_info; member in struct:v8::internal::CompilationInfo::InlinedFunctionHolder
411 : shared_info(inlined_shared_info),
435 shared_info()->DisableOptimization(bailout_reason());
510 // A copy of shared_info()->opt_count() to avoid handle deref
code-stubs-hydrogen.cc 107 void BuildInstallCode(HValue* js_function, HValue* shared_info);
113 HValue* shared_info,
2045 HValue* shared_info = GetParameter(0); local
    [all...]
  /external/v8/src/runtime/
runtime-liveedit.cc 110 CONVERT_ARG_HANDLE_CHECKED(JSArray, shared_info, 0);
111 RUNTIME_ASSERT(SharedInfoWrapper::IsInstance(shared_info));
113 LiveEdit::FunctionSourceUpdated(shared_info);
124 CONVERT_ARG_HANDLE_CHECKED(JSArray, shared_info, 1);
125 RUNTIME_ASSERT(SharedInfoWrapper::IsInstance(shared_info));
127 LiveEdit::ReplaceFunctionCode(new_compile_info, shared_info);
  /external/v8/src/debug/
liveedit.cc 976 Handle<SharedFunctionInfo> shared_info,
979 int old_literal_count = shared_info->num_literals();
985 IterateJSFunctions(shared_info, &visitor);
991 CollectJSFunctions(shared_info, isolate);
992 Handle<TypeFeedbackVector> vector(shared_info->feedback_vector());
1001 shared_info->set_num_literals(new_literal_count);
1007 // provided shared_info.
1009 static void IterateJSFunctions(Handle<SharedFunctionInfo> shared_info,
1011 HeapIterator iterator(shared_info->GetHeap());
1120 Handle<SharedFunctionInfo> shared_info = shared_info_wrapper.GetInfo(); local
1152 Handle<SharedFunctionInfo> shared_info = shared_info_wrapper.GetInfo(); local
1161 Handle<SharedFunctionInfo> shared_info = local
    [all...]
debug-scopes.cc 35 Handle<SharedFunctionInfo> shared_info(function->shared());
36 Handle<ScopeInfo> scope_info(shared_info->scope_info());
37 if (shared_info->script() == isolate->heap()->undefined_value()) {
52 if (!ignore_nested_scopes && shared_info->HasDebugInfo()) {
59 Handle<DebugInfo> debug_info(shared_info->GetDebugInfo());
91 Handle<Script> script(Script::cast(shared_info->script()));
  /external/v8/src/heap/
mark-compact-inl.h 85 void CodeFlusher::AddCandidate(SharedFunctionInfo* shared_info) {
86 if (GetNextCandidate(shared_info) == NULL) {
87 SetNextCandidate(shared_info, shared_function_info_candidates_head_);
88 shared_function_info_candidates_head_ = shared_info;
objects-visiting-inl.h 583 SharedFunctionInfo* shared_info = function->shared(); local
593 if (function->code() != shared_info->code()) {
602 return IsFlushable(heap, shared_info);
608 Heap* heap, SharedFunctionInfo* shared_info) {
611 MarkBit code_mark = Marking::MarkBitFrom(shared_info->code());
618 if (!(shared_info->is_compiled() && HasSourceCode(heap, shared_info))) {
623 Object* function_data = shared_info->function_data();
629 if (shared_info->code()->kind() != Code::FUNCTION) {
634 if (!shared_info->allows_lazy_compilation())
    [all...]
mark-compact.h 279 inline void AddCandidate(SharedFunctionInfo* shared_info);
282 void EvictCandidate(SharedFunctionInfo* shared_info);
  /external/v8/src/crankshaft/
lithium-codegen.cc 214 : info()->shared_info());
227 : info()->shared_info());
242 : info()->shared_info());
257 : info()->shared_info());
270 : info()->shared_info());
301 data->SetSharedFunctionInfo(*info_->shared_info());
  /external/v8/src/parsing/
parser.cc 966 Handle<SharedFunctionInfo> shared_info = info->shared_info(); local
996 Handle<SharedFunctionInfo> shared_info = info->shared_info(); local
    [all...]
  /external/v8/src/interpreter/
bytecode-array-builder.h 130 BytecodeArrayBuilder& CreateClosure(Handle<SharedFunctionInfo> shared_info,

Completed in 314 milliseconds

1 2