profiler

VisualVM: CPU/Memory profiler stuck at “Connecting to the target JVM…”

半城伤御伤魂 提交于 2019-12-02 15:32:14
I have recently reinstalled Windows and I am using JDK 1.8 u91 with the built-in VisualVM. I have checked my proxy settings to ensure that they are all off, both in Windows proxy settings and within the proxy settings of VisualVM. I have also tried reinstalling JDK, restarting computer, reinstalling Windows. I only have one JDK installed and the classpath is set to the JDK's bin folder in Windows. All features besides CPU and memory profiling work in VisualVM. My application is ran from IntelliJ, but I have also tried running applications regularly from command line and VisualVM cannot connect

What features should a C#/.NET profiler have?

眉间皱痕 提交于 2019-12-02 15:10:18
This could be a borderline advertisement, not to mention subjective, but the question is an honest one. For the last two months, I've been developing a new open source profiler for .NET called SlimTune Profiler ( http://code.google.com/p/slimtune/ ). It's a relatively new effort, but when I looked at the range of profilers available I was not terribly impressed. I've done some initial work based on existing products, but I felt this would be a good place to ask: what exactly do you WANT from a profiler? I come from real time graphics and games, so it's important to me that a profiler be as

PHP Profiler with method execution count, times etc. without extensions

回眸只為那壹抹淺笑 提交于 2019-12-02 15:05:22
问题 Is there any class or library that I can use for profiling, finding bottlenecks, seeing unnecessary execution times etc in my local php environment using beside the CI's default profiler? I'm going to use it remotely and my host doesn't have any debug extensions installed, and I don't want to ask them to install, and if there's any PHP solution of it, it'll be nice. If possible, without installing an extension or altering php.ini file please. (I edited the title because it made the question

CSS Performance Profiler?

拟墨画扇 提交于 2019-12-02 14:04:16
I'm currently working on a site, and somewhere in my mass of stylesheets, something is killing performance in IE. Are there any good CSS profilers out there? I'd like a tool that can pinpoint rules that are killing performance. Before you ask, I've disabled JavaScript, opacity, and box-shadow/text-shadow rules. The page is still jumpy. :/ If I disable all CSS, it runs great. I need a tool that can profile the page and report where the CSS bottlenecks are. So, I finally got around to writing a JavaScript function that indexed all of my CSS classes on the page and then individually toggled them,

c++ function addresses coming out different in attached profiler library than in the subject code base

耗尽温柔 提交于 2019-12-02 13:25:02
问题 I have written an instrument-er in C++ to log entry and exit functions by hooking on enter and exit calls. It is working as supposed to with a legacy code base. However on hooking with a project that I downloaded from git, function addresses that I save in an extern variable in the subject code, they are coming out different in the profiler library. That is messing up the function pointer comparison between hooked and saved functions. Function address in subject code main file, breakpoint is

Tool to profile php code

北城余情 提交于 2019-12-02 10:40:29
Looking for some [freeware/opensource] tool in order to make it easy to profile a big php project on win32 platform. Need to find out which part of code is most time consuming. It's hard to manually put timing function for each function, loop... You'll want to install and configure Xdebug . It's sort of the de-facto standard PHP debugging and profiling tool. WinCacheGrind can crunch the profiling output. It's a bit buggy, but it does the job. xdebug works quite well http://xdebug.org Also wincachegrind is a good tool for looking through the profiler's output. http://sourceforge.net/projects

c++ function addresses coming out different in attached profiler library than in the subject code base

放肆的年华 提交于 2019-12-02 04:30:00
I have written an instrument-er in C++ to log entry and exit functions by hooking on enter and exit calls. It is working as supposed to with a legacy code base. However on hooking with a project that I downloaded from git, function addresses that I save in an extern variable in the subject code, they are coming out different in the profiler library. That is messing up the function pointer comparison between hooked and saved functions. Function address in subject code main file, breakpoint is inside the _penter hook function in the profiler code currently The same entry is showing a different

How do I run the Visual Studio 2012 memory profiler? I'm getting the error DA0002

跟風遠走 提交于 2019-12-01 21:32:14
问题 I'm trying to run the VS12 memory profiler on a WinForms project but when I do, the application starts up, it appears to be working correctly, but then the report comes up blank. In the Error List, I am getting this error... Error 1 DA0002: It appears that the file was collected without properly setting the environment variables with VSPerfCLREnv.cmd. Symbols for managed binaries may not resolve. The performance profiler worked fine. Is there something I'm supposed to do before running the

How do I run the Visual Studio 2012 memory profiler? I'm getting the error DA0002

霸气de小男生 提交于 2019-12-01 19:51:10
I'm trying to run the VS12 memory profiler on a WinForms project but when I do, the application starts up, it appears to be working correctly, but then the report comes up blank. In the Error List, I am getting this error... Error 1 DA0002: It appears that the file was collected without properly setting the environment variables with VSPerfCLREnv.cmd. Symbols for managed binaries may not resolve. The performance profiler worked fine. Is there something I'm supposed to do before running the memory profiler? Running VSPerfCLREnv.cmd in a command window doesn't seem like it would do anything for

Finding where memory was last freed?

喜欢而已 提交于 2019-12-01 19:47:26
Very general: Is there an easy way to tell which line of code last freed a block of memory when an access violation occurs? Less general: My understanding of profilers is that they override the allocation and deallocation processes. If this is true, might they happen to store the line of code that last freed a section of memory so that when it later crashes because of an access violation, you know what freed it last? Specifics: Windows, ANSI C, using Visual Studio Yes! Install the Windows Debugging Tools and use Application Verifier . File -> Add Application, select your .exe Under Basics,