Skip to content

Commit 3b0d344

Browse files
authored
Merge pull request #1429 from microsoft/main
Merge 'main' into 'release_mdd'
2 parents 3ac1f31 + 9f35772 commit 3b0d344

File tree

3 files changed

+37
-5
lines changed

3 files changed

+37
-5
lines changed

src/MIDebugEngine/AD7.Impl/AD7Disassembly.cs

100644100755
+8-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,14 @@ public int GetCodeContext(ulong uCodeLocationId, out IDebugCodeContext2 ppCodeCo
3434
public int GetCodeLocationId(IDebugCodeContext2 pCodeContext, out ulong puCodeLocationId)
3535
{
3636
AD7MemoryAddress addr = pCodeContext as AD7MemoryAddress;
37-
puCodeLocationId = addr.Address;
38-
return Constants.S_OK;
37+
if (addr != null)
38+
{
39+
puCodeLocationId = addr.Address;
40+
return Constants.S_OK;
41+
}
42+
43+
puCodeLocationId = 0;
44+
return Constants.E_FAIL;
3945
}
4046

4147
public int GetCurrentLocation(out ulong puCodeLocationId)

src/MIDebugEngine/AD7.Impl/AD7Property.cs

+28-2
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,37 @@ public int GetMemoryContext(out IDebugMemoryContext2 ppMemory)
229229
{
230230
return AD7_HRESULT.S_GETMEMORYCONTEXT_NO_MEMORY_CONTEXT;
231231
}
232-
v = v.Trim();
232+
233+
if ((v[0] == '[') && (v[v.Length-1] == ']'))
234+
{
235+
// this is an array evaluation result from GDB, which does not contain an address
236+
// VS on the other hand supports direct array evaluations without address operator
237+
// therefore we need to re-evaluate with an address operator
238+
//
239+
VariableInformation viArray = new VariableInformation("&(" + _variableInformation.FullName() + ")", (VariableInformation)_variableInformation);
240+
viArray.SyncEval();
241+
if (viArray.Error)
242+
{
243+
return AD7_HRESULT.S_GETMEMORYCONTEXT_NO_MEMORY_CONTEXT;
244+
}
245+
v = viArray.Value;
246+
v.Trim();
247+
if (v.Length == 0)
248+
{
249+
return AD7_HRESULT.S_GETMEMORYCONTEXT_NO_MEMORY_CONTEXT;
250+
}
251+
}
252+
233253
if (v[0] == '{')
234254
{
255+
var index = v.IndexOf('}');
256+
if (index == -1)
257+
{
258+
// syntax error!
259+
return AD7_HRESULT.S_GETMEMORYCONTEXT_NO_MEMORY_CONTEXT;
260+
}
235261
// strip type name and trailing spaces
236-
v = v.Substring(v.IndexOf('}') + 1);
262+
v = v.Substring(index+1);
237263
v = v.Trim();
238264
}
239265
int i = v.IndexOf(' ');

src/SSHDebugPS/SSHDebugPS.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<TargetFramework>net472</TargetFramework>
1414
<UseWPF>true</UseWPF>
1515
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
16-
<IncludePackageReferencesDuringMarkupCompilation>false</IncludePackageReferencesDuringMarkupCompilation>
16+
<IncludePackageReferencesDuringMarkupCompilation>true</IncludePackageReferencesDuringMarkupCompilation>
1717
</PropertyGroup>
1818

1919
<Import Project="..\..\build\Debugger.PIAs.NonPortable.Packages.settings.targets" />

0 commit comments

Comments
 (0)