Doesn't work on a Mac.
Yes, it says that in the README. Plenty of people use other operating systems, though.
MTuner is a C/C++ memory profiler and memory leak finder
11–20 of 35 posts
Re: MTuner is a C/C++ memory profiler and memory leak finder
#12Doesn't work on a Mac.
Yes, it says that in the README. Plenty of people use other operating systems, though.
I don't see any mention of Mac at all in the Readme, and I find the "etc" part confusing. For example, I use FreeBSD. PS4 is based on FreeBSD. Does FreeBSD go under the "etc" part? If not then what does?
Re: MTuner is a C/C++ memory profiler and memory leak finder
#13But I have a (side) question. You are using Makefile while targeting non-nix platforms. Why? It seems to me it is the strangest combination ever.
Re: MTuner is a C/C++ memory profiler and memory leak finder
#14Doesn't valgrind do this?
Most of it (memcheck and massif), but good luck getting the important data out. Memcheck is fine, but massif is quite restricted as a object-level memory monitor. I can't talk for MTuner, but HeapTrack is very, very useful to track and eradicate temporary allocations (useless C++ object create when using `==` or passing by copy.
Re: MTuner is a C/C++ memory profiler and memory leak finder
#15Earlier quoted context omitted.
Yes, it says that in the README. Plenty of people use other operating systems, though.
> MTuner is a C/C++ memory profiler and memory leak finder for Windows, PS4, PS3, etc. I don't see any mention of Mac at all in the Readme, and I find the "etc" part confusing. For example, I use FreeBSD. PS4 is based on FreeBSD. Does FreeBSD go under the "etc" part? If not then what does?
> MTuner supports Windows, PlayStation 4 and PlayStation 3
> out of the box. Additionally, any platform with GCC or
> Clang based cross compiler can easily be supported with a
> little extra work. Instrumentation API comes with full
> source code which means it’s a matter of porting a few
> routines to get it up and running on additional platforms.
http://mtuner.net/doc/overview_compilers.htmlRe: MTuner is a C/C++ memory profiler and memory leak finder
#16Re: MTuner is a C/C++ memory profiler and memory leak finder
#17It's also interesting just to look at all the data to figure out how exepensive some things are memory-wise. These days with the more modern C++ it's easy to forget what goes on under the hood. Nothing wrong with that per-se: C++ is usually performant enough that you just don't have to care about it at all. But if you have this typcial engineering mindset and like to know how stuff works just for the sake of it, and 'stuff' in this case is 'memory usage', then this is your tool.
Re: MTuner is a C/C++ memory profiler and memory leak finder
#18Re: MTuner is a C/C++ memory profiler and memory leak finder
#19Re: MTuner is a C/C++ memory profiler and memory leak finder
#20How different is this from Intel's vtune amplifier? I used vtune amplifier to get the memory profiles for some c++ code I had written before.