Is there something like ANTS Performance Profiler but for C++? [duplicate] - c++

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Profiler for Visual Studio 2008, C++?
Hi
Are there any profilers for C++ ??
I need something which would investigate weak points of my application - by weak I mean not optimalized. Usualy I do this using ANTS Performance Profiler but this time my application is written in c++ and I don't know if there are any tools for this task.

Does this Help?

If you want something simple but effective, there's this.

Related

how to convert an executable file into a c++ file to peak at code [duplicate]

This question already has answers here:
Getting source from object file
(5 answers)
Closed 4 years ago.
I have an executable file, which was developed in c++. How do I convert it back into c++? I am unsure where to start. I am trying to edit a game, so that the ai makes decisions faster.
Just to add, you can't but you can disassemble it. With OllyDBG or IDA pro... You have to have a good grasp of Assembly language.
Then debug the game.... And watch the registers and watch what instructions make the game slow.

C++ wrapper for SQLite3 API - alternatives for sqlite3pp [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
What is a good OO C++ wrapper for sqlite
I'm looking for C++ wrappers for SQLite3 API. So far, I only found sqlite3pp. It seems quite up-to-date, however, before settling with that I wanted to see if there are any alternatives. Do you guys know any? Thanks in advance!
I don't know why I can't find the Wiki linked from the SQLite homepage anymore. But it lists lots of C++ wrappers: http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers

Open MFC application to get source-code [duplicate]

This question already has answers here:
Is it possible to "decompile" a Windows .exe? Or at least view the Assembly?
(16 answers)
Closed 7 years ago.
Does someone know how to open an MFC application to get the source-code?
(I want to know how it works)
MFC is compiled from C++ source, so it can't be recovered. You can use a decompiler on it, but the source you get back won't be particularly instructive.
There's a good related question on debugging, disassembling and decompiling you can check for more links.

Cross platform crash-reporters [duplicate]

This question already has answers here:
Cross-platform crash handler
(3 answers)
Closed 9 years ago.
Are there any cross platform crash reporters for C++ besides google-break pad? I have seen google-breakpad but it has very very limited documentation, and I have nothing seen very much mentioned here, google or other source websites
Have a look at BugTrap which might help you.

Good coding guidelines tool for C++? [duplicate]

This question already has answers here:
Closed 13 years ago.
Possible Duplicate:
What tools exist for comparing C++ code to coding guidelines?
Can any one suggest any good coding guidelines tool for C++ which must be configurable according to specific requirements?
I've always found the Google C++ Style Guide to be a good one.