<feed xmlns='http://www.w3.org/2005/Atom'>
<title>allocbench/src/Makefile, branch wait4_rusage</title>
<subtitle>benchmark tool for POSIX memory allocators</subtitle>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/'/>
<entry>
<title>implement alternative way to get memusage using wait4</title>
<updated>2019-08-15T17:27:59+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-15T17:27:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=b9cd13fedd8f077ecdd37857323eddddac285bc8'/>
<id>b9cd13fedd8f077ecdd37857323eddddac285bc8</id>
<content type='text'>
run now forks the benchmark command instead of simply calling exec.
Ressource usage of the benchmark is retrieved with a call to wait4.
But the reported value ru_maxrss differs from values in /proc/&lt;pid&gt;/status.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
run now forks the benchmark command instead of simply calling exec.
Ressource usage of the benchmark is retrieved with a call to wait4.
But the reported value ru_maxrss differs from values in /proc/&lt;pid&gt;/status.
</pre>
</div>
</content>
</entry>
<entry>
<title>use LD_LIBRARY_PATH for glibc instead of calling its loader</title>
<updated>2019-08-12T09:10:15+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-12T09:10:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=c6a768c12ce7e83631d08f53937a075c4f76e2d5'/>
<id>c6a768c12ce7e83631d08f53937a075c4f76e2d5</id>
<content type='text'>
Calling the loader fails on non ELF executables. Exec, formerly run_cmd,
now takes two options: -l LD_LIBRARY_PATH, -p LD_PRELOAD.
-p sets LD_PRELOAD and -l LD_LIBRARY_PATH before executing the rest of argv.

glibc no longer uses cmd_prefix in favor of LD_LIBRARY_PATH.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Calling the loader fails on non ELF executables. Exec, formerly run_cmd,
now takes two options: -l LD_LIBRARY_PATH, -p LD_PRELOAD.
-p sets LD_PRELOAD and -l LD_LIBRARY_PATH before executing the rest of argv.

glibc no longer uses cmd_prefix in favor of LD_LIBRARY_PATH.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rework exec chain</title>
<updated>2019-08-11T20:40:06+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-11T20:28:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=9d056ff64bf887e2c3479fe515bf7c95cb39e5b6'/>
<id>9d056ff64bf887e2c3479fe515bf7c95cb39e5b6</id>
<content type='text'>
Originally the structure of the executed cmd was
{measure cmd} {allocator cmd prefix} {cmd} with the parent environment
except LD_PRELOAD was modified for the whole command chain.
Unfortunatly perf causes segfaults with some allocators and measuring
allocators cmd prefixes doesnt seem fair. So the new cmd chain looks like:
{allocator cmd prefix} {measure cmd} run_cmd &lt;LD_PRELOAD&gt; {cmd} without
touching the environment in python.

run_cmd sets LD_PRELOAD to the value it received in argv[1] and executes
argv[2] with the rest of argv. This does also measure code not part of
the actual benchmark but in a equal manner and not only for some allocators.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Originally the structure of the executed cmd was
{measure cmd} {allocator cmd prefix} {cmd} with the parent environment
except LD_PRELOAD was modified for the whole command chain.
Unfortunatly perf causes segfaults with some allocators and measuring
allocators cmd prefixes doesnt seem fair. So the new cmd chain looks like:
{allocator cmd prefix} {measure cmd} run_cmd &lt;LD_PRELOAD&gt; {cmd} without
touching the environment in python.

run_cmd sets LD_PRELOAD to the value it received in argv[1] and executes
argv[2] with the rest of argv. This does also measure code not part of
the actual benchmark but in a equal manner and not only for some allocators.
</pre>
</div>
</content>
</entry>
<entry>
<title>improve bumpptr_alloc</title>
<updated>2019-08-11T14:53:06+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-11T14:53:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=16ef25b5eda3a9fc51ecea309d2cb6b0508b009b'/>
<id>16ef25b5eda3a9fc51ecea309d2cb6b0508b009b</id>
<content type='text'>
Return always 16 Byte aligned blocks and mmap the whole available
memory reported by free -t per thread.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Return always 16 Byte aligned blocks and mmap the whole available
memory reported by free -t per thread.
</pre>
</div>
</content>
</entry>
<entry>
<title>add bumptr allocator implementation</title>
<updated>2019-04-28T16:42:07+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-04-28T16:42:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=f0d35eb314ac52e4ec0f45f150de3d5224610c3b'/>
<id>f0d35eb314ac52e4ec0f45f150de3d5224610c3b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>s/target/allocator/ and remove analyse feature</title>
<updated>2019-02-08T12:31:11+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-02-08T12:31:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=f2327ada5590f40137416f301762cd3c11ab36b6'/>
<id>f2327ada5590f40137416f301762cd3c11ab36b6</id>
<content type='text'>
Use systemwide installed allocators by default
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use systemwide installed allocators by default
</pre>
</div>
</content>
</entry>
<entry>
<title>rework build system #2: call make before executing any benchmark</title>
<updated>2019-02-02T13:45:21+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-02-02T13:45:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=8c12b0494aa241bb6ddf3779a99d2f5d6ededf73'/>
<id>8c12b0494aa241bb6ddf3779a99d2f5d6ededf73</id>
<content type='text'>
Make scans the project directory for Makefiles and executes them.
The targets should be build by the new targets/Makefile.
All included Makefiles are now "quiet" by default.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make scans the project directory for Makefiles and executes them.
The targets should be build by the new targets/Makefile.
All included Makefiles are now "quiet" by default.
</pre>
</div>
</content>
</entry>
<entry>
<title>rework build system #1</title>
<updated>2019-02-01T15:35:20+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-02-01T15:35:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=130765de719a3ddc475284e13749d09ff371a8e1'/>
<id>130765de719a3ddc475284e13749d09ff371a8e1</id>
<content type='text'>
each benchmark has its own Makefile which must put it's binaries into
OBJDIR which is added to the PATH during execution.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
each benchmark has its own Makefile which must put it's binaries into
OBJDIR which is added to the PATH during execution.
</pre>
</div>
</content>
</entry>
</feed>
