index
:
lua
master
v5-2
v5.3
v5.4
A mirror of https://github.com/lua/lua
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
ldump.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Added gcc option '-Wconversion'
Roberto Ierusalimschy
2024-07-27
1
-9
/
+9
*
Cleaning of llimits.h
Roberto Ierusalimschy
2024-06-20
1
-0
/
+1
*
'luaH_get' functions return tag of the result
Roberto Ierusalimschy
2024-03-21
1
-2
/
+3
*
'luaH_get' functions return 'TValue'
Roberto Ierusalimschy
2024-03-18
1
-2
/
+2
*
Removed type 'varint_t'
Roberto Ierusalimschy
2024-03-13
1
-9
/
+13
*
Revising code for Varint encoding in dumps
Roberto Ierusalimschy
2024-02-12
1
-17
/
+18
*
Fixed buffers reuse absolute line information
Roberto Ierusalimschy
2023-12-27
1
-3
/
+4
*
Cleaner protocol between 'lua_dump' and writer function
Roberto Ierusalimschy
2023-12-14
1
-7
/
+23
*
Correct anchoring and GC barriers in 'loadString'
Roberto Ierusalimschy
2023-11-13
1
-5
/
+2
*
Fixed buffers save long strings as external.
Roberto Ierusalimschy
2023-11-10
1
-1
/
+1
*
Solving merge issue with use of tables in dump/undump
Roberto Ierusalimschy
2023-11-08
1
-4
/
+4
*
New macro 'getlstr'
Roberto Ierusalimschy
2023-08-30
1
-7
/
+8
*
Field 'Proto.is_vararg' uses only one bit
Roberto Ierusalimschy
2023-08-30
1
-1
/
+1
*
Opcode in dumps is stored properly aligned
Roberto Ierusalimschy
2023-08-25
1
-0
/
+14
*
Merge branch 'master' into nextversion
Roberto Ierusalimschy
2023-06-22
1
-2
/
+6
|
\
|
*
Bug: Loading a corrupted binary file can segfault
Roberto Ierusalimschy
2023-03-17
1
-2
/
+6
*
|
Dump doesn't need to reuse 'source'
Roberto Ierusalimschy
2022-12-20
1
-6
/
+6
*
|
Dump/undump reuse strings
Roberto Ierusalimschy
2022-12-15
1
-6
/
+31
|
/
*
Back to old encoding of versions in binary files
Roberto Ierusalimschy
2020-05-06
1
-1
/
+1
*
Code style in 'ldump'/'lundump'.
Roberto Ierusalimschy
2020-02-27
1
-76
/
+76
*
Clearer distinction between types and tags
Roberto Ierusalimschy
2020-01-31
1
-9
/
+9
*
Changed internal representation of booleans
Roberto Ierusalimschy
2020-01-06
1
-4
/
+1
*
First implementation of constant propagation
Roberto Ierusalimschy
2019-07-12
1
-1
/
+1
*
New implementation for constants
Roberto Ierusalimschy
2019-07-09
1
-0
/
+1
*
Small changes in the header of binary files
Roberto Ierusalimschy
2019-03-19
1
-3
/
+1
*
Removed extra information from RCS keyword strings
Roberto Ierusalimschy
2018-08-23
1
-1
/
+1
*
better names for macros for tags and types.
Roberto Ierusalimschy
2018-02-26
1
-3
/
+3
*
detail (identation of switch)
Roberto Ierusalimschy
2017-11-28
1
-18
/
+17
*
dumping ints and size_ts compacted
Roberto Ierusalimschy
2017-06-27
1
-11
/
+21
*
'lineinfo' in prototypes saved as differences instead of absolute
Roberto Ierusalimschy
2017-06-27
1
-1
/
+7
*
avoid calling write function with empty block
Roberto Ierusalimschy
2015-10-08
1
-2
/
+2
*
avoid expression with side effect (in debug mode) inside 'sizeof'
Roberto Ierusalimschy
2015-03-30
1
-2
/
+3
*
size of short strings stored in a single byte, to reduce the size
Roberto Ierusalimschy
2015-01-16
1
-2
/
+2
*
added include for 'lprefix.h', for stuff that must be added before
Roberto Ierusalimschy
2014-11-02
1
-3
/
+6
*
type 'TString' refers directly to the structure inside the union
Roberto Ierusalimschy
2014-07-18
1
-3
/
+3
*
allows different 'source' for each prototype, but inherits it from
Roberto Ierusalimschy
2014-06-18
1
-10
/
+17
*
added assertion about sources being the same for all protos in a chunk
Roberto Ierusalimschy
2014-06-18
1
-2
/
+4
*
source for all prototypes must be equal in a chunk; no need to store
Roberto Ierusalimschy
2014-06-18
1
-2
/
+2
*
some details to avoid warnings
Roberto Ierusalimschy
2014-04-01
1
-2
/
+2
*
missplelling in comments/function names (endianess -> endianness)
Roberto Ierusalimschy
2014-03-27
1
-2
/
+2
*
make all dumps/loads go trhough Load/DumpVector (so it is easier
Roberto Ierusalimschy
2014-03-11
1
-4
/
+10
*
keep chunk's headers compatible at least up to LUAC_VERSION (to be
Roberto Ierusalimschy
2014-03-11
1
-3
/
+5
*
"indent -kr -i2 -br -brf -nut" plus a few manual formating
Roberto Ierusalimschy
2014-03-10
1
-137
/
+141
*
no need to store a full 'size_t' fo the size of (frequent) small strings
Roberto Ierusalimschy
2014-03-01
1
-11
/
+11
*
more regularity with vectors + sizeof computed by the macros themselves
Roberto Ierusalimschy
2014-02-28
1
-11
/
+11
*
all chars used in binary dumps are unsigned ('lu_byte')
Roberto Ierusalimschy
2014-02-28
1
-18
/
+18
*
store number of upvalues of main function in front of the dump,
Roberto Ierusalimschy
2014-02-27
1
-1
/
+2
*
more explicit handling of headers for binary chunks
Roberto Ierusalimschy
2014-02-27
1
-4
/
+12
*
dumping and undumping integers
Roberto Ierusalimschy
2013-04-26
1
-6
/
+14
*
'ttypenv' -> 'ttnov'
Roberto Ierusalimschy
2013-04-12
1
-3
/
+3
[next]