Home
last modified time | relevance | path

Searched refs:BuiltinSnapshotUtils (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/snapshot/
Dbuiltin-snapshot-utils.cc11 bool BuiltinSnapshotUtils::IsBuiltinIndex(int maybe_index) { in IsBuiltinIndex()
17 bool BuiltinSnapshotUtils::IsHandlerIndex(int maybe_index) { in IsHandlerIndex()
23 int BuiltinSnapshotUtils::BytecodeToIndex(Bytecode bytecode, in BytecodeToIndex()
26 BuiltinSnapshotUtils::kNumberOfBuiltins + static_cast<int>(bytecode); in BytecodeToIndex()
37 BuiltinSnapshotUtils::BytecodeFromIndex(int index) { in BytecodeFromIndex()
40 const int x = index - BuiltinSnapshotUtils::kNumberOfBuiltins; in BytecodeFromIndex()
51 void BuiltinSnapshotUtils::ForEachBytecode( in ForEachBytecode()
Dbuiltin-serializer.h22 using BSU = BuiltinSnapshotUtils;
57 uint32_t code_offsets_[BuiltinSnapshotUtils::kNumberOfCodeObjects];
Dbuiltin-deserializer-allocator.h22 class BuiltinSnapshotUtils; variable
25 using BSU = BuiltinSnapshotUtils;
Dbuiltin-snapshot-utils.h17 class BuiltinSnapshotUtils : public AllStatic {
Dbuiltin-deserializer.h21 using BSU = BuiltinSnapshotUtils;
Dsnapshot-common.cc696 BuiltinSnapshotUtils::kNumberOfCodeObjects * kUInt32Size; in Payload()
708 BuiltinSnapshotUtils::kNumberOfCodeObjects * kUInt32Size; in BuiltinOffsets()
715 BuiltinSnapshotUtils::kNumberOfCodeObjects); in BuiltinOffsets()
Dbuiltin-deserializer-allocator.cc28 return code_object_id - BuiltinSnapshotUtils::kFirstHandlerIndex; in HandlerAllocationIndex()