| 2239 | //int64 BfDebuggerReadMemory(int64 addr); |
| 2240 | |
| 2241 | addr_target DebugTarget::GetStaticAddress(DbgVariable* dwVariable) |
| 2242 | { |
| 2243 | DbgAddrType addrType; |
| 2244 | return (addr_target)dwVariable->mCompileUnit->mDbgModule->EvaluateLocation(NULL, dwVariable->mLocationData, dwVariable->mLocationLen, NULL, &addrType); |
| 2245 | } |
| 2246 | |
| 2247 | bool DebugTarget::GetValueByNameInBlock_Helper(DbgSubprogram* dwSubprogram, DbgBlock* dwBlock, String& name, WdStackFrame* stackFrame, intptr* outAddr, DbgType** outType, DbgAddrType* outAddrType) |
| 2248 | { |
no test coverage detected