#include "src/codegen/source-position-table.h"
#include "src/base/export-template.h"
#include "src/base/logging.h"
#include "src/common/assert-scope.h"
#include "src/heap/local-factory-inl.h"
#include "src/objects/objects-inl.h"
#include "src/objects/objects.h"
namespace v8 {
namespace internal {
namespace {
using MoreBit = base::BitField8<bool, 7, 1>;
using ValueBits = base::BitField8<unsigned, 0, 7>;
void AddAndSetEntry(PositionTableEntry* value,
const PositionTableEntry& other) {
value->code_offset += other.code_offset;
DCHECK_IMPLIES(value->code_offset != kFunctionEntryBytecodeOffset,
value->code_offset >= 0);
value->source_position += other.source_position;
DCHECK_LE(0, value->source_position);
value->is_statement = other.is_statement;
value->is_breakable = other.is_breakable;
}
void SubtractFromEntry(PositionTableEntry* value,
const PositionTableEntry& other) {
value->code_offset -= other.code_offset;
value->source_position -= other.source_position;
}
template <typename T>
inline void EncodeUInt(ZoneVector<uint8_t>* bytes, T value) {
bool more;
do {
more = value > ValueBits::kMax;
uint8_t current =
MoreBit::encode(more) | ValueBits::encode(value & ValueBits::kMask);
bytes->push_back(current);
value >>= ValueBits::kSize;
} while (more);
}
template <typename T>
inline void EncodeInt(ZoneVector<uint8_t>* bytes, T value) {
using unsigned_type = std::make_unsigned_t<T>;
static constexpr int kShift = sizeof(T) * kBitsPerByte - 1;
value = ((static_cast<unsigned_type>(value) << 1) ^ (value >> kShift));
DCHECK_GE(value, 0);
unsigned_type encoded = static_cast<unsigned_type>(value);
EncodeUInt(bytes, encoded);
}
void EncodeEntry(ZoneVector<uint8_t>* bytes, const PositionTableEntry& entry) {
DCHECK_LE(0, entry.code_offset);
uint32_t encoded_entry = (entry.code_offset << 2) |
(entry.is_breakable << 1) | (entry.is_statement);
EncodeUInt(bytes, encoded_entry);
EncodeInt(bytes, entry.source_position);
}
template <typename T>
T DecodeUInt(base::Vector<const uint8_t> bytes, int* index) {
uint8_t current;
int shift = 0;
T decoded = 0;
bool more;
do {
current = bytes[(*index)++];
decoded |= static_cast<std::make_unsigned_t<T>>(ValueBits::decode(current))
<< shift;
more = MoreBit::decode(current);
shift += ValueBits::kSize;
} while (more);
DCHECK_GE(decoded, 0);
return decoded;
}
template <typename T>
T DecodeInt(base::Vector<const uint8_t> bytes, int* index) {
using unsigned_type = std::make_unsigned_t<T>;
unsigned_type zigzag_value = DecodeUInt<unsigned_type>(bytes, index);
T result = static_cast<T>((zigzag_value >> 1) ^ (-(zigzag_value & 1)));
return result;
}
void DecodeEntry(base::Vector<const uint8_t> bytes, int* index,
PositionTableEntry* entry) {
int tmp = DecodeUInt<int>(bytes, index);
entry->code_offset = tmp >> 2;
entry->is_breakable = (tmp & 0b10) >> 1;
entry->is_statement = tmp & 1;
entry->source_position = DecodeInt<int64_t>(bytes, index);
}
base::Vector<const uint8_t> VectorFromByteArray(
Tagged<TrustedByteArray> byte_array) {
return base::Vector<const uint8_t>(byte_array->begin(), byte_array->length());
}
#ifdef ENABLE_SLOW_DCHECKS
void CheckTableEquals(const ZoneVector<PositionTableEntry>& raw_entries,
SourcePositionTableIterator* encoded) {
auto raw = raw_entries.begin();
for (; !encoded->done(); encoded->Advance(), raw++) {
DCHECK(raw != raw_entries.end());
DCHECK_EQ(encoded->code_offset(), raw->code_offset);
DCHECK_EQ(encoded->source_position().raw(), raw->source_position);
DCHECK_EQ(encoded->is_statement(), raw->is_statement);
}
DCHECK(raw == raw_entries.end());
}
#endif
}
SourcePositionTableBuilder::SourcePositionTableBuilder(
Zone* zone, SourcePositionTableBuilder::RecordingMode mode)
: mode_(mode),
bytes_(zone),
#ifdef ENABLE_SLOW_DCHECKS
raw_entries_(zone),
#endif
previous_() {
}
void SourcePositionTableBuilder::AddPosition(size_t code_offset,
SourcePosition source_position,
bool is_statement,
bool is_breakable) {
if (Omit()) return;
DCHECK(source_position.IsKnown());
int offset = static_cast<int>(code_offset);
AddEntry({offset, source_position.raw(), is_statement, is_breakable});
}
V8_INLINE void SourcePositionTableBuilder::AddEntry(
const PositionTableEntry& entry) {
PositionTableEntry tmp(entry);
SubtractFromEntry(&tmp, previous_);
EncodeEntry(&bytes_, tmp);
previous_ = entry;
#ifdef ENABLE_SLOW_DCHECKS
raw_entries_.push_back(entry);
#endif
}
template <typename IsolateT>
Handle<TrustedByteArray> SourcePositionTableBuilder::ToSourcePositionTable(
IsolateT* isolate) {
if (bytes_.empty()) return isolate->factory()->empty_trusted_byte_array();
DCHECK(!Omit());
Handle<TrustedByteArray> table =
isolate->factory()->NewTrustedByteArray(static_cast<int>(bytes_.size()));
MemCopy(table->begin(), bytes_.data(), bytes_.size());
#ifdef ENABLE_SLOW_DCHECKS
SourcePositionTableIterator it(
*table, SourcePositionTableIterator::kAll,
SourcePositionTableIterator::kDontSkipFunctionEntry);
CheckTableEquals(raw_entries_, &it);
mode_ = OMIT_SOURCE_POSITIONS;
#endif
return table;
}
template EXPORT_TEMPLATE_DEFINE(V8_EXPORT_PRIVATE)
Handle<TrustedByteArray> SourcePositionTableBuilder::ToSourcePositionTable(
Isolate* isolate);
template EXPORT_TEMPLATE_DEFINE(V8_EXPORT_PRIVATE)
Handle<TrustedByteArray> SourcePositionTableBuilder::ToSourcePositionTable(
LocalIsolate* isolate);
base::OwnedVector<uint8_t>
SourcePositionTableBuilder::ToSourcePositionTableVector() {
if (bytes_.empty()) return base::OwnedVector<uint8_t>();
DCHECK(!Omit());
base::OwnedVector<uint8_t> table = base::OwnedCopyOf(bytes_);
#ifdef ENABLE_SLOW_DCHECKS
SourcePositionTableIterator it(
table.as_vector(), SourcePositionTableIterator::kAll,
SourcePositionTableIterator::kDontSkipFunctionEntry);
CheckTableEquals(raw_entries_, &it);
mode_ = OMIT_SOURCE_POSITIONS;
#endif
return table;
}
void SourcePositionTableIterator::Initialize() {
Advance();
if (function_entry_filter_ == kSkipFunctionEntry &&
current_.code_offset == kFunctionEntryBytecodeOffset && !done()) {
Advance();
}
}
SourcePositionTableIterator::SourcePositionTableIterator(
Tagged<TrustedByteArray> byte_array, IterationFilter iteration_filter,
FunctionEntryFilter function_entry_filter)
: raw_table_(VectorFromByteArray(byte_array)),
iteration_filter_(iteration_filter),
function_entry_filter_(function_entry_filter) {
Initialize();
}
SourcePositionTableIterator::SourcePositionTableIterator(
Handle<TrustedByteArray> byte_array, IterationFilter iteration_filter,
FunctionEntryFilter function_entry_filter)
: table_(byte_array),
iteration_filter_(iteration_filter),
function_entry_filter_(function_entry_filter) {
Initialize();
#ifdef DEBUG
no_gc.Release();
#endif
}
SourcePositionTableIterator::SourcePositionTableIterator(
base::Vector<const uint8_t> bytes, IterationFilter iteration_filter,
FunctionEntryFilter function_entry_filter)
: raw_table_(bytes),
iteration_filter_(iteration_filter),
function_entry_filter_(function_entry_filter) {
Initialize();
#ifdef DEBUG
no_gc.Release();
#endif
}
void SourcePositionTableIterator::Advance() {
base::Vector<const uint8_t> bytes =
table_.is_null() ? raw_table_ : VectorFromByteArray(*table_);
DCHECK(!done());
DCHECK(index_ >= 0 && index_ <= bytes.length());
bool filter_satisfied = false;
while (!done() && !filter_satisfied) {
if (index_ >= bytes.length()) {
index_ = kDone;
} else {
PositionTableEntry tmp;
DecodeEntry(bytes, &index_, &tmp);
AddAndSetEntry(¤t_, tmp);
SourcePosition p = source_position();
filter_satisfied =
(iteration_filter_ == kAll) ||
(iteration_filter_ == kJavaScriptOnly && p.IsJavaScript()) ||
(iteration_filter_ == kExternalOnly && p.IsExternal());
}
}
}
}
}