/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-array-writer.cc | 46 int bytecode_size = static_cast<int>(bytecodes()->size()); in ToBytecodeArray() 51 bytecode_size, &bytecodes()->front(), frame_size, parameter_count, in ToBytecodeArray() 87 int bytecode_size = static_cast<int>(bytecodes()->size()); in CheckBytecodeMatches() 88 const byte* bytecode_ptr = &bytecodes()->front(); in CheckBytecodeMatches() 157 size_t current_offset = bytecodes()->size(); in BindLabel() 165 size_t current_offset = bytecodes()->size(); in BindLoopHeader() 176 size_t current_offset = bytecodes()->size(); in BindJumpTableEntry() 189 size_t current_offset = bytecodes()->size(); in BindHandlerTarget() 196 size_t current_offset = bytecodes()->size(); in BindTryRegionStart() 208 size_t current_offset = bytecodes() in BindTryRegionEnd() [all...] |
H A D | interpreter.cc | 10 #include "builtins-generated/bytecodes-builtins-list.h" 21 #include "src/interpreter/bytecodes.h" 271 Handle<BytecodeArray> bytecodes = compilation_info_.bytecode_array(); in DoFinalizeJobImpl() local 272 if (bytecodes.is_null()) { in DoFinalizeJobImpl() 273 bytecodes = generator()->FinalizeBytecode( in DoFinalizeJobImpl() 278 compilation_info()->SetBytecodeArray(bytecodes); in DoFinalizeJobImpl() 285 bytecodes->set_source_position_table(*source_position_table, kReleaseStore); in DoFinalizeJobImpl() 294 os << "Bytecode length: " << bytecodes->length() << std::endl; in DoFinalizeJobImpl() 295 bytecodes->Disassemble(os); in DoFinalizeJobImpl() 301 isolate, handle(Script::cast(shared_info->script()), isolate), bytecodes); in DoFinalizeJobImpl() [all...] |
H A D | bytecode-array-writer.h | 11 #include "src/interpreter/bytecodes.h" 110 ZoneVector<uint8_t>* bytecodes() { return &bytecodes_; } in bytecodes() function in v8::internal::interpreter::final
|
/third_party/node/deps/v8/src/baseline/ |
H A D | bytecode-offset-iterator.cc | 14 Handle<BytecodeArray> bytecodes) in BytecodeOffsetIterator() 19 bytecode_iterator_(bytecodes), in BytecodeOffsetIterator() 28 BytecodeArray bytecodes) in BytecodeOffsetIterator() 32 bytecode_handle_storage_(bytecodes), in BytecodeOffsetIterator() 13 BytecodeOffsetIterator(Handle<ByteArray> mapping_table, Handle<BytecodeArray> bytecodes) BytecodeOffsetIterator() argument 27 BytecodeOffsetIterator(ByteArray mapping_table, BytecodeArray bytecodes) BytecodeOffsetIterator() argument
|
H A D | bytecode-offset-iterator.h | 24 Handle<BytecodeArray> bytecodes); 27 BytecodeArray bytecodes);
|
H A D | baseline-compiler.cc | 255 Handle<BytecodeArray> bytecodes) { in AllocateBuffer() 259 estimated_size = BaselineCompiler::EstimateInstructionSize(*bytecodes); in AllocateBuffer() 254 AllocateBuffer( Handle<BytecodeArray> bytecodes) AllocateBuffer() argument
|
/third_party/node/deps/v8/src/objects/ |
H A D | code-inl.h | 545 BytecodeArray bytecodes) { in GetBytecodeOffsetForBaselinePC() 551 ByteArray::cast(bytecode_offset_table()), bytecodes); in GetBytecodeOffsetForBaselinePC() 559 BytecodeArray bytecodes) { in GetBaselinePCForBytecodeOffset() 563 ByteArray::cast(bytecode_offset_table()), bytecodes); in GetBaselinePCForBytecodeOffset() 576 BytecodeArray bytecodes) { in GetBaselineStartPCForBytecodeOffset() 578 bytecodes); in GetBaselineStartPCForBytecodeOffset() 582 BytecodeArray bytecodes) { in GetBaselineEndPCForBytecodeOffset() 584 bytecodes); in GetBaselineEndPCForBytecodeOffset() 588 BytecodeArray bytecodes) { in GetBaselinePCForNextExecutedBytecode() 592 ByteArray::cast(bytecode_offset_table()), bytecodes); in GetBaselinePCForNextExecutedBytecode() 544 GetBytecodeOffsetForBaselinePC(Address baseline_pc, BytecodeArray bytecodes) GetBytecodeOffsetForBaselinePC() argument 557 GetBaselinePCForBytecodeOffset(int bytecode_offset, BytecodeToPCPosition position, BytecodeArray bytecodes) GetBaselinePCForBytecodeOffset() argument 575 GetBaselineStartPCForBytecodeOffset(int bytecode_offset, BytecodeArray bytecodes) GetBaselineStartPCForBytecodeOffset() argument 581 GetBaselineEndPCForBytecodeOffset(int bytecode_offset, BytecodeArray bytecodes) GetBaselineEndPCForBytecodeOffset() argument 587 GetBaselinePCForNextExecutedBytecode(int bytecode_offset, BytecodeArray bytecodes) GetBaselinePCForNextExecutedBytecode() argument [all...] |
H A D | code.h | 549 BytecodeArray bytecodes); 552 BytecodeArray bytecodes); 557 // For other bytecodes this is equivalent to 560 int bytecode_offset, BytecodeArray bytecodes); 563 BytecodeArray bytecodes); 726 BytecodeArray bytecodes); 951 // BytecodeArray represents a sequence of interpreter bytecodes.
|
/third_party/node/deps/v8/src/profiler/ |
H A D | profiler-listener.cc | 134 Handle<BytecodeArray> bytecodes(shared->GetBytecodeArray(isolate_), in CodeCreateEvent() 139 bytecode_offsets, bytecodes); in CodeCreateEvent()
|
/third_party/node/deps/v8/src/execution/ |
H A D | frames.cc | 2310 BytecodeArray bytecodes = iframe->GetBytecodeArray(); in Print() local 2312 int source_pos = AbstractCode::cast(bytecodes).SourcePosition(offset); in Print() 2315 reinterpret_cast<void*>(bytecodes.ptr()), offset); in Print()
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8.cc | 2130 i::Handle<i::BytecodeArray> bytecodes = in TestVerifySourcePositions() local 2132 i::interpreter::BytecodeArrayIterator bytecode_iterator(bytecodes); in TestVerifySourcePositions() 2142 bytecode_offsets, bytecodes); in TestVerifySourcePositions() 2161 bytecodes); in TestVerifySourcePositions()
|