Ejemplo n.º 1
0
        public static CodeAddress call (CodeVector code, int jumpIndex)
        {
#if HAS_PERFORMANCE_COUNTERS
           if (Call.bounceCounter != null) Call.bounceCounter.Increment();
#endif
#if ALWAYS_THROW_TO_TRAMPOLINE
           throw new CodeVectorCallException (code, jumpIndex);
#else
           return code.Address (jumpIndex);
#endif
        }
Ejemplo n.º 2
0
        public static CodeAddress call(CodeVector code, int jumpIndex)
        {
#if HAS_PERFORMANCE_COUNTERS
            if (Call.bounceCounter != null)
            {
                Call.bounceCounter.Increment();
            }
#endif
#if ALWAYS_THROW_TO_TRAMPOLINE
            throw new CodeVectorCallException(code, jumpIndex);
#else
            return(code.Address(jumpIndex));
#endif
        }
Ejemplo n.º 3
0
 public CodeVectorCallException (CodeVector rtn, int j)
     : base (rtn.Address (j))
 {}
Ejemplo n.º 4
0
 public CodeVectorCallException(CodeVector rtn, int j)
     : base(rtn.Address(j))
 {
 }