Home » U++ TheIDE » U++ TheIDE: Compiling, Linking, Debugging of your packages » Problems debugging with Visual C++
Re: Problems debugging with Visual C++ [message #43662 is a reply to message #43661] |
Thu, 18 September 2014 13:06   |
 |
mirek
Messages: 14261 Registered: November 2005
|
Ultimate Member |
|
|
Ops, no need.
I guess I have found it. Such a stupid bug... 
Please try to replace this method:
const VectorMap<int, Pdb::CpuRegister>& Pdb::GetRegisterList()
{
static VectorMap<int, CpuRegister> r32;
ONCELOCK {
#define CPU_REG(sym_, context_var, kind_, name_, flags_) { CpuRegister& r = r32.Add(sym_); r.sym = sym_; r.kind = kind_; r.name = name_; r.flags = flags_; }
#include "i386.cpu"
#undef CPU_REG
}
#ifdef CPU_64
static VectorMap<int, CpuRegister> r64;
ONCELOCK {
#define CPU_REG(sym_, context_var, kind_, name_, flags_) { CpuRegister& r = r64.Add(sym_); r.sym = sym_; r.kind = kind_; r.name = name_; r.flags = flags_; }
#include "amd64.cpu"
#undef CPU_REG
}
return win64 ? r64 : r32;
#else
return r32;
#endif
}
|
|
|
 |
|
Problems debugging with Visual C++
|
 |
|
Re: Problems debugging with Visual C++
By: mirek on Tue, 16 September 2014 14:12
|
 |
|
Re: Problems debugging with Visual C++
|
 |
|
Re: Problems debugging with Visual C++
|
 |
|
Re: Problems debugging with Visual C++
By: mirek on Wed, 17 September 2014 15:36
|
 |
|
Re: Problems debugging with Visual C++
By: mirek on Wed, 17 September 2014 15:41
|
 |
|
Re: Problems debugging with Visual C++
|
 |
|
Re: Problems debugging with Visual C++
By: mirek on Wed, 17 September 2014 19:53
|
 |
|
Re: Problems debugging with Visual C++
By: mirek on Wed, 17 September 2014 19:56
|
 |
|
Re: Problems debugging with Visual C++
|
 |
|
Re: Problems debugging with Visual C++
By: mirek on Thu, 18 September 2014 10:51
|
 |
|
Re: Problems debugging with Visual C++
By: mirek on Thu, 18 September 2014 11:02
|
 |
|
Re: Problems debugging with Visual C++
|
 |
|
Re: Problems debugging with Visual C++
By: mirek on Thu, 18 September 2014 12:55
|
 |
|
Re: Problems debugging with Visual C++
By: mirek on Thu, 18 September 2014 13:06
|
 |
|
Re: Problems debugging with Visual C++
|
 |
|
Re: Problems debugging with Visual C++
|
 |
|
Re: Problems debugging with Visual C++
By: mirek on Thu, 18 September 2014 13:53
|
 |
|
Re: Problems debugging with Visual C++
|
 |
|
Re: Problems debugging with Visual C++
By: mirek on Thu, 18 September 2014 23:20
|
 |
|
Re: Problems debugging with Visual C++
By: cbpporter on Fri, 19 September 2014 11:38
|
Goto Forum:
Current Time: Tue Jun 24 17:58:42 CEST 2025
Total time taken to generate the page: 0.04557 seconds
|