Home
last modified time | relevance | path

Searched refs:GetBytecodeArray (Results 1 – 25 of 40) sorted by relevance

12

/third_party/node/deps/v8/src/execution/
Dtiering-manager.cc157 handle(frame->GetBytecodeArray(), frame->isolate())); in HaveCachedOSRCodeForCurrentBytecodeOffset()
197 return function.shared().GetBytecodeArray(isolate).length() * in InterruptBudgetFor()
211 return function.shared().GetBytecodeArray(isolate).length() <= in SmallEnoughForOSR()
226 BytecodeArray bytecode = shared.GetBytecodeArray(isolate); in TrySetOsrUrgency()
240 int old_urgency = function.shared().GetBytecodeArray(isolate).osr_urgency(); in TryIncrementOsrUrgency()
252 int old_urgency = function.shared().GetBytecodeArray(isolate).osr_urgency(); in TryRequestOsrForCachedOsrCode()
340 BytecodeArray bytecode = function.shared().GetBytecodeArray(isolate_); in ShouldOptimize()
Dframes.cc1438 abstract_code = AbstractCode::cast(baseline_frame->GetBytecodeArray()); in PrintTop()
1590 .GetBytecodeArray(isolate()) in AreSourcePositionsAvailable()
1944 AbstractCode code = AbstractCode::cast(GetBytecodeArray()); in position()
1951 HandlerTable table(GetBytecodeArray()); in LookupExceptionHandlerInTable()
1955 BytecodeArray UnoptimizedFrame::GetBytecodeArray() const { in GetBytecodeArray() function in v8::internal::UnoptimizedFrame
1973 Handle<AbstractCode> abstract_code(AbstractCode::cast(GetBytecodeArray()), in Summarize()
2022 GetBytecodeArray()); in GetBytecodeOffset()
2027 GetBytecodeArray()); in GetPCForBytecodeOffset()
2310 BytecodeArray bytecodes = iframe->GetBytecodeArray(); in Print()
/third_party/node/deps/v8/src/objects/
Dcode-inl.h54 return GetBytecodeArray().length(); in OBJECT_CONSTRUCTORS_IMPL()
62 return GetBytecodeArray().length(); in InstructionSize()
71 return GetBytecodeArray().SourcePositionTable(); in SourcePositionTableInternal()
79 return GetBytecodeArray().SourcePositionTable(); in SourcePositionTable()
87 return GetBytecodeArray().SizeIncludingMetadata(); in SizeIncludingMetadata()
95 return GetBytecodeArray().GetFirstBytecodeAddress(); in raw_instruction_start()
103 return GetBytecodeArray().GetFirstBytecodeAddress(); in InstructionStart()
111 return GetBytecodeArray().GetFirstBytecodeAddress() + in raw_instruction_end()
112 GetBytecodeArray().length(); in raw_instruction_end()
120 return GetBytecodeArray().GetFirstBytecodeAddress() + in InstructionEnd()
[all …]
Dshared-function-info-inl.h201 return AbstractCode::cast(GetBytecodeArray(isolate)); in abstract_code()
220 GetBytecodeArray(isolate).HasSourcePositionTable(); in AreSourcePositionsAvailable()
246 if (GetBytecodeArray(isolate).length() > FLAG_max_inlined_bytecode_size) { in GetInlineability()
518 retain_code_ = handle(shared.GetBytecodeArray(isolate), isolate); in IsCompiledScope()
534 isolate->heap()->NewPersistentHandle(shared.GetBytecodeArray(isolate)); in IsCompiledScope()
548 !GetBytecodeArray(isolate).HasSourcePositionTable(); in CanCollectSourcePosition()
566 BytecodeArray SharedFunctionInfo::GetBytecodeArray(IsolateT* isolate) const { in GetBytecodeArray() function
Djs-function-inl.h64 return AbstractCode::cast(shared().GetBytecodeArray(isolate)); in abstract_code()
Dshared-function-info.cc727 DCHECK(shared_info->GetBytecodeArray(isolate).HasSourcePositionTable()); in EnsureBytecodeArrayAvailable()
744 shared->GetBytecodeArray(isolate), isolate); in InstallDebugBytecode()
Dshared-function-info.h333 inline BytecodeArray GetBytecodeArray(IsolateT* isolate) const;
Dcompilation-cache-table.cc392 if (info.HasBytecodeArray() && info.GetBytecodeArray(isolate).IsOld()) { in Age()
Dcode.h839 inline BytecodeArray GetBytecodeArray();
/third_party/node/deps/v8/src/runtime/
Druntime-generator.cc59 function->shared().GetBytecodeArray(isolate).register_count(); in RUNTIME_FUNCTION()
144 HandlerTable handler_table(shared.GetBytecodeArray(isolate)); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/baseline/
Dbaseline-batch-compiler.cc40 bytecode_(handles->NewHandle(sfi.GetBytecodeArray(isolate))) { in BaselineCompilerTask()
73 shared_function_info_->GetBytecodeArray(isolate) in Install()
264 shared->GetBytecodeArray(isolate_)); in EnqueueFunction()
Dbaseline.cc62 Handle<BytecodeArray> bytecode(shared->GetBytecodeArray(isolate), isolate); in GenerateBaselineCode()
/third_party/node/deps/v8/src/compiler/
Djs-inlining-heuristic.cc46 shared.GetBytecodeArray(); in CanConsiderForInlining()
101 out.bytecode[0] = function.shared().GetBytecodeArray(); in CollectFunctions()
122 out.bytecode[n] = function.shared().GetBytecodeArray(); in CollectFunctions()
133 out.bytecode[0] = out.shared_info->GetBytecodeArray(); in CollectFunctions()
144 out.bytecode[0] = out.shared_info->GetBytecodeArray(); in CollectFunctions()
Dheap-refs.cc1558 BytecodeArrayRef SharedFunctionInfoRef::GetBytecodeArray() const { in HEAP_ACCESSOR_C()
1562 bytecode_array = object()->GetBytecodeArray(broker()->local_isolate()); in HEAP_ACCESSOR_C()
1564 bytecode_array = object()->GetBytecodeArray(broker()->isolate()); in HEAP_ACCESSOR_C()
Djs-inlining.cc561 BytecodeArrayRef bytecode_array = shared_info->GetBytecodeArray(); in ReduceJSCall()
Dheap-refs.h896 BytecodeArrayRef GetBytecodeArray() const;
/third_party/node/deps/v8/src/maglev/
Dmaglev-compilation-unit.cc20 bytecode_(shared_function_info_.GetBytecodeArray()), in MaglevCompilationUnit()
/third_party/node/deps/v8/src/debug/
Ddebug-frames.cc120 : shared_.GetBytecodeArray(isolate); in VisitThread()
Dliveedit.cc970 isolate, handle(sfi->GetBytecodeArray(isolate), isolate), diffs); in UpdatePositions()
1089 FixedArray constants = sfi->GetBytecodeArray(isolate).constant_pool(); in PatchScript()
1135 FixedArray constants = sfi.GetBytecodeArray(isolate).constant_pool(); in PatchScript()
1184 FixedArray constants = sfi.GetBytecodeArray(isolate).constant_pool(); in PatchScript()
/third_party/node/deps/v8/src/codegen/
Dpending-optimization-table.cc46 handle(shared_info->GetBytecodeArray(isolate), isolate), in PreparedForOptimization()
Doptimized-compilation-info.cc36 bytecode_array_ = handle(shared->GetBytecodeArray(isolate), isolate); in OptimizedCompilationInfo()
Dcompiler.cc394 ? shared_info->GetBytecodeArray(isolate).SizeIncludingMetadata() in RecordUnoptimizedCompilationStats()
398 shared_info->GetBytecodeArray(isolate).SizeIncludingMetadata(); in RecordUnoptimizedCompilationStats()
417 handle(AbstractCode::cast(shared->GetBytecodeArray(isolate)), isolate); in RecordUnoptimizedFunctionCompilation()
604 Handle<BytecodeArray> bytecode_array(shared_info->GetBytecodeArray(isolate), in InstallInterpreterTrampolineCopy()
1880 DCHECK(!shared_info->GetBytecodeArray(isolate).HasSourcePositionTable()); in CollectSourcePositions()
1890 handle(shared_info->GetBytecodeArray(isolate), isolate); in CollectSourcePositions()
2169 shared->GetBytecodeArray(isolate).RequestOsrAtNextOpportunity(); in Compile()
3408 Handle<BytecodeArray> bytecode(frame->GetBytecodeArray(), isolate); in Compile()
3478 shared->GetBytecodeArray(isolate).set_osr_install_target(osr_offset); in Compile()
/third_party/node/deps/v8/src/deoptimizer/
Ddeoptimizer.cc647 translated_frame->raw_shared_info().GetBytecodeArray(isolate)); in LookupCatchHandler()
977 : shared.GetBytecodeArray(isolate()); in DoComputeUnoptimizedFrame()
2038 return AbstractCode::cast(shared.GetBytecodeArray(isolate)) in ComputeSourcePositionFromBytecodeArray()
/third_party/node/deps/v8/src/profiler/
Dprofiler-listener.cc134 Handle<BytecodeArray> bytecodes(shared->GetBytecodeArray(isolate_), in CodeCreateEvent()
/third_party/node/deps/v8/src/snapshot/
Dcode-serializer.cc302 interpreter_data->set_bytecode_array(info->GetBytecodeArray(isolate)); in CreateInterpreterDataForDeserializedCode()

12