/external/v8/src/ |
D | runtime-profiler.cc | 137 int level = shared->GetBytecodeArray()->osr_loop_nesting_level(); in AttemptOnStackReplacement() 138 shared->GetBytecodeArray()->set_osr_loop_nesting_level( in AttemptOnStackReplacement() 187 if (shared->GetBytecodeArray()->length() <= allowance) { in MaybeOSR() 200 if (shared->GetBytecodeArray()->length() > kMaxBytecodeSizeForOpt) { in ShouldOptimize() 206 (shared->GetBytecodeArray()->length() / kBytecodeSizeAllowancePerTick); in ShouldOptimize() 209 } else if (!any_ic_changed_ && shared->GetBytecodeArray()->length() < in ShouldOptimize() 223 shared->GetBytecodeArray()->length(), kMaxBytecodeSizeForEarlyOpt); in ShouldOptimize()
|
D | frames.cc | 1650 AbstractCode* code = AbstractCode::cast(GetBytecodeArray()); in position() 1657 HandlerTable table(function()->shared()->GetBytecodeArray()); in LookupExceptionHandlerInTable() 1690 BytecodeArray* InterpretedFrame::GetBytecodeArray() const { in GetBytecodeArray() function in v8::internal::InterpretedFrame 1726 AbstractCode::cast(function()->shared()->GetBytecodeArray()); in Summarize() 1989 BytecodeArray* bytecodes = iframe->GetBytecodeArray(); in Print()
|
D | isolate.cc | 716 reinterpret_cast<Address>(iframe->GetBytecodeArray()) - kHeapObjectTag + in GetAbstractPC() 1398 js_frame->GetBytecodeArray()->register_count()); in Throw() 1499 HandlerTable table(code->GetBytecodeArray()); in Throw() 1654 code = handle(AbstractCode::cast(interpreted_frame->GetBytecodeArray()), in Throw()
|
D | frames.h | 881 BytecodeArray* GetBytecodeArray() const;
|
D | deoptimizer.cc | 667 translated_frame->raw_shared_info()->GetBytecodeArray()); in LookupCatchHandler() 968 : shared->GetBytecodeArray(); in DoComputeInterpretedFrame() 2305 return AbstractCode::cast(shared->GetBytecodeArray()) in ComputeSourcePositionFromBytecodeArray()
|
D | objects-printer.cc | 1367 os << "\n - bytecode: " << shared()->GetBytecodeArray(); in JSFunctionPrint()
|
D | objects-inl.h | 2347 return AbstractCode::cast(shared()->GetBytecodeArray()); in abstract_code()
|
D | objects.cc | 14486 handle(abstract_code->GetBytecodeArray(), abstract_code->GetIsolate()), in SetStackFrameCache() 14507 DropStackFrameCacheCommon(GetBytecodeArray()); in DropStackFrameCache() 17723 if (info->IsInterpreted() && info->GetBytecodeArray()->IsOld()) { in Age() 18760 AbstractCode::cast(function()->shared()->GetBytecodeArray()); in source_position()
|
/external/v8/src/objects/ |
D | code-inl.h | 34 return GetBytecodeArray()->length(); in CAST_ACCESSOR() 42 return GetBytecodeArray()->length(); in InstructionSize() 50 return GetBytecodeArray()->SourcePositionTable(); in source_position_table() 59 maybe_table = GetBytecodeArray()->source_position_table(); in stack_frame_cache() 72 return GetBytecodeArray()->SizeIncludingMetadata(); in SizeIncludingMetadata() 79 return GetBytecodeArray()->BytecodeArraySize(); in ExecutableSize() 87 return GetBytecodeArray()->GetFirstBytecodeAddress(); in raw_instruction_start() 95 return GetBytecodeArray()->GetFirstBytecodeAddress(); in InstructionStart() 103 return GetBytecodeArray()->GetFirstBytecodeAddress() + in raw_instruction_end() 104 GetBytecodeArray()->length(); in raw_instruction_end() [all …]
|
D | shared-function-info-inl.h | 137 return AbstractCode::cast(GetBytecodeArray()); in abstract_code() 453 BytecodeArray* SharedFunctionInfo::GetBytecodeArray() const { in GetBytecodeArray() function
|
D | shared-function-info.h | 304 inline BytecodeArray* GetBytecodeArray() const;
|
D | code.h | 570 inline BytecodeArray* GetBytecodeArray();
|
/external/v8/src/compiler/ |
D | osr.cc | 19 info->shared_info()->GetBytecodeArray()->parameter_count()), in OsrHelper() 22 info->shared_info()->GetBytecodeArray()->register_count()) + in OsrHelper()
|
D | js-inlining-heuristic.cc | 65 if (shared->GetBytecodeArray()->length() > FLAG_max_inlined_bytecode_size) { in CanInlineFunction() 75 if (shared->HasBytecodeArray() && shared->GetBytecodeArray()->length() <= in IsSmallInlineFunction() 135 candidate.total_size += shared->GetBytecodeArray()->length(); in Reduce() 613 cumulative_count_ += shared->GetBytecodeArray()->length(); in InlineCandidate() 682 cumulative_count_ += function->shared()->GetBytecodeArray()->length(); in InlineCandidate() 723 PrintF(" - size:%d, name: %s\n", shared->GetBytecodeArray()->length(), in PrintCandidates()
|
D | js-heap-broker.cc | 435 BytecodeArrayData* const GetBytecodeArray; // Can be nullptr. member in v8::internal::compiler::SharedFunctionInfoData 446 GetBytecodeArray( in SharedFunctionInfoData() 448 ? GET_OR_CREATE(GetBytecodeArray)->AsBytecodeArray() in SharedFunctionInfoData() 455 DCHECK_EQ(HasBytecodeArray, GetBytecodeArray != nullptr); in SharedFunctionInfoData() 1055 BIMODAL_ACCESSOR(SharedFunctionInfo, BytecodeArray, GetBytecodeArray) in BIMODAL_ACCESSOR()
|
D | js-heap-broker.h | 400 BytecodeArrayRef GetBytecodeArray() const;
|
D | js-create-lowering.cc | 430 shared.GetBytecodeArray().register_count(); in ReduceJSCreateGeneratorObject()
|
D | pipeline.cc | 881 if (compilation_info()->shared_info()->GetBytecodeArray()->length() > in PrepareJobImpl()
|
D | bytecode-graph-builder.cc | 527 handle(shared_info->GetBytecodeArray(), jsgraph->isolate())), in BytecodeGraphBuilder()
|
/external/v8/src/runtime/ |
D | runtime-generator.cc | 25 function->shared()->GetBytecodeArray()->register_count(); in RUNTIME_FUNCTION() 104 HandlerTable handler_table(shared->GetBytecodeArray()); in RUNTIME_FUNCTION()
|
D | runtime-compiler.cc | 208 Handle<BytecodeArray> bytecode(iframe->GetBytecodeArray(), iframe->isolate()); in DetermineEntryAndDisarmOSRForInterpreter()
|
D | runtime-debug.cc | 59 BytecodeArray* bytecode_array = shared->GetBytecodeArray(); in RUNTIME_FUNCTION_RETURN_PAIR()
|
/external/v8/src/debug/ |
D | liveedit.cc | 1039 isolate, handle(sfi->GetBytecodeArray(), isolate), diffs); in UpdatePositions() 1143 FixedArray* constants = sfi->GetBytecodeArray()->constant_pool(); in PatchScript() 1183 FixedArray* constants = new_sfi->GetBytecodeArray()->constant_pool(); in PatchScript() 1235 FixedArray* constants = sfi->GetBytecodeArray()->constant_pool(); in PatchScript()
|
D | debug.cc | 926 HandlerTable table(code->GetBytecodeArray()); in PrepareStepOnThrow() 1202 handle(shared->GetBytecodeArray(), isolate_); in PrepareFunctionForDebugExecution() 2208 BytecodeArray* bytecode_array = shared->GetBytecodeArray(); in PerformSideEffectCheckAtBytecode()
|
D | debug-evaluate.cc | 878 Handle<BytecodeArray> bytecode_array(info->GetBytecodeArray(), isolate); in FunctionGetSideEffectState()
|