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