mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-04 10:30:56 +01:00
Update function-buffer-varints.md
This commit is contained in:
parent
86c4f094ac
commit
fd814cea66
1 changed files with 16 additions and 8 deletions
|
@ -21,13 +21,21 @@ The following are implementations of ULEB-128 reading/writing in Luau:
|
||||||
```lua
|
```lua
|
||||||
local function writeuleb128(stream, offset, value)
|
local function writeuleb128(stream, offset, value)
|
||||||
local start = offset
|
local start = offset
|
||||||
|
local length = buffer.len(stream)
|
||||||
|
|
||||||
while value >= 0x80 do
|
while true do
|
||||||
buffer.writeu8(stream, offset, bit32.bor(bit32.band(value, 0x7f), 0x80))
|
if offset >= length then
|
||||||
value = bit32.rshift(value, 7)
|
error("buffer access out of bounds")
|
||||||
offset = offset + 1
|
end
|
||||||
|
if value >= 0x80 then
|
||||||
|
buffer.writeu8(stream, offset, bit32.bor(bit32.band(value, 0x7f), 0x80))
|
||||||
|
value = bit32.rshift(value, 7)
|
||||||
|
offset = offset + 1
|
||||||
|
else
|
||||||
|
buffer.writeu8(stream, offset, value)
|
||||||
|
break
|
||||||
|
end
|
||||||
end
|
end
|
||||||
buffer.writeu8(stream, offset, value)
|
|
||||||
|
|
||||||
return (offset - start) + 1
|
return (offset - start) + 1
|
||||||
end
|
end
|
||||||
|
@ -40,9 +48,9 @@ local function readuleb128(stream, offset)
|
||||||
local start = offset
|
local start = offset
|
||||||
|
|
||||||
repeat
|
repeat
|
||||||
local byte = buffer.readu8(stream, offset)
|
local byte = buffer.readu8(stream, offset)
|
||||||
result = bit32.bor(result, bit32.lshift(bit32.band(byte, 0x7f), shift))
|
result = bit32.bor(result, bit32.lshift(bit32.band(byte, 0x7f), shift))
|
||||||
shift, offset = shift + 7, offset + 1
|
shift, offset = shift + 7, offset + 1
|
||||||
until byte < 0x80 or length <= offset
|
until byte < 0x80 or length <= offset
|
||||||
|
|
||||||
return result, offset - start
|
return result, offset - start
|
||||||
|
|
Loading…
Add table
Reference in a new issue