예제 #1
0
 public HeaderItem(ReadyToRunSectionType id, ObjectNode node, ISymbolNode startSymbol, ISymbolNode endSymbol)
 {
     Id          = id;
     Node        = node;
     StartSymbol = startSymbol;
     EndSymbol   = endSymbol;
 }
예제 #2
0
 public HeaderItem(ReadyToRunSectionType id, ObjectNode node, ISymbolNode startSymbol, ISymbolNode endSymbol)
 {
     Id = id;
     Node = node;
     StartSymbol = startSymbol;
     EndSymbol = endSymbol;
 }
예제 #3
0
 public void Add(ReadyToRunSectionType id, ObjectNode node, ISymbolNode startSymbol)
 {
     _items.Add(new HeaderItem(id, node, startSymbol));
 }
예제 #4
0
 internal void Add(ReadyToRunSectionType id, ObjectNode node, ISymbolNode startSymbol, ISymbolNode endSymbol = null)
 {
     _items.Add(new HeaderItem(id, node, startSymbol, endSymbol));
 }
예제 #5
0
 private static extern IntPtr GetModuleSection(IntPtr module, ReadyToRunSectionType section, out int length);
예제 #6
0
 public void Add(ReadyToRunSectionType id, DependencyNodeCore <NodeFactory> node, ISymbolNode startSymbol)
 {
     _items.Add(new HeaderItem(id, node, startSymbol));
 }
예제 #7
0
 public HeaderItem(ReadyToRunSectionType id, DependencyNodeCore <NodeFactory> node, ISymbolNode startSymbol)
 {
     Id          = id;
     Node        = node;
     StartSymbol = startSymbol;
 }
예제 #8
0
 internal static IntPtr RhGetModuleSection(TypeManagerHandle module, ReadyToRunSectionType section, out int length)
 {
     return(RhGetModuleSection(ref module, section, out length));
 }
예제 #9
0
 private static extern IntPtr RhGetModuleSection(ref TypeManagerHandle module, ReadyToRunSectionType section, out int length);
예제 #10
0
 internal static extern IntPtr RhGetModuleSection(IntPtr module, ReadyToRunSectionType section, out int length);
예제 #11
0
 public ReadyToRunSection(ReadyToRunSectionType type, int rva, int size)
 {
     Type = type;
     RelativeVirtualAddress = rva;
     Size = size;
 }
예제 #12
0
 private static extern IntPtr GetModuleSection(IntPtr module, ReadyToRunSectionType section, out int length);
예제 #13
0
 internal void Add(ReadyToRunSectionType id, ObjectNode node, ISymbolNode startSymbol, ISymbolNode endSymbol = null)
 {
     _items.Add(new HeaderItem(id, node, startSymbol, endSymbol));
 }
예제 #14
0
 internal static extern IntPtr RhGetModuleSection(IntPtr module, ReadyToRunSectionType section, out int length);