All Projects → milostosic → rmem

milostosic / rmem

Licence: BSD-2-Clause license
MTuner SDK - Memory profiling library

Programming Languages

c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to rmem

Memprof
A memory profiler for Python. As easy as adding a decorator!
Stars: ✭ 115 (+360%)
Mutual labels:  profiler, memory
audria
audria - A Utility for Detailed Ressource Inspection of Applications
Stars: ✭ 35 (+40%)
Mutual labels:  profiler, memory
Unityheapexplorer
A Memory Profiler, Debugger and Analyzer for Unity 2019.3 and newer.
Stars: ✭ 179 (+616%)
Mutual labels:  profiler, memory
profiling
Non-discriminatory profiling of Ruby code leveraging the ruby-prof gem
Stars: ✭ 12 (-52%)
Mutual labels:  profiler, memory
Loli profiler
Memory instrumentation tool for android app&game developers.
Stars: ✭ 179 (+616%)
Mutual labels:  profiler, memory
LazProfiler
One-Click-Profiler addon for Lazarus
Stars: ✭ 25 (+0%)
Mutual labels:  profiler
ofxTimeMeasurements
OpenFrameworks add-on to easily measure execution times on different parts of your code.
Stars: ✭ 90 (+260%)
Mutual labels:  profiler
jquery-profile
jQuery plugin to profile calls to jQuery selectors.
Stars: ✭ 39 (+56%)
Mutual labels:  profiler
gd.py
An API Wrapper for Geometry Dash written in Python.
Stars: ✭ 87 (+248%)
Mutual labels:  memory
TuneUp
A profiler for Dynamo graphs
Stars: ✭ 27 (+8%)
Mutual labels:  profiler
Vol3xp
Volatility Explorer Suit
Stars: ✭ 31 (+24%)
Mutual labels:  memory
CHKV
Consistent Hashing based Key-Value Memory Storage
Stars: ✭ 20 (-20%)
Mutual labels:  memory
BadCoderz
Find unoptimized gmod addons and KILL the devs who made them
Stars: ✭ 66 (+164%)
Mutual labels:  profiler
cozgo
Coz profiler Golang wrapper - Coz employs a novel technique we call causal profiling that measures optimization potential.
Stars: ✭ 99 (+296%)
Mutual labels:  profiler
lessram
Pure PHP implementation of array data structures that use less memory.
Stars: ✭ 20 (-20%)
Mutual labels:  memory
numamma
NumaMMA is a lightweight memory profiler for parallel applications
Stars: ✭ 20 (-20%)
Mutual labels:  memory
cache-bench
Explore the impact of virtual memory settings on caching efficiency on Linux systems under memory pressure
Stars: ✭ 25 (+0%)
Mutual labels:  memory
diepindepth
Collection of protocol, memory, and other information for the browser game diepio
Stars: ✭ 39 (+56%)
Mutual labels:  memory
compact str
A memory efficient string type that can store up to 24* bytes on the stack
Stars: ✭ 322 (+1188%)
Mutual labels:  memory
cpu-memory-monitor
CPU & Memory Monitor, auto dump.
Stars: ✭ 26 (+4%)
Mutual labels:  memory

Build Status Build status License

rmem is an SDK library for MTuner, providing additional features and cross-platform support.

Source Code

You can get the latest source code by cloning it from github:

  git clone https://github.com/milostosic/rmem.git 

Dependencies

rtm build system scirpts (https://github.com/milostosic/build):

git clone https://github.com/milostosic/build.git

Build

MTuner SDK GENie script can generate Microsoft Visual Studio solution or makefiles for a GCC based compiler or cross compiler. Generating a MSVC solution is done using the following command:

  genie vs2015

The generated solution will be located in the following folder: .build/projects/vs2015

Generating makefiles for a GCC based toolchain is done in a similar way, for example:

  MinGW :   genie --gcc=mingw gmake
  PS3   :   genie --gcc=ps3   gmake
  PS4   :   genie --gcc=ps4   gmake

Note that MinGW toolchain requires a MINGW environment variable pointint to install location of MinGW, for example:

  set MINGW=C:\TDM-GCC-64

Generated makefiles will be located in the following folder:

  .build/projects/gmake/$(GCC_TOOLCHAIN)

All of the generated solutions/makefiles provide a Debug and Release configuration, in both 32bit and 64bit versions. Some platforms support only one word size, for example PS3 works with debug64/release64 configurations.

To build a GCC based library use the following command lines:

  Debug   :  make -R config=debug32
  Release :  make -R config=release32

Note that certain platforms require 64bit builds, for example to build on PS4:

  Release :  make -R config=release64

Author

The author of rmem is Milos Tosic

License (BSD 2-clause)

Copyright (c) 2018 Milos Tosic. All rights reserved.

https://github.com/milostosic/rmem

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

   1. Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.

   2. Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY COPYRIGHT HOLDER ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
EVENT SHALL COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].