mirror of https://github.com/icsharpcode/ILSpy.git
7 changed files with 533 additions and 4 deletions
@ -0,0 +1,140 @@
@@ -0,0 +1,140 @@
|
||||
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
// software and associated documentation files (the "Software"), to deal in the Software
|
||||
// without restriction, including without limitation the rights to use, copy, modify, merge,
|
||||
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
|
||||
// to whom the Software is furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in all copies or
|
||||
// substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
||||
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
||||
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
using System; |
||||
using System.Collections.Generic; |
||||
using System.Linq; |
||||
using System.Reflection.Metadata; |
||||
using System.Reflection.Metadata.Ecma335; |
||||
using System.Runtime.InteropServices; |
||||
using System.Text; |
||||
using System.Threading.Tasks; |
||||
using System.Windows.Controls; |
||||
using ICSharpCode.Decompiler; |
||||
using ICSharpCode.Decompiler.Disassembler; |
||||
using ICSharpCode.Decompiler.IL; |
||||
using ICSharpCode.Decompiler.Metadata; |
||||
using ICSharpCode.ILSpy.TextView; |
||||
using ICSharpCode.ILSpy.TreeNodes; |
||||
|
||||
namespace ICSharpCode.ILSpy.Metadata |
||||
{ |
||||
class EventMapTableTreeNode : ILSpyTreeNode |
||||
{ |
||||
private PEFile module; |
||||
|
||||
public EventMapTableTreeNode(PEFile module) |
||||
{ |
||||
this.module = module; |
||||
} |
||||
|
||||
public override object Text => $"12 EventMap ({module.Metadata.GetTableRowCount(TableIndex.EventMap)})"; |
||||
|
||||
public override object Icon => Images.Literal; |
||||
|
||||
public unsafe override bool View(ViewModels.TabPageModel tabPage) |
||||
{ |
||||
tabPage.Title = Text.ToString(); |
||||
tabPage.SupportsLanguageSwitching = false; |
||||
|
||||
var view = Helpers.PrepareDataGrid(tabPage); |
||||
var metadata = module.Metadata; |
||||
|
||||
var list = new List<EventMapEntry>(); |
||||
|
||||
var length = metadata.GetTableRowCount(TableIndex.EventMap); |
||||
byte* ptr = metadata.MetadataPointer; |
||||
int metadataOffset = module.Reader.PEHeaders.MetadataStartOffset; |
||||
for (int rid = 1; rid <= length; rid++) { |
||||
list.Add(new EventMapEntry(module, ptr, metadataOffset, rid)); |
||||
} |
||||
|
||||
view.ItemsSource = list; |
||||
|
||||
tabPage.Content = view; |
||||
return true; |
||||
} |
||||
|
||||
readonly struct EventMap |
||||
{ |
||||
public readonly TypeDefinitionHandle Parent; |
||||
public readonly EventDefinitionHandle EventList; |
||||
|
||||
public unsafe EventMap(byte *ptr, int typeDefSize, int eventDefSize) |
||||
{ |
||||
Parent = MetadataTokens.TypeDefinitionHandle(Helpers.GetRowNum(ptr, typeDefSize)); |
||||
EventList = MetadataTokens.EventDefinitionHandle(Helpers.GetRowNum(ptr + typeDefSize, eventDefSize)); |
||||
} |
||||
} |
||||
|
||||
unsafe struct EventMapEntry |
||||
{ |
||||
readonly PEFile module; |
||||
readonly MetadataReader metadata; |
||||
readonly EventMap eventMap; |
||||
|
||||
public int RID { get; } |
||||
|
||||
public int Token => 0x12000000 | RID; |
||||
|
||||
public int Offset { get; } |
||||
|
||||
[StringFormat("X8")] |
||||
public int Parent => MetadataTokens.GetToken(eventMap.Parent); |
||||
|
||||
public string ParentTooltip { |
||||
get { |
||||
ITextOutput output = new PlainTextOutput(); |
||||
var context = new GenericContext(default(TypeDefinitionHandle), module); |
||||
((EntityHandle)eventMap.Parent).WriteTo(module, output, context); |
||||
return output.ToString(); |
||||
} |
||||
} |
||||
|
||||
[StringFormat("X8")] |
||||
public int EventList => MetadataTokens.GetToken(eventMap.EventList); |
||||
|
||||
public string EventListTooltip { |
||||
get { |
||||
ITextOutput output = new PlainTextOutput(); |
||||
var context = new GenericContext(default(TypeDefinitionHandle), module); |
||||
((EntityHandle)eventMap.EventList).WriteTo(module, output, context); |
||||
return output.ToString(); |
||||
} |
||||
} |
||||
|
||||
public EventMapEntry(PEFile module, byte* ptr, int metadataOffset, int row) |
||||
{ |
||||
this.module = module; |
||||
this.metadata = module.Metadata; |
||||
this.RID = row; |
||||
var rowOffset = metadata.GetTableMetadataOffset(TableIndex.EventMap) |
||||
+ metadata.GetTableRowSize(TableIndex.EventMap) * (row - 1); |
||||
this.Offset = metadataOffset + rowOffset; |
||||
int typeDefSize = metadata.GetTableRowCount(TableIndex.TypeDef) < ushort.MaxValue ? 2 : 4; |
||||
int eventDefSize = metadata.GetTableRowCount(TableIndex.Event) < ushort.MaxValue ? 2 : 4; |
||||
this.eventMap = new EventMap(ptr + rowOffset, typeDefSize, eventDefSize); |
||||
} |
||||
} |
||||
|
||||
public override void Decompile(Language language, ITextOutput output, DecompilationOptions options) |
||||
{ |
||||
language.WriteCommentLine(output, "EventMap"); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,138 @@
@@ -0,0 +1,138 @@
|
||||
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
// software and associated documentation files (the "Software"), to deal in the Software
|
||||
// without restriction, including without limitation the rights to use, copy, modify, merge,
|
||||
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
|
||||
// to whom the Software is furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in all copies or
|
||||
// substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
||||
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
||||
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
using System; |
||||
using System.Collections.Generic; |
||||
using System.Linq; |
||||
using System.Reflection.Metadata; |
||||
using System.Reflection.Metadata.Ecma335; |
||||
using System.Runtime.InteropServices; |
||||
using System.Text; |
||||
using System.Threading.Tasks; |
||||
using System.Windows.Controls; |
||||
using ICSharpCode.Decompiler; |
||||
using ICSharpCode.Decompiler.Disassembler; |
||||
using ICSharpCode.Decompiler.IL; |
||||
using ICSharpCode.Decompiler.Metadata; |
||||
using ICSharpCode.ILSpy.TextView; |
||||
using ICSharpCode.ILSpy.TreeNodes; |
||||
|
||||
namespace ICSharpCode.ILSpy.Metadata |
||||
{ |
||||
class InterfaceImplTableTreeNode : ILSpyTreeNode |
||||
{ |
||||
private PEFile module; |
||||
|
||||
public InterfaceImplTableTreeNode(PEFile module) |
||||
{ |
||||
this.module = module; |
||||
} |
||||
|
||||
public override object Text => $"09 InterfaceImpl ({module.Metadata.GetTableRowCount(TableIndex.InterfaceImpl)})"; |
||||
|
||||
public override object Icon => Images.Literal; |
||||
|
||||
public unsafe override bool View(ViewModels.TabPageModel tabPage) |
||||
{ |
||||
tabPage.Title = Text.ToString(); |
||||
tabPage.SupportsLanguageSwitching = false; |
||||
|
||||
var view = Helpers.PrepareDataGrid(tabPage); |
||||
var metadata = module.Metadata; |
||||
|
||||
var list = new List<InterfaceImplEntry>(); |
||||
|
||||
var length = metadata.GetTableRowCount(TableIndex.InterfaceImpl); |
||||
byte* ptr = metadata.MetadataPointer; |
||||
int metadataOffset = module.Reader.PEHeaders.MetadataStartOffset; |
||||
for (int rid = 1; rid <= length; rid++) { |
||||
list.Add(new InterfaceImplEntry(module, ptr, metadataOffset, rid)); |
||||
} |
||||
|
||||
view.ItemsSource = list; |
||||
|
||||
tabPage.Content = view; |
||||
return true; |
||||
} |
||||
|
||||
readonly struct InterfaceImpl |
||||
{ |
||||
public readonly EntityHandle Class; |
||||
public readonly EntityHandle Interface; |
||||
|
||||
public unsafe InterfaceImpl(byte *ptr, int classSize, int interfaceSize) |
||||
{ |
||||
Class = MetadataTokens.TypeDefinitionHandle(Helpers.GetRowNum(ptr, classSize)); |
||||
Interface = Helpers.FromTypeDefOrRefTag((uint)Helpers.GetRowNum(ptr + classSize, interfaceSize)); |
||||
} |
||||
} |
||||
|
||||
unsafe struct InterfaceImplEntry |
||||
{ |
||||
readonly PEFile module; |
||||
readonly MetadataReader metadata; |
||||
readonly InterfaceImpl interfaceImpl; |
||||
|
||||
public int RID { get; } |
||||
|
||||
public int Token => 0x09000000 | RID; |
||||
|
||||
public int Offset { get; } |
||||
|
||||
[StringFormat("X8")] |
||||
public int Class => MetadataTokens.GetToken(interfaceImpl.Class); |
||||
|
||||
public string ClassTooltip { |
||||
get { |
||||
ITextOutput output = new PlainTextOutput(); |
||||
var context = new GenericContext(default(TypeDefinitionHandle), module); |
||||
((EntityHandle)interfaceImpl.Class).WriteTo(module, output, context); |
||||
return output.ToString(); |
||||
} |
||||
} |
||||
|
||||
[StringFormat("X8")] |
||||
public int Interface => MetadataTokens.GetToken(interfaceImpl.Interface); |
||||
|
||||
public string InterfaceTooltip { |
||||
get { |
||||
ITextOutput output = new PlainTextOutput(); |
||||
var context = new GenericContext(default(TypeDefinitionHandle), module); |
||||
((EntityHandle)interfaceImpl.Interface).WriteTo(module, output, context); |
||||
return output.ToString(); |
||||
} |
||||
} |
||||
|
||||
public InterfaceImplEntry(PEFile module, byte* ptr, int metadataOffset, int row) |
||||
{ |
||||
this.module = module; |
||||
this.metadata = module.Metadata; |
||||
this.RID = row; |
||||
var rowOffset = metadata.GetTableMetadataOffset(TableIndex.InterfaceImpl) |
||||
+ metadata.GetTableRowSize(TableIndex.InterfaceImpl) * (row - 1); |
||||
this.Offset = metadataOffset + rowOffset; |
||||
this.interfaceImpl = new InterfaceImpl(ptr + rowOffset, metadata.GetTableRowCount(TableIndex.TypeDef) < ushort.MaxValue ? 2 : 4, metadata.ComputeCodedTokenSize(16384, TableMask.TypeDef | TableMask.TypeRef | TableMask.TypeSpec)); |
||||
} |
||||
} |
||||
|
||||
public override void Decompile(Language language, ITextOutput output, DecompilationOptions options) |
||||
{ |
||||
language.WriteCommentLine(output, "InterfaceImpls"); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,140 @@
@@ -0,0 +1,140 @@
|
||||
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
// software and associated documentation files (the "Software"), to deal in the Software
|
||||
// without restriction, including without limitation the rights to use, copy, modify, merge,
|
||||
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
|
||||
// to whom the Software is furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in all copies or
|
||||
// substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
||||
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
||||
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
using System; |
||||
using System.Collections.Generic; |
||||
using System.Linq; |
||||
using System.Reflection.Metadata; |
||||
using System.Reflection.Metadata.Ecma335; |
||||
using System.Runtime.InteropServices; |
||||
using System.Text; |
||||
using System.Threading.Tasks; |
||||
using System.Windows.Controls; |
||||
using ICSharpCode.Decompiler; |
||||
using ICSharpCode.Decompiler.Disassembler; |
||||
using ICSharpCode.Decompiler.IL; |
||||
using ICSharpCode.Decompiler.Metadata; |
||||
using ICSharpCode.ILSpy.TextView; |
||||
using ICSharpCode.ILSpy.TreeNodes; |
||||
|
||||
namespace ICSharpCode.ILSpy.Metadata |
||||
{ |
||||
class PropertyMapTableTreeNode : ILSpyTreeNode |
||||
{ |
||||
private PEFile module; |
||||
|
||||
public PropertyMapTableTreeNode(PEFile module) |
||||
{ |
||||
this.module = module; |
||||
} |
||||
|
||||
public override object Text => $"15 PropertyMap ({module.Metadata.GetTableRowCount(TableIndex.PropertyMap)})"; |
||||
|
||||
public override object Icon => Images.Literal; |
||||
|
||||
public unsafe override bool View(ViewModels.TabPageModel tabPage) |
||||
{ |
||||
tabPage.Title = Text.ToString(); |
||||
tabPage.SupportsLanguageSwitching = false; |
||||
|
||||
var view = Helpers.PrepareDataGrid(tabPage); |
||||
var metadata = module.Metadata; |
||||
|
||||
var list = new List<PropertyMapEntry>(); |
||||
|
||||
var length = metadata.GetTableRowCount(TableIndex.PropertyMap); |
||||
byte* ptr = metadata.MetadataPointer; |
||||
int metadataOffset = module.Reader.PEHeaders.MetadataStartOffset; |
||||
for (int rid = 1; rid <= length; rid++) { |
||||
list.Add(new PropertyMapEntry(module, ptr, metadataOffset, rid)); |
||||
} |
||||
|
||||
view.ItemsSource = list; |
||||
|
||||
tabPage.Content = view; |
||||
return true; |
||||
} |
||||
|
||||
readonly struct PropertyMap |
||||
{ |
||||
public readonly TypeDefinitionHandle Parent; |
||||
public readonly PropertyDefinitionHandle PropertyList; |
||||
|
||||
public unsafe PropertyMap(byte *ptr, int typeDefSize, int propertyDefSize) |
||||
{ |
||||
Parent = MetadataTokens.TypeDefinitionHandle(Helpers.GetRowNum(ptr, typeDefSize)); |
||||
PropertyList = MetadataTokens.PropertyDefinitionHandle(Helpers.GetRowNum(ptr + typeDefSize, propertyDefSize)); |
||||
} |
||||
} |
||||
|
||||
unsafe struct PropertyMapEntry |
||||
{ |
||||
readonly PEFile module; |
||||
readonly MetadataReader metadata; |
||||
readonly PropertyMap propertyMap; |
||||
|
||||
public int RID { get; } |
||||
|
||||
public int Token => 0x15000000 | RID; |
||||
|
||||
public int Offset { get; } |
||||
|
||||
[StringFormat("X8")] |
||||
public int Parent => MetadataTokens.GetToken(propertyMap.Parent); |
||||
|
||||
public string ParentTooltip { |
||||
get { |
||||
ITextOutput output = new PlainTextOutput(); |
||||
var context = new GenericContext(default(TypeDefinitionHandle), module); |
||||
((EntityHandle)propertyMap.Parent).WriteTo(module, output, context); |
||||
return output.ToString(); |
||||
} |
||||
} |
||||
|
||||
[StringFormat("X8")] |
||||
public int EventList => MetadataTokens.GetToken(propertyMap.PropertyList); |
||||
|
||||
public string PropertyListTooltip { |
||||
get { |
||||
ITextOutput output = new PlainTextOutput(); |
||||
var context = new GenericContext(default(TypeDefinitionHandle), module); |
||||
((EntityHandle)propertyMap.PropertyList).WriteTo(module, output, context); |
||||
return output.ToString(); |
||||
} |
||||
} |
||||
|
||||
public PropertyMapEntry(PEFile module, byte* ptr, int metadataOffset, int row) |
||||
{ |
||||
this.module = module; |
||||
this.metadata = module.Metadata; |
||||
this.RID = row; |
||||
var rowOffset = metadata.GetTableMetadataOffset(TableIndex.PropertyMap) |
||||
+ metadata.GetTableRowSize(TableIndex.PropertyMap) * (row - 1); |
||||
this.Offset = metadataOffset + rowOffset; |
||||
int typeDefSize = metadata.GetTableRowCount(TableIndex.TypeDef) < ushort.MaxValue ? 2 : 4; |
||||
int propertyDefSize = metadata.GetTableRowCount(TableIndex.Property) < ushort.MaxValue ? 2 : 4; |
||||
this.propertyMap = new PropertyMap(ptr + rowOffset, typeDefSize, propertyDefSize); |
||||
} |
||||
} |
||||
|
||||
public override void Decompile(Language language, ITextOutput output, DecompilationOptions options) |
||||
{ |
||||
language.WriteCommentLine(output, "PropertyMap"); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue