1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

builtin: zero out internal map/array pointers on m.free(), to reduce the work for the GC mark phase for non escaping maps/arrays, used in hot loops (#18415)

This commit is contained in:
Delyan Angelov
2023-06-14 15:00:36 +03:00
committed by GitHub
parent 4ba4fe7c25
commit 6806086bf1
3 changed files with 30 additions and 6 deletions

View File

@@ -750,6 +750,9 @@ pub fn (a &array) free() {
}
mblock_ptr := &u8(u64(a.data) - u64(a.offset))
unsafe { free(mblock_ptr) }
unsafe {
a.data = nil
}
}
// Some of the following functions have no implementation in V and exist here
@@ -867,12 +870,12 @@ pub fn (a array) contains(value voidptr) bool
// or `-1` if the value is not found.
pub fn (a array) index(value voidptr) int
[unsafe]
[direct_array_access; unsafe]
pub fn (mut a []string) free() {
$if prealloc {
return
}
for s in a {
for mut s in a {
unsafe { s.free() }
}
unsafe { (&array(&a)).free() }
@@ -883,7 +886,7 @@ pub fn (mut a []string) free() {
// str returns a string representation of an array of strings
// Example: ['a', 'b', 'c'].str() // => "['a', 'b', 'c']".
[manualfree]
[direct_array_access; manualfree]
pub fn (a []string) str() string {
mut sb_len := 4 // 2x" + 1x, + 1xspace
if a.len > 0 {