示例#1
0
 public JitCodeGenerator(MemoryManager memoryManager = null, MemoryAllocType allocType = MemoryAllocType.Freeable)
 {
     _memoryManager = memoryManager;
     _allocType = allocType;
 }
示例#2
0
 public abstract IntPtr Alloc(long CodeSize, MemoryAllocType allocType = MemoryAllocType.Freeable);
示例#3
0
 public static extern IntPtr VirtualAllocEx(IntPtr hProcess, IntPtr lpAddress, UInt32 dwSize, MemoryAllocType flAllocationType, MemoryPageProtect flProtect);