示例#1
0
 public void SetupJit(Mosa.Runtime.Vm.RuntimeMethod method)
 {
     /* Do nothing in this mock, as we're compiling every method to native anyways. */
     method.Address = IntPtr.Zero;
 }
示例#2
0
 /// <summary>
 /// Special resolution for internal calls.
 /// </summary>
 /// <param name="method">The internal call method to resolve.</param>
 /// <returns>The virtualAddress</returns>
 protected override long ResolveInternalCall(Mosa.Runtime.Vm.RuntimeMethod method)
 {
     return(base.ResolveInternalCall(method));
 }