mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
24b0e91d80
* send()/recv() now operate on TypedArrays rather than ArrayBuffers. * Remove a copy (through ArrayBuffer.slice()) from the send path. * Remove a copy (through v8::ArrayBuffer::New()) from the return path. * After moving a buffer from JS to native, the ArrayBuffer object and it's views are made inaccessible ('neutered'). * `struct deno_buf` now holds two [ptr, length] tuples, one for the actual memory allocation, and one for the logical data contained therein. This is necessary because flatbuffers fills it's buffer bottom-up, so the serialized blob doesn't start at beginning of the buffer, but somewhere in the middle. |
||
---|---|---|
.. | ||
binding.cc | ||
deno.h | ||
file_util.cc | ||
file_util.h | ||
file_util_test.cc | ||
flatbuffer_builder.cc | ||
flatbuffer_builder.h | ||
flatbuffer_builder_test.cc | ||
from_filesystem.cc | ||
from_snapshot.cc | ||
handlers.h | ||
handlers.rs | ||
internal.h | ||
main.cc | ||
main.rs | ||
mock_runtime_test.cc | ||
msg.fbs | ||
snapshot_creator.cc |