Searched refs:OffHeapBytecodeArray (Results 1 – 3 of 3) sorted by relevance
451 class OffHeapBytecodeArray final : public interpreter::AbstractBytecodeArray {453 explicit OffHeapBytecodeArray(BytecodeArrayRef bytecode_array);
5386 OffHeapBytecodeArray::OffHeapBytecodeArray(BytecodeArrayRef bytecode_array) in OffHeapBytecodeArray() function in v8::internal::compiler::OffHeapBytecodeArray5389 int OffHeapBytecodeArray::length() const { return array_.length(); } in length()5391 int OffHeapBytecodeArray::parameter_count() const { in parameter_count()5395 uint8_t OffHeapBytecodeArray::get(int index) const { return array_.get(index); } in get()5397 void OffHeapBytecodeArray::set(int index, uint8_t value) { UNREACHABLE(); } in set()5399 Address OffHeapBytecodeArray::GetFirstBytecodeAddress() const { in GetFirstBytecodeAddress()5403 Handle<Object> OffHeapBytecodeArray::GetConstantAtIndex( in GetConstantAtIndex()5408 bool OffHeapBytecodeArray::IsConstantAtIndexSmi(int index) const { in IsConstantAtIndexSmi()5412 Smi OffHeapBytecodeArray::GetConstantAtIndexAsSmi(int index) const { in GetConstantAtIndexAsSmi()
1016 std::make_unique<OffHeapBytecodeArray>(bytecode_array())), in BytecodeGraphBuilder()