Tagged Questions
The aqtime tag has no wiki summary.
11
votes
7answers
894 views
Is There A Fast GetToken Routine For Delphi?
In my program, I process millions of strings that have a special character, e.g. "|" to separate tokens within each string. I have a function to return the n'th token, and this is it:
function ...
9
votes
4answers
2k views
How Does AQTime Do It?
I've been testing out the performance and memory profiler AQTime to see if it's worthwhile spending those big $$$ for it for my Delphi application.
What amazes me is how it can give you source line ...
7
votes
2answers
663 views
Getting DUnit Test Coverage stats using FinalBuilder and AQTime
We have a large Delphi project (1.5 million lines of code), and we're moving to using agile processes.
We already have a continous integration environment (FinalBuilder) which I've updated to ...
6
votes
5answers
398 views
Why AQTime slows execution even when profiling is not on, and can anything be done for it?
In AQTime for Delphi, it boasts to be very fast to get to the trouble spots by using areas and triggers etc. But it seems to me, that especially if you have very much code in the areas to profile, ...
5
votes
2answers
240 views
Delphi 2010 - Wininet running out of handles
I have an app that makes intensively uses of Wininet functions to get some data from internet. I am getting a very odd handle related error messages sometimes:
Internal error in ConnectToHost when ...
5
votes
3answers
604 views
Is VTune Worth Considering for Delphi?
Running through all the questions on profiling tools, I was surprised to discover VTune by Intel that I hadn't heard of before. At $700, it is even more expensive than AQTime.
But before I make the ...
4
votes
5answers
177 views
C++ _inline is being ignored in a singleton and showing up in my profiler. How come?
I have a lot of classes in my project accessed by a singleton like so:
_inline GUI_BS_Map* GUI_GetBS_Map()
{
static GUI_BS_Map obj;
return &obj;
};
As I understand it, this code should ...
2
votes
1answer
127 views
Can AQTime performance profiler profile vcl source?
I am using Delphi 2007 / XE with AQTime 6. I wrote a test application that create few TButton instances. I have turn on necessary compiling and linking switches to make it work with AQTime.
When I ...
2
votes
1answer
45 views
How to prevent functions from being excluded from coverage profiling?
We're using AQTime's coverage profiler to check coverage results for unit tests. It seems to generally work okay, but has a nasty habit of overestimating coverage because some functions don't appear ...
1
vote
1answer
174 views
GlowCode vs. AQTime C++ profiling performance in the real world?
I am a user of AQTime Pro and while the tool is pretty nice, it does have a horrible performance impact on the application under test if you're not careful. (Even if you are careful, the performance ...
1
vote
2answers
453 views
How to use AQtime (free) in Delphi XE?
Embarcadero says that I got some free version of AQtime when I purchased my Delphi XE license. However, today I tried to run for the first time AQtime and I got an error message: 'You are using AQTime ...
1
vote
1answer
401 views
How to use AQTime's memory allocation profiler in a program that uses a large amount of memory?
I'm finding AQTime hard to use because it interferes with the original program too much. If I have a program that uses, for example, 300MB of ram I can use AQTime's allocation profiler without a ...
1
vote
1answer
514 views
C/C++ AQtime profiler questions
I need to profile my console program with AQ. It is in one big file (for optimizations purposes).
void function1();
void function2()
// etc more declarations
int main{
//alot of loops, and ...
1
vote
2answers
791 views
Profiling a classic ASP application using AQTime
We have developed a large number of websites using ASP (jscript flavour), talking to the underlying intelligence layer (written in Delphi) through COM. These websites are running on IIS (5 and 6).
...
0
votes
0answers
83 views
Why does this code not generate more soft page faults? [closed]
I'm looking into possible causes of and solutions for page faults. I've created 2 Qt models to display strings:
CleanModel: containing a 2 dimensional array of QChar-array's
ListModel: containing a ...
0
votes
1answer
81 views
AQTime: “Force Garbage Collection” button grayed out
I googled around a bit, but couldn't find a reason.
My app is mixed (C#, VB.NET, C++/CLI and native C++). AQTime claims to be able to profile this kind of application, that's why I chose it.
It does ...
0
votes
2answers
103 views
Can I profile my code to see what is creating a lot of threads?
I'm running Embarcadero RAD Studio 2010 (C++) and have used AQTime a bit to check for some leaks. I wonder if there is a good way to pinpoint the origin in my code of a large amount of threads that ...
0
votes
2answers
567 views
AQtime not working properly on windows vista / 7 with multi-core processor
I'm tryin to run AQtime (v5.45), as preformance profiler under windows vista or 7 on my multi-core laptop but it seems that the program is not working correctly, he does not show any routine and seems ...
0
votes
1answer
162 views
measuring code coverage of an unit test using aqtime
I want to measure the code coverage of an unit test with aqtime. The application to test uses a lot of boost functionality. Now these boost methods appear in the test report. With these methods in the ...
0
votes
1answer
82 views
In AQTime 4, how can performance results be compared when they came from builds installed in different directories?
For example, if I profile:
C:\Program Files\Application Build 1\MyApp.exe
C:\Program Files\Application Build 2\MyApp.exe
And I then import both sets of results into a single AQTime project and ...