Suma

3,788
Reputation
442 views

Registered User

Name Suma
Member for 1 year
Seen 22 hours ago
Website
Location Czech Republic
Age 38

Bohemia Interactive Lead Programmer

Areas of interest:

  • Native Win32 programming
  • Visual C++
  • C++ templates
  • Multicore scalability
  • DirectX, 3D graphics
  • Performance optimizations
Nov
13
comment Visual Studio switches from disassembler to source each time I step
It happens in C++ x86 native. I have tried C# now and it does not happen there.
Nov
13
comment Visual Studio switches from disassembler to source each time I step
For the record: the answer was auto-accepted by the bounty system, it does not work.
Nov
12
comment Visual Studio switches from disassembler to source each time I step
Why? This does not make any sense to me. While debugging in disassembly, it is normal to have source and symbol information displayed together with the disassembly. This is not a problem (actually this is important for efficient debugging). The problem is switching to source window from unknown reason. While it is possible removing pdbs would really prevent any source being used, this is not what I am for.
Nov
12
comment Visual Studio switches from disassembler to source each time I step
Did not work (I saw no idea why it should, but being desperate, I have tried it anyway)
Nov
12
comment Visual Studio switches from disassembler to source each time I step
Nice idea, however does not work. Even when I close the source window, it is open again once I press F10/F11.
Nov
7
comment Visual Studio switches from disassembler to source each time I step
I have this option turned on. Thanks for trying, though.
Nov
7
comment Visual Studio switches from disassembler to source each time I step
Copying setting files sound like a nice idea. Perhaps you can create a separate answer for that, or edit this answer, so that if it works I can accept it? Once I will be trying it, I will also compare the settings file, perhaps I will find the difference this way.
Nov
7
comment Visual Studio switches from disassembler to source each time I step
The keys work, the problem is after they perform their action, the focus changes to source window.
Nov
6
revised Visual Studio switches from disassembler to source each time I step
More specific SW platform
Nov
3
asked Visual Studio switches from disassembler to source each time I step
Oct
14
revised Declare but not define inner struct/class - legal C++ or not?
Fixed another code issue (private member used outside of the class)
Oct
14
asked Declare but not define inner struct/class - legal C++ or not?
Oct
13
revised Any workarounds for non-static member array initialization?
Fixed "setter" access code bug.
Sep
29
revised How to avoid heap fragmentation?
Name seemed like a typo (fragmentation is the bad thing to avoid)
Sep
23
comment How can I write a lock free structure?
At the "concurrentlinkedhashmap" there is an interesting comment written now: Note: A rare race condition was uncovered by Greg Luck (Ehcache). This algorithm is deprecated. I guess this shows what to expect when developing lock free data on your own.
Sep
18
awarded  Yearling
Sep
17
accepted Converting float to double
Sep
16
revised Arrays inside structs in C
Fixed code missing space, improved code formatting.
Sep
14
accepted Make compiler copy characters using movsd
Sep
14
comment Converting float to double
Please, specify the platform. Is this Windows on x86 (Win32) or x64 (Win64)? Or PPC, or perhaps some embedded plarform? The question is not answerable without knowing the platform.
Sep
14
revised Converting float to double
Extended based on comment
Sep
14
answered Converting float to double
Sep
9
comment Why doesn’t StackOverflow.com let me login with an OpenID delegate with a defined XRDS location?
Meta questions?
Sep
9
revised Are const arrays declared within a function stored on the stack?
Removed stackoverflow tag
Sep
9
comment How to implement a “private/restricted” function in C?
Are you sure the question was exactly like this? It does not make any sense to me. Perhaps if it would be about member functions, then it perhaps might have some merit, but ordinary functions?
Sep
9
comment How much speed-up from converting 3D maths to SSE or other SIMD?
I think your answer just confirms the point I have tried to made with my answer: if you want a speed up, do not convert your general 3D math, rather make your whole computaion SIMD friendly. Converting your 3D math will not help much, if at all. Still it seems most other posters disagree. Some superstitions seem to have deep roots.
Sep
8
accepted Arrays inside structs in C
Sep
8
comment Arrays inside structs in C
When defining structs to be able to interact with any API you need to be able to define exact memory layout of the structure. I think standard requires struct members to be ordered in the order specified, but it does not specify alignment. In practice all compilers provide alignment control as well.
Sep
8
revised Arrays inside structs in C
Adjusted to C++ syntax
Sep
8
answered Arrays inside structs in C
Aug
4
revised How do I convince my team to drop sourcesafe and move to SVN?
Added link to performance comparison SVN/SS
Aug
4
revised How do I convince my team to drop sourcesafe and move to SVN?
Added AnhkSVN link as per comment
Jul
31
accepted Can StretchRect be used with DF24 or INTZ surfaces? Can DF24 or INTZ be multisampled?
Jul
31
accepted How to make a named pipe not busy after client has disconnected?
Jul
28
answered How to make a named pipe not busy after client has disconnected?
Jul
28
asked How to make a named pipe not busy after client has disconnected?
Jul
28
revised Is this code thread-safe?
Extended atomicity analysis.
Jul
28
revised Is this code thread-safe?
Answer extended.
Jul
28
comment Is this code thread-safe?
I agree with the first part of the answer, I disagree with the second. Quite often there is way how to program thread safe and still avoid locking or other synchronization primitives, which is the subject of lock-less programming.
Jul
28
answered Is this code thread-safe?
Jul
23
revised Recommended Open Source Profilers
Added more experience
Jul
22
asked Some WinAPI to check which process created a named pipe?
Jul
22
comment How much speed-up from converting 3D maths to SSE or other SIMD?
The article conclusion agrees with my practical experience. I have converted our general purpose 3D math library into SIMD, profiling and timing carefully during the process, and what I have observed is almost exactly what is described in that article. It is hard for me to argue what is typical and what not, but in my experience working with isolated vectors (spread across miscellaneous data structures) is a lot more common than working with "vectors taken from arrays", which is what I ment by "large homogeneous data".
Jul
16
comment Make compiler copy characters using movsd
VS 2005. Are you sure about the source? In my case I can see memcpy.asm being called, with the same source implementing both memcpy and memmove.
Jul
16
comment Make compiler copy characters using movsd
... you are correct, but the problem is it optimized is away only when the compiler knows is is few bytes only (i.e. size is small compile time known constant). When it does not (size is not compile time known), it assumes the most likely case of large block and calls library implementation.
Jul
16
comment Make compiler copy characters using movsd
I am not optimizing for large amount of memory. I am optimizing for short copied sequences, and I have found memcpy setup overhead to be unacceptably high. Even a simple for loop as in my question performs better than it in such scenario.
Jul
16
answered Make compiler copy characters using movsd
Jul
16
revised Make compiler copy characters using movsd
Clarified copy size.
Jul
16
comment Make compiler copy characters using movsd
The block is under 1 KB. Sometimes a few bytes only, sometimes 10, sometimes ~200 B.
Jul
16
comment Make compiler copy characters using movsd
movsb would do as well. Note: while you are correct about size, movsd does not require DWORD alignment of target or source.