1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
/*
* tclAppInit.c --
*
* Provides a default version of the main program and Tcl_AppInit
* procedure for Tcl applications (without Tk).
*
* Copyright (C) 2000 USC/ISI
* Copyright (c) 1993 The Regents of the University of California.
* Copyright (c) 1994-1995 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* SCCS: @(#) tclAppInit.c 1.17 96/03/26 12:45:29
*/
#include "config.h"
extern void init_misc(void);
extern EmbeddedTcl et_ns_lib;
extern EmbeddedTcl et_ns_ptypes;
/* MSVC requires this global var declaration to be outside of 'extern "C"' */
#ifdef MEMDEBUG_SIMULATIONS
#include "mem-trace.h"
MemTrace *globalMemTrace;
#endif
#define NS_BEGIN_EXTERN_C extern "C" {
#define NS_END_EXTERN_C }
NS_BEGIN_EXTERN_C
#ifdef HAVE_FENV_H
#include <fenv.h>
#endif /* HAVE_FENV_H */
/*
* The following variable is a special hack that is needed in order for
* Sun shared libraries to be used for Tcl.
*/
#ifdef TCL_TEST
EXTERN int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp));
#endif /* TCL_TEST */
/*
*----------------------------------------------------------------------
*
* main --
*
* This is the main program for the application.
*
* Results:
* None: Tcl_Main never returns here, so this procedure never
* returns either.
*
* Side effects:
* Whatever the application does.
*
*----------------------------------------------------------------------
*/
extern "C" int
nslibmain(int argc, char **argv)
{
Tcl_Main(argc, argv, Tcl_AppInit);
return 0; /* Needed only to prevent compiler warning. */
}
#if defined(__i386__) && defined(__GNUC__)
#define HAVE_NS_SETUP_FPU /* convenience flag to check on later */
/* This function is supposed to set up a uniform FPU state on all i386
* platforms. It may (should) be called instead of functions in the
* fe- family.
*/
static void ns_setup_fpu() {
static const int NS_FPU_CW_IC = 0x1000; /* Infty control(12): support +/- infinity */
static const int NS_FPU_CW_RC = 0x0000; /* Round control(11,10): to nearest */
static const int NS_FPU_CW_PC = 0x0200; /* Precision control(9,8): 53 bits */
static const int NS_FPU_CW_IEM = 0x0000; /* Interrupt enable mask(7): enabled */
static const int NS_FPU_CW_B6 = 0x0040; /* undefined, set to one in my FPU */
static const int NS_FPU_CW_PM = 0x0020; /* Precision mask(5), inexact exception: disabled */
static const int NS_FPU_CW_UM = 0x0010; /* Underflow mask(4): disabled */
static const int NS_FPU_CW_OM = 0x0000; /* Overflow mask(3): enabled */
static const int NS_FPU_CW_ZM = 0x0000; /* Zero divide mask(2): enabled */
static const int NS_FPU_CW_DM = 0x0002; /* Denormalized operand(1): disabled */
static const int NS_FPU_CW_IM = 0x0000; /* Invalid operation mask(0): enabled */
static const int NS_FPU_CW = NS_FPU_CW_IC
| NS_FPU_CW_RC
| NS_FPU_CW_PC
| NS_FPU_CW_IEM
| NS_FPU_CW_B6
| NS_FPU_CW_PM
| NS_FPU_CW_UM
| NS_FPU_CW_OM
| NS_FPU_CW_ZM
| NS_FPU_CW_DM
| NS_FPU_CW_IM;
unsigned short _cw = NS_FPU_CW;
asm ("fldcw %0" : : "m" (*&_cw));
}
#endif /* !HAVE_NS_SETUP_FPU && __i386__ && __GNUC__ */
#if !defined(HAVE_FESETPRECISION) && defined(__i386__) && defined(__GNUC__)
// use our own!
#define HAVE_FESETPRECISION
/*
* From:
| Floating-point environment <fenvwm.h> |
| Copyright (C) 1996, 1997, 1998, 1999 |
| W. Metzenthen, 22 Parker St, Ormond, Vic 3163, |
| Australia. |
| E-mail billm@melbpc.org.au |
* used here with permission.
*/
#define FE_FLTPREC 0x000
#define FE_INVALIDPREC 0x100
#define FE_DBLPREC 0x200
#define FE_LDBLPREC 0x300
/*
* From:
* fenvwm.c
| Copyright (C) 1999 |
| W. Metzenthen, 22 Parker St, Ormond, Vic 3163, |
| Australia. E-mail billm@melbpc.org.au |
* used here with permission.
*/
/*
Set the precision to prec if it is a valid
floating point precision macro.
Returns 1 if precision set, 0 otherwise.
*/
static inline int fesetprecision(int prec)
{
if ( !(prec & ~FE_LDBLPREC) && (prec != FE_INVALIDPREC) )
{
unsigned short cw;
asm ("fnstcw %0":"=m" (*&cw));
asm ("fwait");
cw = (cw & ~FE_LDBLPREC) | (prec & FE_LDBLPREC);
asm volatile ("fldcw %0" : /* Don't push these colons together */ : "m" (*&cw));
return 1;
}
else
return 0;
}
#endif /* !HAVE_FESETPRECISION && __i386__ && __GNUC__ */
/*
* setup_floating_point_environment
*
* Set up the floating point environment to be as standard as possible.
*
* For example:
* Linux i386 uses 60-bit floats for calculation,
* not 56-bit floats, giving different results.
* Fix that.
*
* See <http://www.linuxsupportline.com/~billm/faq.html>
* for why we do this fix.
*
* This function is derived from wmexcep
*
*/
static inline void
setup_floating_point_environment()
{
#ifdef HAVE_NS_SETUP_FPU
ns_setup_fpu();
#else /* !HAVE_NS_SETUP_FPU */
// In general, try to use the C99 standards to set things up.
// If we can't do that, do nothing and hope the default is right.
#ifdef HAVE_FESETPRECISION
fesetprecision(FE_DBLPREC);
#endif
#ifdef HAVE_FEENABLEEXCEPT
/*
* In general we'd like to catch some serious exceptions (div by zero)
* and ignore the boring ones (overflow/underflow).
* We set up that up here.
* This depends on feenableexcept which is (currently) GNU
* specific.
*/
int trap_exceptions = 0;
#ifdef FE_DIVBYZERO
trap_exceptions |= FE_DIVBYZERO;
#endif
#ifdef FE_INVALID
trap_exceptions |= FE_INVALID;
#endif
#ifdef FE_OVERFLOW
trap_exceptions |= FE_OVERFLOW;
#endif
//#ifdef FE_UNDERFLOW
// trap_exceptions |= FE_UNDERFLOW;
//#endif
feenableexcept(trap_exceptions);
#endif /* HAVE_FEENABLEEXCEPT */
#endif /* !HAVE_NS_SETUP_FPU */
}
/*
*----------------------------------------------------------------------
*
* Tcl_AppInit --
*
* This procedure performs application-specific initialization.
* Most applications, especially those that incorporate additional
* packages, will have their own version of this procedure.
*
* Results:
* Returns a standard Tcl completion code, and leaves an error
* message in interp->result if an error occurs.
*
* Side effects:
* Depends on the startup script.
*
*----------------------------------------------------------------------
*/
int
Tcl_AppInit(Tcl_Interp *interp)
{
#ifdef MEMDEBUG_SIMULATIONS
extern MemTrace *globalMemTrace;
globalMemTrace = new MemTrace;
#endif
setup_floating_point_environment();
if (Tcl_Init(interp) == TCL_ERROR ||
Otcl_Init(interp) == TCL_ERROR)
return TCL_ERROR;
#ifdef HAVE_LIBTCLDBG
extern int Tcldbg_Init(Tcl_Interp *); // hackorama
if (Tcldbg_Init(interp) == TCL_ERROR) {
return TCL_ERROR;
}
#endif
Tcl_SetVar(interp, "tcl_rcFileName", "~/.ns.tcl", TCL_GLOBAL_ONLY);
Tcl::init(interp, "ns");
init_misc();
et_ns_ptypes.load();
et_ns_lib.load();
#ifdef TCL_TEST
if (Tcltest_Init(interp) == TCL_ERROR) {
return TCL_ERROR;
}
Tcl_StaticPackage(interp, "Tcltest", Tcltest_Init,
(Tcl_PackageInitProc *) NULL);
#endif /* TCL_TEST */
return TCL_OK;
}
#ifndef WIN32
void
abort()
{
Tcl& tcl = Tcl::instance();
tcl.evalc("[Simulator instance] flush-trace");
#ifdef abort
#undef abort
abort();
#else
exit(1);
#endif /*abort*/
/*NOTREACHED*/
}
#endif
NS_END_EXTERN_C
|