Lines Matching refs:offset_table
924 Handle<ByteArray> offset_table( in GetDecodedAsmJsOffsetTable() local
930 int table_type = offset_table->get(offset_table->length() - 1); in GetDecodedAsmJsOffsetTable()
932 if (table_type == Decoded) return offset_table; in GetDecodedAsmJsOffsetTable()
937 const byte* bytes_start = offset_table->GetDataStartAddress(); in GetDecodedAsmJsOffsetTable()
938 const byte* bytes_end = bytes_start + offset_table->length() - 1; in GetDecodedAsmJsOffsetTable()
992 Handle<ByteArray> offset_table = in GetAsmJsSourcePosition() local
1002 int right = offset_table->length() / kIntSize / kOTESize; // exclusive in GetAsmJsSourcePosition()
1006 int mid_entry = offset_table->get_int(kOTESize * mid); in GetAsmJsSourcePosition()
1016 DCHECK_EQ(total_offset, offset_table->get_int(kOTESize * left)); in GetAsmJsSourcePosition()
1018 return offset_table->get_int(kOTESize * left + idx); in GetAsmJsSourcePosition()
1034 v8::debug::WasmDisassembly::OffsetTable offset_table; in DisassembleFunction() local
1037 disassembly_os, &offset_table); in DisassembleFunction()
1039 return {disassembly_os.str(), std::move(offset_table)}; in DisassembleFunction()