d-michail / jheaps-trace

Trace drivers for JHeaps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JHeaps Trace Drivers

Copyright (C) 2019-2020 Dimitrios Michail

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.


What is a heap trace?

A standard methodology when comparing different heap data structures is to perform trace-based simulation as described in the 5th DIMACS challenge. For the exact format of the trace files you can read the specification document.

More specifically, a workload is first executed using a reference heap implementation and a file containing the sequence of operations is recorded. Afterwards, the trace file is executed using different drivers, one for each heap in the comparison, as well as using a so called dummy driver which simply parses the trace file but does not execute any heap operations. The dummy driver is used in order to normalize the results, meaning that the statistics of the dummy driver are subtracted from the statistics of each heap driver.

What is this project?

This project contains heap drivers for various heaps using the JHeaps library. It uses maven and builds an uberjar using the maven shade plugin. This also makes it relatively easy to compile the driver natively using the native-image tool from the GraalVM.

About

Trace drivers for JHeaps

License:Apache License 2.0


Languages

Language:Java 100.0%