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

256 Commits

Author SHA1 Message Date
29cda252f1 builtin: fix multiple array init (#10929) 2021-07-23 23:25:12 +03:00
41982053f1 builtin: make array.delete() reallocate, provide .delete_many() (#10889) 2021-07-21 20:55:32 +03:00
41e88423aa Revert "builtin: use == 0 instead of isnil()"
This reverts commit 8650ec6916.
2021-07-01 06:21:03 +03:00
63638fd271 cgen: optimize generated array.index(elem) 2021-06-28 17:45:13 +03:00
8650ec6916 builtin: use == 0 instead of isnil()
Do not rely on C inlining that may not happen for a *very* frequently
called fn in lower level code.
2021-06-28 10:59:14 +03:00
daeeaef030 vfmt: hot fix to allow separate array_d_gcboehm_opt.v (#10413) 2021-06-11 12:00:18 +03:00
0e2c86310a GC-boehm: extend optimized mode to all array methods (#10406) 2021-06-10 21:26:17 +03:00
811a3e1d38 builtin: optimize array.repeat() (#10396) 2021-06-09 12:52:30 +03:00
a2243054a5 builtin: fix memory corruption in array .clone() and .repeat() (#10394) 2021-06-08 23:23:28 +03:00
8828054e5b builtin: fix arrays/slices memory bug (#10219) 2021-05-27 15:50:06 +03:00
560301dbfe cgen: dont preallocate zero length with capacity of 1 2021-05-26 14:51:20 +10:00
4eb8072882 parser: remove ++/-- exception for some modules (#9895) 2021-04-27 01:41:42 +03:00
14434cc86a all: bare metal support (fix -freestanding) (#9624) 2021-04-14 07:50:50 +02:00
10bf974cda all: gc: provide optimized mode (#9716) 2021-04-14 00:40:26 +02:00
a1121d0eb0 builtin: use 0 instead of \0 rune when setting C style terminators; use C.memcpy in []string{}.join("") 2021-04-13 11:29:33 +03:00
ada763e0f4 fmt: remove parenthesis around single ident (#9696) 2021-04-12 16:01:03 +03:00
291a88bc62 ci: fix some of v test-cleancode 4 2021-04-05 21:39:32 +03:00
accd4d83bf ci: fix compilation 2021-04-04 20:14:51 +03:00
7f81702d81 builtin: optimize array sort (#9570) 2021-04-03 12:16:18 +02:00
7afa4c7e2c builtin: fix ["abc", "xyz"].str() 2021-03-23 22:11:32 +02:00
7f91b75cbc builtin: fix leaks in os.execute() and []string{} == []string{} 2021-03-23 20:36:19 +02:00
8810af76df all: support -gc boehm on systems with libgc-dev installed (#9382) 2021-03-20 14:16:36 +01:00
00651c8deb builtin: free all elements in a []string with -autofree too 2021-03-18 21:10:42 +02:00
125be84e3d builtin: fix -d debug_realloc, add realloc_data/3 2021-03-14 14:54:35 +02:00
80356edd8c fmt: combine simple attributes into a single line (#9120) 2021-03-05 07:17:57 +02:00
488848e904 builtin: simplify copy/2 2021-03-02 18:14:42 +02:00
23f231ee61 builtin: tag array methods unsafe: *_many, grow_len, pointers (#8983) 2021-02-26 22:55:09 +01:00
f54c1a5cc2 all: add strings.Builder.write_string and use write_string instead of write (#8892) 2021-02-22 13:18:11 +02:00
486bf8517f builtin: fix typo (#8747) 2021-02-15 17:54:07 +02:00
ea803113c3 checker: check unsafe V function calls (#8752) 2021-02-14 19:31:42 +01:00
0f92485698 builtin: fix typo in builtin/array.v (#8658) 2021-02-09 17:04:47 +02:00
44ab0154b2 builtin: document last of array.v (#8575) 2021-02-05 16:51:45 +01:00
8b61891348 fmt: smarter if condition wrapping (#8201) 2021-01-23 10:33:22 +02:00
242c5760f1 array: fix array_clone (fix #8220) (#8238) 2021-01-21 10:17:00 +01:00
b74690cbec builtin, checker, cgen: implement x = a[k] or { ... } for maps and arrays (#8193) 2021-01-19 06:06:57 +01:00
ac2c3847af all: update copyright to 2019-2021 (#8029) 2021-01-18 13:20:06 +01:00
254df0ca62 fmt: improve string quotes (#8075) 2021-01-13 06:05:27 +01:00
33694665f0 fmt: align each contiguous field of struct. not the whole. (#7981) 2021-01-12 04:38:43 +01:00
775d16cce3 array: remove redundant index method in array.v (#7523) 2020-12-25 17:21:23 +02:00
214290d55b fmt: add a space around single-line unsafe expressions (#7505) 2020-12-23 19:13:42 +01:00
cd30dcc287 builtin: make array.ensure_cap/1 more robust 2020-12-19 21:36:08 +02:00
553ecf63e7 vlib/io: fix reader bugs, make read_all take a config struct (#7361) 2020-12-16 18:22:26 +01:00
b2685c6060 builtin: add more docs to array.v (#7194) 2020-12-15 10:31:35 +02:00
f57c7032b4 ci: fix sanitizers and add -fsanitize=undefined (#7306) 2020-12-14 06:34:47 +01:00
b99ea332f0 cgen,builtin: fix sort for []u64 2020-12-05 23:14:19 +02:00
f8af866f76 builtin: make v_realloc use int parameter instead of u32 (#7080) 2020-12-02 15:35:11 +02:00
ed08d96932 builtin: remove old type prefixes, add a few missing documentations, add missing punctuation (#7037) 2020-11-30 18:51:00 +01:00
1891f55c72 builtin: add voidptr.vbytes(len) and byteptr.vbytes(len) 2020-11-27 18:18:46 +02:00
f8827c3fe5 builtin: clone the strings correctly in array.push 2020-11-22 13:22:42 +01:00
cd2a2cef25 vlib/net: add buffered IO, x.net -> net (#6754) 2020-11-15 22:54:47 +02:00