Diff for /gforth/prim between versions 1.244 and 1.246

version 1.244, 2009/10/05 15:54:28 version 1.246, 2010/04/05 22:17:56
Line 1 Line 1
 \ Gforth primitives  \ Gforth primitives
   
 \ Copyright (C) 1995,1996,1997,1998,2000,2003,2004,2005,2006,2007,2008 Free Software Foundation, Inc.  \ Copyright (C) 1995,1996,1997,1998,2000,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
   
 \ This file is part of Gforth.  \ This file is part of Gforth.
   
Line 233  SET_IP(DOES_CODE1(CFA)); Line 233  SET_IP(DOES_CODE1(CFA));
 ""just a slot to have an encoding for the DOESJUMP,   ""just a slot to have an encoding for the DOESJUMP, 
 which is no longer used anyway (!! eliminate this)""  which is no longer used anyway (!! eliminate this)""
   
   (doabicode) ( s:... f:... -- s:... f:...)       gforth-internal paren_doabicode
   ""run-time routine for ABI-CODE definitions""
   struct abi_code_ret_t {  
       Cell *sp; 
       double * fp; 
   } ret = ((struct abi_code_ret_t(*)(Cell *, double *))(PFA(CFA)))(sp, fp);
   sp = ret.sp;
   fp = ret.fp;
   #ifdef NO_IP
   INST_TAIL;
   goto *next_code;
   #endif /* defined(NO_IP) */
   
 \F [endif]  \F [endif]
   
 \g control  \g control
Line 625  k ( R:w R:w1 R:w2 R:w3 R:w4 -- w R:w R:w Line 638  k ( R:w R:w1 R:w2 R:w3 R:w4 -- w R:w R:w
   
 \ digit is high-level: 0/0%  \ digit is high-level: 0/0%
   
   abi-call        ( #a_callee s:... f:... -- s:... f:... )        gforth  abi_call
   struct abi_code_ret_t {  
       Cell *sp; 
       double * fp; 
   } ret = ((struct abi_code_ret_t(*)(Cell *, double *))(a_callee))(sp, fp);
   sp = ret.sp;
   fp = ret.fp;
   
 \g strings  \g strings
   
 move    ( c_from c_to ucount -- )               core  move    ( c_from c_to ucount -- )               core

Removed from v.1.244  
changed lines
  Added in v.1.246


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>