aboutsummaryrefslogtreecommitdiff
path: root/vis.c
diff options
context:
space:
mode:
authorRandy Palamar <randy@rnpnr.xyz>2025-01-04 21:04:22 -0700
committerRandy Palamar <randy@rnpnr.xyz>2025-01-04 21:20:22 -0700
commit1e52d33a3696016a7338d08c1c2bf6ef8f324e75 (patch)
tree28f196c7795ecebd5dae9d37fcc40e0e4458c80d /vis.c
parent6d362f260c1573d5fb1b60be4ea84689600d368e (diff)
downloadvis-1e52d33a3696016a7338d08c1c2bf6ef8f324e75.tar.gz
vis-1e52d33a3696016a7338d08c1c2bf6ef8f324e75.tar.xz
remove duplicated read_buffer functions
When you take a pointer to a function in C that function is going to appear in full in the final binary. This means that there were 3 sections of the final binary with the exact same code. You could argue that in very high performance programs having that function closer to the current instruction when it is needed will give a performance boost but there are so many other places to gain more significant speed ups in vis before that would be remotely relevant. In fact, removing these allows the buffer_append call to inlined so that buffer_insert can be hopped to directly instead of including a useless hop in the middle.
Diffstat (limited to 'vis.c')
-rw-r--r--vis.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/vis.c b/vis.c
index d1c0dab..c059a48 100644
--- a/vis.c
+++ b/vis.c
@@ -1854,18 +1854,13 @@ int vis_pipe_buf(Vis *vis, const char* buf, const char *argv[],
return _vis_pipe(vis, NULL, NULL, buf, argv, stdout_context, read_stdout, stderr_context, read_stderr, fullscreen);
}
-static ssize_t read_buffer(void *context, char *data, size_t len) {
- buffer_append(context, data, len);
- return len;
-}
-
static int _vis_pipe_collect(Vis *vis, File *file, Filerange *range, const char* buf, const char *argv[], char **out, char **err, bool fullscreen) {
Buffer bufout, buferr;
buffer_init(&bufout);
buffer_init(&buferr);
int status = _vis_pipe(vis, file, range, buf, argv,
- &bufout, out ? read_buffer : NULL,
- &buferr, err ? read_buffer : NULL,
+ &bufout, out ? read_into_buffer : NULL,
+ &buferr, err ? read_into_buffer : NULL,
fullscreen);
buffer_terminate(&bufout);
buffer_terminate(&buferr);