Annotation of rpl/src/analyse.c, revision 1.66

1.1       bertrand    1: /*
                      2: ================================================================================
1.63      bertrand    3:   RPL/2 (R) version 4.1.5
1.35      bertrand    4:   Copyright (C) 1989-2011 Dr. BERTRAND Joël
1.1       bertrand    5: 
                      6:   This file is part of RPL/2.
                      7: 
                      8:   RPL/2 is free software; you can redistribute it and/or modify it
                      9:   under the terms of the CeCILL V2 License as published by the french
                     10:   CEA, CNRS and INRIA.
                     11:  
                     12:   RPL/2 is distributed in the hope that it will be useful, but WITHOUT
                     13:   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
                     14:   FITNESS FOR A PARTICULAR PURPOSE.  See the CeCILL V2 License
                     15:   for more details.
                     16:  
                     17:   You should have received a copy of the CeCILL License
                     18:   along with RPL/2. If not, write to info@cecill.info.
                     19: ================================================================================
                     20: */
                     21: 
                     22: 
1.25      bertrand   23: #include "rpl-conv.h"
1.1       bertrand   24: 
                     25: 
                     26: /*
                     27: ================================================================================
1.3       bertrand   28:   Analyseur syntaxique de l'interprète RPL/2
1.1       bertrand   29: ================================================================================
                     30:   Entrées :
                     31: --------------------------------------------------------------------------------
                     32:   Sorties :
                     33: --------------------------------------------------------------------------------
                     34:   Effets de bord : néant
                     35: ================================================================================
                     36: */
                     37: 
                     38: static void
                     39: creation_instruction(struct_processus *s_etat_processus,
                     40:        unsigned char *instruction, void (*routine)())
                     41: {
                     42:    int                     i;
                     43: 
                     44:    struct_instruction      *l_instruction_courante;
                     45: 
                     46:    unsigned char           *ptr;
                     47: 
1.14      bertrand   48:    BUG(strlen(instruction) >= d_longueur_maximale_instruction,
                     49:            printf("%s -> %d >= %d\n", instruction, (int) strlen(instruction),
                     50:            d_longueur_maximale_instruction));
                     51: 
1.1       bertrand   52:    if ((*s_etat_processus).arbre_instructions == NULL)
                     53:    {
                     54:        if (((*s_etat_processus).arbre_instructions =
                     55:                malloc(sizeof(struct_instruction))) == NULL)
                     56:        {
                     57:            (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                     58:            return;
                     59:        }
                     60: 
                     61:        (*(*s_etat_processus).arbre_instructions).feuille = NULL;
                     62: 
1.41      bertrand   63:        if (((*(*s_etat_processus).arbre_instructions).noeuds =
1.1       bertrand   64:                malloc((*s_etat_processus).nombre_caracteres
                     65:                * sizeof(struct_instruction))) == NULL)
                     66:        {
                     67:            (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                     68:            return;
                     69:        }
                     70: 
                     71:        for(i = 0; i < (*s_etat_processus).nombre_caracteres; i++)
                     72:        {
1.41      bertrand   73:            (*(*s_etat_processus).arbre_instructions).noeuds[i] = NULL;
1.1       bertrand   74:        }
                     75:    }
                     76: 
                     77:    l_instruction_courante = (*s_etat_processus).arbre_instructions;
                     78:    ptr = instruction;
                     79: 
                     80:    while((*ptr) != d_code_fin_chaine)
                     81:    {
                     82:        BUG((*s_etat_processus).pointeurs_caracteres[*ptr] < 0,
                     83:                printf("Instruction=\"%s\", (*ptr)='%c'\n",
                     84:                instruction, *ptr));
                     85: 
1.41      bertrand   86:        if ((*l_instruction_courante).noeuds[(*s_etat_processus)
1.1       bertrand   87:                .pointeurs_caracteres[*ptr]] == NULL)
                     88:        {
                     89:            // Le noeud suivant n'existe pas, on le crée.
                     90: 
1.41      bertrand   91:            if (((*l_instruction_courante).noeuds[(*s_etat_processus)
1.1       bertrand   92:                    .pointeurs_caracteres[*ptr]] =
                     93:                    malloc(sizeof(struct_instruction))) == NULL)
                     94:            {
                     95:                (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                     96:                return;
                     97:            }
                     98: 
1.41      bertrand   99:            (*(*l_instruction_courante).noeuds[(*s_etat_processus)
1.1       bertrand  100:                    .pointeurs_caracteres[*ptr]]).feuille = NULL;
                    101: 
1.41      bertrand  102:            if (((*(*l_instruction_courante).noeuds[(*s_etat_processus)
                    103:                    .pointeurs_caracteres[*ptr]]).noeuds =
1.1       bertrand  104:                    malloc((*s_etat_processus).nombre_caracteres
                    105:                    * sizeof(struct_instruction))) == NULL)
                    106:            {
                    107:                (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                    108:                return;
                    109:            }
                    110: 
                    111:            for(i = 0; i < (*s_etat_processus).nombre_caracteres; i++)
                    112:            {
1.41      bertrand  113:                (*(*l_instruction_courante).noeuds[(*s_etat_processus)
                    114:                        .pointeurs_caracteres[*ptr]]).noeuds[i] = NULL;
1.1       bertrand  115:            }
                    116:        }
                    117: 
1.41      bertrand  118:        l_instruction_courante = (*l_instruction_courante).noeuds
1.1       bertrand  119:                [(*s_etat_processus).pointeurs_caracteres[*ptr]];
                    120:        ptr++;
                    121:    }
                    122: 
                    123:    BUG((*l_instruction_courante).feuille != NULL,
                    124:            printf("Instruction=\"%s\"\n", instruction));
                    125: 
                    126:    (*l_instruction_courante).feuille = routine;
                    127: 
                    128:    return;
                    129: }
                    130: 
                    131: 
                    132: void
                    133: liberation_arbre_instructions(struct_processus *s_etat_processus,
                    134:        struct_instruction *arbre)
                    135: {
                    136:    int                 i;
                    137: 
                    138:    for(i = 0; i < (*s_etat_processus).nombre_caracteres; i++)
                    139:    {
1.41      bertrand  140:        if ((*arbre).noeuds[i] != NULL)
1.1       bertrand  141:        {
1.41      bertrand  142:            liberation_arbre_instructions(s_etat_processus, (*arbre).noeuds[i]);
1.1       bertrand  143:        }
                    144:    }
                    145: 
1.41      bertrand  146:    free((*arbre).noeuds);
1.1       bertrand  147:    free(arbre);
                    148: 
                    149:    return;
                    150: }
                    151: 
                    152: 
                    153: /*
                    154:  * Caractères autorisés dans les instructions
                    155:  *
                    156:  * A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
                    157:  * e i (mais traités comme des majuscules grâce à 'instruction_*_sensible()'
                    158:  * + - * / % ^ < > = ? 1 2
                    159:  */
                    160: 
                    161: void
                    162: initialisation_instructions(struct_processus *s_etat_processus)
                    163: {
                    164:    int             decalage;
                    165:    int             i;
                    166:    int             longueur_tableau;
                    167: 
                    168:    unsigned char   caractere;
                    169: 
                    170:    // Récupération de la longueur d'un unsigned char
                    171: 
                    172:    longueur_tableau = 1;
                    173:    decalage = 0;
                    174:    caractere = 1;
                    175: 
                    176:    while((1L << decalage) == (long) ((unsigned char) (caractere << decalage)))
                    177:    {
                    178:        decalage++;
                    179:        longueur_tableau *= 2;
                    180:    }
                    181: 
                    182:    if (((*s_etat_processus).pointeurs_caracteres =
                    183:            malloc(longueur_tableau * sizeof(int))) == NULL)
                    184:    {
                    185:        (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                    186:        return;
                    187:    }
                    188: 
                    189:    for(i = 0; i < longueur_tableau; i++)
                    190:    {
                    191:        (*s_etat_processus).pointeurs_caracteres[i] = -1;
                    192:    }
                    193: 
                    194:    (*s_etat_processus).nombre_caracteres = 0;
                    195: 
                    196: #define DECLARATION_CARACTERE(c) \
                    197:        do { (*s_etat_processus).pointeurs_caracteres[c] = \
                    198:        (*s_etat_processus).nombre_caracteres++; } while(0)
                    199: 
                    200:    DECLARATION_CARACTERE('A');
                    201:    DECLARATION_CARACTERE('B');
                    202:    DECLARATION_CARACTERE('C');
                    203:    DECLARATION_CARACTERE('D');
                    204:    DECLARATION_CARACTERE('E');
                    205:    DECLARATION_CARACTERE('F');
                    206:    DECLARATION_CARACTERE('G');
                    207:    DECLARATION_CARACTERE('H');
                    208:    DECLARATION_CARACTERE('I');
                    209:    DECLARATION_CARACTERE('J');
                    210:    DECLARATION_CARACTERE('K');
                    211:    DECLARATION_CARACTERE('L');
                    212:    DECLARATION_CARACTERE('M');
                    213:    DECLARATION_CARACTERE('N');
                    214:    DECLARATION_CARACTERE('O');
                    215:    DECLARATION_CARACTERE('P');
                    216:    DECLARATION_CARACTERE('Q');
                    217:    DECLARATION_CARACTERE('R');
                    218:    DECLARATION_CARACTERE('S');
                    219:    DECLARATION_CARACTERE('T');
                    220:    DECLARATION_CARACTERE('U');
                    221:    DECLARATION_CARACTERE('V');
                    222:    DECLARATION_CARACTERE('W');
                    223:    DECLARATION_CARACTERE('X');
                    224:    DECLARATION_CARACTERE('Y');
                    225:    DECLARATION_CARACTERE('Z');
                    226:    DECLARATION_CARACTERE('+');
                    227:    DECLARATION_CARACTERE('-');
                    228:    DECLARATION_CARACTERE('/');
                    229:    DECLARATION_CARACTERE('*');
                    230:    DECLARATION_CARACTERE('%');
                    231:    DECLARATION_CARACTERE('^');
                    232:    DECLARATION_CARACTERE('<');
                    233:    DECLARATION_CARACTERE('>');
                    234:    DECLARATION_CARACTERE('=');
                    235:    DECLARATION_CARACTERE('?');
                    236:    DECLARATION_CARACTERE('1');
                    237:    DECLARATION_CARACTERE('2');
                    238: 
                    239: #undef DECLARATION_CARACTERE
                    240: 
                    241: #define INSTRUCTION(chaine, fonction) \
                    242:        creation_instruction(s_etat_processus, chaine, fonction)
                    243: 
                    244:    INSTRUCTION("E", instruction_sensible_e);
                    245:    INSTRUCTION("I", instruction_sensible_i);
                    246:    INSTRUCTION("+", instruction_plus);
                    247:    INSTRUCTION("-", instruction_moins);
                    248:    INSTRUCTION("*", instruction_multiplication);
                    249:    INSTRUCTION("/", instruction_division);
                    250:    INSTRUCTION("%", instruction_pourcent);
                    251:    INSTRUCTION("^", instruction_puissance);
                    252:    INSTRUCTION("<", instruction_lt);
                    253:    INSTRUCTION("=", instruction_egalite);
                    254:    INSTRUCTION(">", instruction_gt);
                    255: 
                    256:    INSTRUCTION("CF", instruction_cf);
                    257:    INSTRUCTION("CR", instruction_cr);
                    258:    INSTRUCTION("DO", instruction_do);
                    259:    INSTRUCTION("FP", instruction_fp);
                    260:    INSTRUCTION("IF", instruction_if);
                    261:    INSTRUCTION("IM", instruction_im);
                    262:    INSTRUCTION("IN", instruction_in);
                    263:    INSTRUCTION("IP", instruction_ip);
                    264:    INSTRUCTION("LN", instruction_ln);
                    265:    INSTRUCTION("LQ", instruction_lq);
                    266:    INSTRUCTION("LU", instruction_lu);
                    267:    INSTRUCTION("NS", instruction_ns);
                    268:    INSTRUCTION("OR", instruction_or);
                    269:    INSTRUCTION("PI", instruction_pi);
                    270:    INSTRUCTION("QR", instruction_qr);
                    271:    INSTRUCTION("RE", instruction_re);
                    272:    INSTRUCTION("RL", instruction_rl);
                    273:    INSTRUCTION("RR", instruction_rr);
                    274:    INSTRUCTION("SF", instruction_sf);
                    275:    INSTRUCTION("SL", instruction_sl);
                    276:    INSTRUCTION("SQ", instruction_sq);
                    277:    INSTRUCTION("SR", instruction_sr);
                    278:    INSTRUCTION("SX", instruction_sx);
                    279:    INSTRUCTION("SY", instruction_sy);
                    280:    INSTRUCTION("S+", instruction_s_plus);
                    281:    INSTRUCTION("S-", instruction_s_moins);
                    282:    INSTRUCTION("->", instruction_fleche);
                    283:    INSTRUCTION("*D", instruction_star_d);
                    284:    INSTRUCTION("*H", instruction_star_h);
                    285:    INSTRUCTION("*S", instruction_star_s);
                    286:    INSTRUCTION("*W", instruction_star_w);
                    287:    INSTRUCTION("**", instruction_puissance);
                    288:    INSTRUCTION("%T", instruction_pourcent_t);
                    289:    INSTRUCTION("<=", instruction_le);
                    290:    INSTRUCTION("<<", instruction_vers_niveau_superieur);
                    291:    INSTRUCTION("<>", instruction_ne);
                    292:    INSTRUCTION("==", instruction_same);
                    293:    INSTRUCTION("=>", instruction_ge);
                    294:    INSTRUCTION("=<", instruction_le);
                    295:    INSTRUCTION(">=", instruction_ge);
                    296:    INSTRUCTION(">>", instruction_vers_niveau_inferieur);
                    297: 
                    298:    INSTRUCTION("ABS", instruction_abs);
                    299:    INSTRUCTION("AND", instruction_and);
                    300:    //INSTRUCTION("ARC")
                    301:    //(centre, rayon, theta1, theta2 dans le sens trigonométrique)
                    302:    INSTRUCTION("ARG", instruction_arg);
                    303:    INSTRUCTION("ASL", instruction_asl);
                    304:    INSTRUCTION("ASR", instruction_asr);
                    305:    //INSTRUCTION("BAR")
                    306:    //Instruction HP48 (sélectionne le type de graphique à barres)
                    307:    //Chaque point est représenté par une barre verticale.
                    308:    INSTRUCTION("BIN", instruction_bin);
                    309:    //INSTRUCTION("BOX")
                    310:    //(point 1, point 2)
                    311:    INSTRUCTION("CHR", instruction_chr);
                    312:    INSTRUCTION("CLS", instruction_cls);
                    313:    INSTRUCTION("CON", instruction_con);
                    314:    INSTRUCTION("COS", instruction_cos);
                    315:    INSTRUCTION("COV", instruction_cov);
                    316:    INSTRUCTION("DEC", instruction_dec);
                    317:    INSTRUCTION("DEG", instruction_deg);
                    318:    INSTRUCTION("DER", instruction_der);
                    319:    INSTRUCTION("DET", instruction_det);
                    320:    INSTRUCTION("DFT", instruction_dft);
                    321:    INSTRUCTION("DOT", instruction_dot);
                    322:    INSTRUCTION("DUP", instruction_dup);
                    323:    INSTRUCTION("EGV", instruction_egv);
                    324:    INSTRUCTION("END", instruction_end);
                    325:    INSTRUCTION("ENG", instruction_eng);
                    326:    INSTRUCTION("EXP", instruction_exp);
                    327:    INSTRUCTION("FC?", instruction_fc_test);
                    328:    INSTRUCTION("FFT", instruction_fft);
                    329:    //INSTRUCTION("FIT")
                    330:    //Extension RPL/2 (choix de la méthode de régression, par défaut, 'LINEAR'.
                    331:    //Les types sont
                    332:    //'LINEAR' => y = b + mx
                    333:    //'LOGARITHMIC' => y = b + m ln(x)
                    334:    //'EXPONENTIAL' => y = be^(mx) ou ln(y) = ln(b) + mx
                    335:    //'POWER' => y = bx^m ou ln(y) = ln(b) + m ln(x)
                    336:    INSTRUCTION("FIX", instruction_fix);
                    337:    INSTRUCTION("FOR", instruction_for);
                    338:    INSTRUCTION("FS?", instruction_fs_test);
                    339:    INSTRUCTION("GET", instruction_get);
                    340:    INSTRUCTION("HEX", instruction_hex);
                    341:    INSTRUCTION("IDN", instruction_idn);
                    342:    INSTRUCTION("IFT", instruction_ift);
                    343:    INSTRUCTION("INT", instruction_int);
                    344:    INSTRUCTION("INV", instruction_inv);
                    345:    INSTRUCTION("KEY", instruction_key);
                    346:    INSTRUCTION("LOG", instruction_log);
                    347:    INSTRUCTION("LSQ", instruction_lsq);
                    348:    INSTRUCTION("MAX", instruction_max);
                    349:    INSTRUCTION("MEM", instruction_mem);
                    350:    INSTRUCTION("MIN", instruction_min);
                    351:    INSTRUCTION("MOD", instruction_mod);
                    352:    INSTRUCTION("NEG", instruction_neg);
                    353:    INSTRUCTION("NOT", instruction_not);
                    354:    INSTRUCTION("NUM", instruction_num);
                    355:    INSTRUCTION("OCT", instruction_oct);
                    356:    INSTRUCTION("POS", instruction_pos);
                    357:    INSTRUCTION("PR1", instruction_pr1);
                    358:    INSTRUCTION("PUT", instruction_put);
                    359:    INSTRUCTION("RAD", instruction_rad);
                    360:    INSTRUCTION("RCI", instruction_rci);
                    361:    INSTRUCTION("RCL", instruction_rcl);
                    362:    INSTRUCTION("RDM", instruction_rdm);
                    363:    INSTRUCTION("RDZ", instruction_rdz);
                    364:    INSTRUCTION("RES", instruction_res);
                    365:    INSTRUCTION("RLB", instruction_rlb);
                    366:    INSTRUCTION("RND", instruction_rnd);
                    367:    INSTRUCTION("ROT", instruction_rot);
                    368:    INSTRUCTION("RRB", instruction_rrb);
                    369:    INSTRUCTION("RSD", instruction_rsd);
                    370:    INSTRUCTION("SCI", instruction_sci);
                    371:    INSTRUCTION("SIN", instruction_sin);
                    372:    INSTRUCTION("SLB", instruction_slb);
                    373:    INSTRUCTION("SRB", instruction_srb);
                    374:    INSTRUCTION("SST", instruction_sst);
                    375:    INSTRUCTION("STD", instruction_std);
                    376:    INSTRUCTION("STO", instruction_sto);
                    377:    INSTRUCTION("SVD", instruction_svd);
                    378:    INSTRUCTION("SVL", instruction_svl);
                    379:    INSTRUCTION("SUB", instruction_sub);
                    380:    INSTRUCTION("SWI", instruction_swi);
                    381:    INSTRUCTION("SX2", instruction_sx2);
                    382:    INSTRUCTION("SXY", instruction_sxy);
                    383:    INSTRUCTION("SY2", instruction_sy2);
                    384:    INSTRUCTION("TAN", instruction_tan);
                    385:    INSTRUCTION("TOT", instruction_tot);
                    386:    INSTRUCTION("TRN", instruction_trn);
                    387:    INSTRUCTION("USE", instruction_use);
                    388:    INSTRUCTION("VAR", instruction_var);
                    389:    //INSTRUCTION("V->")
                    390:    //Instruction HP48 (éclate un vecteur [ x y ] => x y quel que soit le
                    391:    //système de
                    392:    //coordonnées)
                    393:    INSTRUCTION("XOR", instruction_xor);
                    394:    INSTRUCTION("->Q", instruction_fleche_q);
                    395:    INSTRUCTION("%CH", instruction_pourcent_ch);
                    396: 
                    397:    INSTRUCTION("ACOS", instruction_acos);
                    398:    INSTRUCTION("ALOG", instruction_alog);
                    399:    INSTRUCTION("ASIN", instruction_asin);
                    400:    INSTRUCTION("ATAN", instruction_atan);
                    401:    INSTRUCTION("AXES", instruction_axes);
                    402:    INSTRUCTION("BEEP", instruction_beep);
                    403:    INSTRUCTION("B->R", instruction_b_vers_r);
                    404:    INSTRUCTION("CASE", instruction_case);
                    405:    INSTRUCTION("CEIL", instruction_ceil);
                    406:    INSTRUCTION("CLMF", instruction_clmf);
                    407:    INSTRUCTION("CNRM", instruction_cnrm);
                    408:    INSTRUCTION("COLS", instruction_cols);
                    409:    INSTRUCTION("COL+", instruction_col_plus);
                    410:    INSTRUCTION("COL-", instruction_col_moins);
                    411:    INSTRUCTION("COMB", instruction_comb);
                    412:    INSTRUCTION("COND", instruction_cond);
                    413:    INSTRUCTION("CONJ", instruction_conj);
                    414:    INSTRUCTION("CONT", instruction_cont);
                    415:    INSTRUCTION("COPY", instruction_copy);
                    416:    INSTRUCTION("CORR", instruction_corr);
                    417:    INSTRUCTION("COSH", instruction_cosh);
                    418:    INSTRUCTION("CSWP", instruction_cswp);
                    419:    INSTRUCTION("C->R", instruction_c_vers_r);
                    420:    INSTRUCTION("DATE", instruction_date);
                    421:    INSTRUCTION("DECR", instruction_decr);
                    422:    INSTRUCTION("DISP", instruction_disp);
                    423:    INSTRUCTION("DRAW", instruction_draw);
                    424:    INSTRUCTION("DRAX", instruction_drax);
                    425:    INSTRUCTION("DROP", instruction_drop);
                    426:    INSTRUCTION("DRWS", instruction_drws);
                    427:    INSTRUCTION("DUP2", instruction_dup2);
                    428:    INSTRUCTION("DUPN", instruction_dupn);
                    429:    INSTRUCTION("D->R", instruction_d_vers_r);
                    430:    INSTRUCTION("EDIT", instruction_edit);
                    431:    INSTRUCTION("EGVL", instruction_egvl);
                    432:    INSTRUCTION("ELSE", instruction_else);
                    433:    INSTRUCTION("ERRM", instruction_errm);
                    434:    INSTRUCTION("ERRN", instruction_errn);
                    435:    INSTRUCTION("EVAL", instruction_eval);
                    436:    INSTRUCTION("EXIT", instruction_exit);
                    437:    INSTRUCTION("EXPM", instruction_expm);
                    438:    INSTRUCTION("FACT", instruction_fact);
                    439:    INSTRUCTION("FC?C", instruction_fc_test_c);
                    440:    INSTRUCTION("FC?S", instruction_fc_test_s);
                    441:    //INSTRUCTION("FORM")
                    442:    INSTRUCTION("FS?C", instruction_fs_test_c);
                    443:    INSTRUCTION("FS?S", instruction_fs_test_s);
                    444:    INSTRUCTION("FUSE", instruction_fuse);
                    445:    INSTRUCTION("GEGV", instruction_gegv);
                    446:    INSTRUCTION("GETC", instruction_getc);
                    447:    INSTRUCTION("GETI", instruction_geti);
                    448:    INSTRUCTION("GETR", instruction_getr);
                    449:    INSTRUCTION("HALT", instruction_halt);
                    450:    INSTRUCTION("HEAD", instruction_head);
                    451:    INSTRUCTION("HELP", instruction_help);
                    452:    INSTRUCTION("HMS+", instruction_hms_plus);
                    453:    INSTRUCTION("HMS-", instruction_hms_moins);
                    454:    //INSTRUCTION("HOME");
                    455:    INSTRUCTION("IDFT", instruction_idft);
                    456:    INSTRUCTION("IFFT", instruction_ifft);
                    457:    INSTRUCTION("IFTE", instruction_ifte);
                    458:    INSTRUCTION("INCR", instruction_incr);
                    459:    //INSTRUCTION("ISOL");
                    460:    INSTRUCTION("ISWI", instruction_iswi);
                    461:    INSTRUCTION("KILL", instruction_kill);
                    462:    INSTRUCTION("KIND", instruction_kind);
                    463:    INSTRUCTION("LAST", instruction_last);
                    464:    INSTRUCTION("LEGV", instruction_legv);
                    465:    INSTRUCTION("LINE", instruction_line);
                    466:    INSTRUCTION("LNP1", instruction_lnp1);
                    467:    INSTRUCTION("LOCK", instruction_lock);
1.36      bertrand  468:    INSTRUCTION("L->T", instruction_l_vers_t);
1.1       bertrand  469:    INSTRUCTION("MANT", instruction_mant);
                    470:    INSTRUCTION("MARK", instruction_mark);
                    471:    //INSTRUCTION("MAXR")
                    472:    INSTRUCTION("MAXS", instruction_maxs);
                    473:    INSTRUCTION("MEAN", instruction_mean);
                    474:    //INSTRUCTION("MINR");
                    475:    INSTRUCTION("MINS", instruction_mins); // MAXDOUBLE/MINDOUBLE
                    476:    INSTRUCTION("NEXT", instruction_next);
                    477:    //INSTRUCTION("NUMX");
                    478:    //INSTRUCTION("NUMY");
                    479:    INSTRUCTION("OPEN", instruction_open);
                    480:    INSTRUCTION("OVER", instruction_over);
                    481:    //INSTRUCTION("PATH");
                    482:    INSTRUCTION("PCOV", instruction_pcov);
                    483:    INSTRUCTION("PEEK", instruction_peek);
                    484:    INSTRUCTION("PERM", instruction_perm);
                    485:    INSTRUCTION("PICK", instruction_pick);
                    486:    INSTRUCTION("PLOT", instruction_plot);
                    487:    INSTRUCTION("PMAX", instruction_pmax);
                    488:    INSTRUCTION("PMIN", instruction_pmin);
                    489:    INSTRUCTION("POKE", instruction_poke);
1.66    ! bertrand  490:    INSTRUCTION("POLL", instruction_poll);
1.1       bertrand  491:    INSTRUCTION("PPAR", instruction_ppar);
                    492:    INSTRUCTION("PRMD", instruction_prmd);
                    493:    INSTRUCTION("PRST", instruction_prst);
                    494:    INSTRUCTION("PUTC", instruction_putc);
                    495:    INSTRUCTION("PUTI", instruction_puti);
                    496:    INSTRUCTION("PUTR", instruction_putr);
                    497:    INSTRUCTION("PVAR", instruction_pvar);
                    498:    INSTRUCTION("P->R", instruction_p_vers_r);
                    499:    //INSTRUCTION("QUAD");
                    500:    INSTRUCTION("RAND", instruction_rand);
                    501:    INSTRUCTION("RANK", instruction_rank);
                    502:    //INSTRUCTION("RANM")
                    503:    //Instruction HP48 (crée une matrice aléatoire
                    504:    //{ nb_lignes nb_colonnes } ou tableau quelconque dont les éléments seront
                    505:    //modifiés pour prendre des valeurs aléatoires entre -9 et 9)
                    506:    INSTRUCTION("RCEQ", instruction_rceq);
                    507:    INSTRUCTION("RCIJ", instruction_rcij);
                    508:    INSTRUCTION("RCLF", instruction_rclf);
                    509:    INSTRUCTION("RCLS", instruction_rcls);
                    510:    INSTRUCTION("RCWS", instruction_rcws);
                    511:    INSTRUCTION("RDGN", instruction_rdgn);
                    512:    INSTRUCTION("READ", instruction_read);
                    513:    INSTRUCTION("RECV", instruction_recv);
                    514:    INSTRUCTION("REGV", instruction_regv);
                    515:    INSTRUCTION("REPL", instruction_repl);
                    516:    INSTRUCTION("RNRM", instruction_rnrm);
                    517:    INSTRUCTION("ROLL", instruction_roll);
                    518:    //INSTRUCTION("ROOT")
                    519:    INSTRUCTION("ROW-", instruction_row_moins);
                    520:    INSTRUCTION("ROW+", instruction_row_plus);
                    521:    //INSTRUCTION("RREF")
                    522:    //Instruction HP48 (transforme [A B] en [I C] par combinaisons linéaires
                    523:    //de lignes)
                    524:    INSTRUCTION("RSWP", instruction_rswp);
                    525:    INSTRUCTION("R->B", instruction_r_vers_b);
                    526:    INSTRUCTION("R->C", instruction_r_vers_c);
                    527:    INSTRUCTION("R->D", instruction_r_vers_d);
                    528:    INSTRUCTION("R->P", instruction_r_vers_p);
                    529:    INSTRUCTION("SAME", instruction_same);
                    530:    INSTRUCTION("SAVE", instruction_save);
                    531:    INSTRUCTION("SCLS", instruction_scls);
                    532:    INSTRUCTION("SDEV", instruction_sdev);
                    533:    INSTRUCTION("SEND", instruction_send);
                    534:    //INSTRUCTION("SHOW");
                    535:    INSTRUCTION("SIGN", instruction_sign);
                    536:    INSTRUCTION("SINH", instruction_sinh);
                    537:    INSTRUCTION("SINV", instruction_sinv);
                    538:    INSTRUCTION("SIZE", instruction_size);
                    539:    INSTRUCTION("SNEG", instruction_sneg);
                    540:    INSTRUCTION("SORT", instruction_sort);
                    541:    INSTRUCTION("SPAR", instruction_spar);
                    542:    INSTRUCTION("SQRT", instruction_sqrt);
                    543:    //INSTRUCTION("SRAD");
1.53      bertrand  544:    INSTRUCTION("SREV", instruction_srev);
1.1       bertrand  545:    //INSTRUCTION("SRNM")
                    546:    //Instruction HP48 (renvoie la norme spectrale d'un tableau. Pour une
                    547:    //matrice,
                    548:    //la norme spectrale est égale à sa plus grande valeur singulière. Pour un
                    549:    //vecteur, la fonction est équivalente à ABS.
                    550:    INSTRUCTION("STEP", instruction_step);
                    551:    INSTRUCTION("STEQ", instruction_steq);
                    552:    INSTRUCTION("STO*", instruction_sto_fois);
                    553:    INSTRUCTION("STO+", instruction_sto_plus);
                    554:    INSTRUCTION("STO-", instruction_sto_moins);
                    555:    INSTRUCTION("STO/", instruction_sto_division);
                    556:    INSTRUCTION("STOF", instruction_stof);
                    557:    INSTRUCTION("STOP", instruction_stop);
                    558:    INSTRUCTION("STOS", instruction_stos);
                    559:    INSTRUCTION("STWS", instruction_stws);
                    560:    INSTRUCTION("SWAP", instruction_swap);
                    561:    INSTRUCTION("SYNC", instruction_sync);
                    562:    INSTRUCTION("TAIL", instruction_tail);
                    563:    INSTRUCTION("TANH", instruction_tanh);
                    564:    INSTRUCTION("THEN", instruction_then);
                    565:    INSTRUCTION("TIME", instruction_time);
                    566:    INSTRUCTION("TRIM", instruction_trim);
                    567:    INSTRUCTION("TRNC", instruction_trnc);
                    568:    INSTRUCTION("TRUE", instruction_true);
                    569:    INSTRUCTION("TYPE", instruction_type);
1.36      bertrand  570:    INSTRUCTION("T->L", instruction_t_vers_l);
1.1       bertrand  571:    INSTRUCTION("UTPC", instruction_utpc);
                    572:    INSTRUCTION("UTPF", instruction_utpf);
                    573:    INSTRUCTION("UTPN", instruction_utpn);
                    574:    INSTRUCTION("UTPT", instruction_utpt);
                    575:    INSTRUCTION("VARS", instruction_vars);
                    576:    INSTRUCTION("WAIT", instruction_wait);
                    577:    INSTRUCTION("XCOL", instruction_xcol);
                    578:    INSTRUCTION("XPON", instruction_xpon);
                    579:    //INSTRUCTION("XRNG")
                    580:    //INSTRUCTION("XVOL")
                    581:    INSTRUCTION("YCOL", instruction_ycol);
                    582:    //INSTRUCTION("YRNG")
                    583:    //INSTRUCTION("YVOL")
                    584:    //INSTRUCTION("ZVOL")
                    585:    //INSTRUCTION("->V2")
                    586:    //Instruction HP48 (combine deux réels x et y en un vecteur 2D en fonction
                    587:    //du mode de coordonnées en cours => [ x y ] et ce quel que soit le système
                    588:    //de coordonnées courant)
                    589:    //INSTRUCTION("->V3")
                    590: 
                    591:    INSTRUCTION("ABORT", instruction_abort);
                    592:    INSTRUCTION("ACOSH", instruction_acosh);
                    593:    INSTRUCTION("ALARM", instruction_alarm);
                    594:    INSTRUCTION("ASINH", instruction_asinh);
                    595:    INSTRUCTION("ATANH", instruction_atanh);
                    596:    //INSTRUCTION("BYTES");
                    597:    INSTRUCTION("CENTR", instruction_centr);
                    598:    //INSTRUCTION("CIRCL");
                    599:    INSTRUCTION("CLEAR", instruction_clear);
                    600:    INSTRUCTION("CLLCD", instruction_cllcd);
                    601:    INSTRUCTION("CLOSE", instruction_close);
                    602:    INSTRUCTION("CLUSR", instruction_clusr);
                    603:    //INSTRUCTION("CLVAR");
                    604:    //INSTRUCTION("COLCT")
                    605:    INSTRUCTION("COL->", instruction_col_fleche);
                    606:    //INSTRUCTION("CONIC")
                    607:    //Instruction HP48 (sélectionne le type de tracé CONIC)
                    608:    //Permet de tracer des coniques en fonction d'équations
                    609:    //de type f(x, y) = 0.
                    610:    //INSTRUCTION("CRDIR")
                    611:    INSTRUCTION("CRMTX", instruction_crmtx);
                    612:    INSTRUCTION("CROSS", instruction_cross);
                    613:    INSTRUCTION("CRTAB", instruction_crtab);
                    614:    INSTRUCTION("CSTOP", instruction_cstop);
                    615:    INSTRUCTION("CYCLE", instruction_cycle);
                    616:    //INSTRUCTION("CYLIN")
                    617:    //Instruction HP48 (sélectionne le type de tracé CYLINDRIC)
                    618:    INSTRUCTION("DEPND", instruction_depnd);
                    619:    INSTRUCTION("DEPTH", instruction_depth);
                    620:    //INSTRUCTION("DOSUB")
                    621:    //Instruction HP48 (application séquentielle d'une fonction à une liste)
                    622:    //liste nombre_elements_traites_a_chaque_iteration fonction DOSUB
                    623:    //{ 1 2 3 4 5 }
                    624:    //2
                    625:    //<< + 2 / >>
                    626:    //DOSUB
                    627:    //=> { 1.5 2.5 3.5 4.5 }
                    628:    INSTRUCTION("DGTIZ", instruction_dgtiz);
                    629:    INSTRUCTION("DROP2", instruction_drop2);
                    630:    INSTRUCTION("DROPN", instruction_dropn);
                    631:    INSTRUCTION("ERASE", instruction_erase);
                    632:    INSTRUCTION("EXGET", instruction_exget);
                    633:    //INSTRUCTION("EXPAN");
                    634:    INSTRUCTION("EXSUB", instruction_exsub);
                    635:    INSTRUCTION("EYEPT", instruction_eyept);
                    636:    INSTRUCTION("FALSE", instruction_false);
                    637:    INSTRUCTION("FLOOR", instruction_floor);
                    638:    INSTRUCTION("GAMMA", instruction_gamma);
                    639:    INSTRUCTION("GEGVL", instruction_gegvl);
                    640:    INSTRUCTION("GLEGV", instruction_glegv);
                    641:    INSTRUCTION("GREGV", instruction_gregv);
                    642:    INSTRUCTION("HMS->", instruction_hms_fleche);
                    643:    INSTRUCTION("IFERR", instruction_iferr);
                    644:    INSTRUCTION("INDEP", instruction_indep);
                    645:    INSTRUCTION("INPUT", instruction_input);
                    646:    INSTRUCTION("JDATE", instruction_jdate);
                    647:    INSTRUCTION("LABEL", instruction_label);
                    648:    INSTRUCTION("LCASE", instruction_lcase);
                    649:    INSTRUCTION("LCHOL", instruction_lchol);
                    650:    INSTRUCTION("LCD->", instruction_lcd_fleche);
1.51      bertrand  651:    INSTRUCTION("LIMIT", instruction_limit);
1.1       bertrand  652:    //INSTRUCTION("NDIST")
                    653:    //Instruction HP48 (distribution normale, prend la moyenne au niveau 3,
                    654:    //la variance au niveau 2, un réel x au niveau 1 et renvoie la probabilité
                    655:    //qu'une variable aléatoire normale soit égale à x dans une distribution
                    656:    //normale).
                    657:    INSTRUCTION("NRAND", instruction_nrand);
                    658:    INSTRUCTION("OBGET", instruction_obget);
                    659:    INSTRUCTION("OBSUB", instruction_obsub);
                    660:    INSTRUCTION("PAPER", instruction_paper);
                    661:    //INSTRUCTION("PCOEFF")
                    662:    //INSTRUCTION("PEVAL")
                    663:    //INSTRUCTION("PGDIR")
                    664:    //INSTRUCTION("PIXEL")
                    665:    //INSTRUCTION("PLIST")
                    666:    //Instruction HP48 (produit des termes d'une liste)
                    667:    INSTRUCTION("POLAR", instruction_polar);
                    668:    INSTRUCTION("PRINT", instruction_print);
                    669:    //INSTRUCTION("PREDV");
                    670:    INSTRUCTION("PRLCD", instruction_prlcd);
                    671:    //INSTRUCTION("PROOT")
                    672:    //Instruction HP48 (calcule les racines d'un polynôme en fonction du tableau
                    673:    //de coefficients)
                    674:    INSTRUCTION("PRSTC", instruction_prstc);
                    675:    INSTRUCTION("PRUSR", instruction_prusr);
                    676:    INSTRUCTION("PRVAR", instruction_prvar);
                    677:    INSTRUCTION("PSDEV", instruction_psdev);
                    678:    INSTRUCTION("PURGE", instruction_purge);
                    679:    INSTRUCTION("RDATE", instruction_rdate);
1.65      bertrand  680:    INSTRUCTION("REGEX", instruction_regex);
1.1       bertrand  681:    INSTRUCTION("RELAX", instruction_relax);
                    682:    INSTRUCTION("RFUSE", instruction_rfuse);
                    683:    INSTRUCTION("RSTOP", instruction_rstop);
                    684:    INSTRUCTION("ROLLD", instruction_rolld);
                    685:    INSTRUCTION("ROW->", instruction_row_fleche);
                    686:    INSTRUCTION("SCALE", instruction_scale);
                    687:    INSTRUCTION("SCHED", instruction_sched);
                    688:    INSTRUCTION("SCHUR", instruction_schur);
                    689:    INSTRUCTION("SCONJ", instruction_sconj);
                    690:    INSTRUCTION("SLICE", instruction_slice);
                    691:    //INSTRUCTION("SLIST")
                    692:    //Instruction HP48 (somme des termes d'une liste)
                    693:    INSTRUCTION("SPAWN", instruction_spawn);
                    694:    INSTRUCTION("START", instruction_start);
                    695:    INSTRUCTION("STORE", instruction_store);
                    696:    INSTRUCTION("STR->", instruction_str_fleche);
                    697:    INSTRUCTION("TAYLR", instruction_taylr);
                    698:    INSTRUCTION("TITLE", instruction_title);
                    699:    //INSTRUCTION("TRACE")
                    700:    //INSTRUCTION("TRUTH")
                    701:    INSTRUCTION("UCASE", instruction_ucase);
                    702:    INSTRUCTION("UCHOL", instruction_uchol);
                    703:    INSTRUCTION("UNTIL", instruction_until);
                    704:    //INSTRUCTION("UPDIR")
                    705:    INSTRUCTION("VISIT", instruction_visit);
                    706:    INSTRUCTION("WFACK", instruction_wfack);
                    707:    INSTRUCTION("WFSWI", instruction_wfswi);
                    708:    INSTRUCTION("WHILE", instruction_while);
                    709:    //INSTRUCTION("WIDTH")
                    710:    INSTRUCTION("WRITE", instruction_write);
                    711:    INSTRUCTION("XROOT", instruction_xroot);
                    712:    INSTRUCTION("YIELD", instruction_yield);
                    713:    INSTRUCTION("->COL", instruction_fleche_col);
                    714:    INSTRUCTION("->HMS", instruction_fleche_hms);
                    715:    INSTRUCTION("->LCD", instruction_fleche_lcd);
                    716:    INSTRUCTION("->NUM", instruction_fleche_num);
                    717:    INSTRUCTION("->ROW", instruction_fleche_row);
                    718:    INSTRUCTION("->STR", instruction_fleche_str);
                    719: 
                    720:    INSTRUCTION("APPEND", instruction_append);
                    721:    INSTRUCTION("ARRY->", instruction_array_fleche);
1.12      bertrand  722:    INSTRUCTION("ATEXIT", instruction_atexit);
1.24      bertrand  723:    INSTRUCTION("ATPOKE", instruction_atpoke);
1.1       bertrand  724:    INSTRUCTION("BESSEL", instruction_bessel);
                    725:    INSTRUCTION("CLRERR", instruction_clrerr);
                    726:    INSTRUCTION("CLRMTX", instruction_clrmtx);
                    727:    INSTRUCTION("CLRSWI", instruction_clrswi);
                    728:    INSTRUCTION("CREATE", instruction_create);
                    729:    INSTRUCTION("DELETE", instruction_delete);
1.59      bertrand  730: #  ifdef SHARED_MEMORY
1.60      bertrand  731:        INSTRUCTION("DETACH", instruction_detach);
1.59      bertrand  732: #  else
1.60      bertrand  733:        if ((*s_etat_processus).langue == 'F')
                    734:        {
                    735:            printf("+++Attention : DETACH est émulé par SPAWN car le système"
                    736:                    " hôte ne supporte\n"
                    737:                    "               pas de mémoire partagée !\n");
                    738:        }
                    739:        else
                    740:        {
                    741:            printf("+++Warning : DETACH is replaced by SPAWN as host system"
                    742:                    " does not support\n"
                    743:                    "             shared memory !\n");
                    744:        }
                    745: 
                    746:        INSTRUCTION("DETACH", instruction_spawn);
1.29      bertrand  747: #  endif
1.1       bertrand  748:    INSTRUCTION("DIAG->", instruction_diag_fleche);
                    749:    //INSTRUCTION("DOLIST")
                    750:    //Instruction HP48 (application d'une fonction à une liste)
                    751:    //liste(s) nombre_de_listes_a_traiter fonction DOLIST
                    752:    //{ 1 2 3 }
                    753:    //{ 4 5 6 }
                    754:    //{ 7 8 9 }
                    755:    //3
                    756:    //<<  * + >>
                    757:    //DOLIST
                    758:    //=> { 29 42 57 }
                    759:    INSTRUCTION("ELSEIF", instruction_elseif);
                    760:    INSTRUCTION("FORMAT", instruction_format);
                    761:    //INSTRUCTION("HEIGHT")
                    762:    INSTRUCTION("ITRACE", instruction_itrace);
                    763:    INSTRUCTION("LIST->", instruction_list_fleche);
                    764:    INSTRUCTION("LOGGER", instruction_logger);
                    765:    INSTRUCTION("MCLRIN", instruction_mclrin);
                    766:    INSTRUCTION("NRPROC", instruction_nrproc);
1.17      bertrand  767:    INSTRUCTION("PROCID", instruction_procid);
1.1       bertrand  768:    INSTRUCTION("PROMPT", instruction_prompt);
                    769:    INSTRUCTION("RCLSWI", instruction_rclswi);
                    770:    INSTRUCTION("RECALL", instruction_recall);
                    771:    INSTRUCTION("RECODE", instruction_recode);
                    772:    INSTRUCTION("REDRAW", instruction_redraw);
                    773:    INSTRUCTION("REMOVE", instruction_remove);
                    774:    INSTRUCTION("REPEAT", instruction_repeat);
                    775:    INSTRUCTION("RETURN", instruction_return);
                    776:    INSTRUCTION("REWIND", instruction_rewind);
                    777:    //INSTRUCTION("SCREEN")
                    778:    INSTRUCTION("SELECT", instruction_select);
                    779:    //INSTRUCTION("SPHERE")
                    780:    INSTRUCTION("SHARED", instruction_shared);
                    781:    INSTRUCTION("SPLASH", instruction_splash);
                    782:    INSTRUCTION("STATIC", instruction_static);
                    783:    INSTRUCTION("STOSWI", instruction_stoswi);
                    784:    //INSTRUCTION("STREAM", instruction_stream);
                    785:    //{ 1 2 3 4 5 } << * >> STREAM => 120
                    786:    INSTRUCTION("TARGET", instruction_target);
                    787:    INSTRUCTION("UNLOCK", instruction_unlock);
                    788:    INSTRUCTION("VERIFY", instruction_verify);
                    789:    INSTRUCTION("WFDATA", instruction_wfdata);
                    790:    INSTRUCTION("WFLOCK", instruction_wflock);
                    791:    INSTRUCTION("WFPOKE", instruction_wfpoke);
                    792:    INSTRUCTION("WFPROC", instruction_wfproc);
                    793:    INSTRUCTION("WFSOCK", instruction_wfsock);
                    794:    INSTRUCTION("->ARRY", instruction_fleche_array);
                    795:    INSTRUCTION("->DIAG", instruction_fleche_diag);
                    796:    INSTRUCTION("->LIST", instruction_fleche_list);
                    797: 
                    798:    INSTRUCTION("ARRAY->", instruction_array_fleche);
                    799:    //INSTRUCTION("BARPLOT")
                    800:    //INSTRUCTION("BESTFIT")
                    801:    //Instruction HP48 (choisit le meilleur modèle de régression)
                    802:    INSTRUCTION("CLRFUSE", instruction_clrfuse);
                    803:    INSTRUCTION("CONVERT", instruction_convert);
                    804:    INSTRUCTION("CRSMPHR", instruction_crsmphr);
                    805:    INSTRUCTION("CURRENC", instruction_currenc);
                    806:    INSTRUCTION("DEFAULT", instruction_default);
                    807:    INSTRUCTION("EPSILON", instruction_epsilon);
                    808:    //INSTRUCTION("GRIDMAP")
                    809:    //Instruction HP48 (sélectionne le mode de tracé GRIDMAP)
                    810:    //Le tracé GRIDMAP transforme la grille d'échantillonnage rectiligne
                    811:    //en appliquant la fonction en cours à valeurs complexes.
                    812:    //Les coordonnées de chaque point de la grille (un nombre complexe)
                    813:    //constituent
                    814:    //les données d'entrée de la fonction qui les projette ensuite dans le
                    815:    //grille
                    816:    //de sortie.
                    817:    //f(x,y)=fnct complexe évaluée sur la grille (x,y) et affichée comme une
                    818:    //fonction paramétrique.
                    819:    INSTRUCTION("INQUIRE", instruction_inquire);
1.15      bertrand  820:    INSTRUCTION("MEMLOCK", instruction_memlock);
1.1       bertrand  821:    INSTRUCTION("MTXLOCK", instruction_mtxlock);
                    822:    INSTRUCTION("PERSIST", instruction_persist);
                    823:    INSTRUCTION("PLOTTER", instruction_plotter);
                    824:    INSTRUCTION("PRIVATE", instruction_private);
                    825:    INSTRUCTION("PROTECT", instruction_protect);
                    826:    INSTRUCTION("PSHPRFL", instruction_pshprfl);
                    827:    INSTRUCTION("PULPRFL", instruction_pulprfl);
1.64      bertrand  828:    INSTRUCTION("RESTART", instruction_restart);
1.1       bertrand  829:    INSTRUCTION("REVLIST", instruction_revlist);
                    830:    INSTRUCTION("SCATTER", instruction_scatter);
                    831:    INSTRUCTION("SUSPEND", instruction_suspend);
                    832:    INSTRUCTION("SWILOCK", instruction_swilock);
                    833:    INSTRUCTION("SYSEVAL", instruction_syseval);
                    834:    INSTRUCTION("TABLE->", instruction_table_fleche);
                    835:    INSTRUCTION("VERSION", instruction_version);
                    836:    INSTRUCTION("WORKDIR", instruction_workdir);
                    837:    INSTRUCTION("->ARRAY", instruction_fleche_array);
                    838:    INSTRUCTION("->TABLE", instruction_fleche_table);
                    839: 
                    840:    INSTRUCTION("CLRCNTXT", instruction_clrcntxt);
                    841:    INSTRUCTION("CLRSMPHR", instruction_clrsmphr);
                    842:    INSTRUCTION("CONTINUE", instruction_continue);
                    843:    INSTRUCTION("DUPCNTXT", instruction_dupcntxt);
                    844:    INSTRUCTION("FUNCTION", instruction_function);
1.7       bertrand  845:    INSTRUCTION("IMPLICIT", instruction_implicit);
1.50      bertrand  846:    INSTRUCTION("INFINITY", instruction_sensible_infinity);
1.1       bertrand  847:    INSTRUCTION("KEYLABEL", instruction_keylabel);
                    848:    INSTRUCTION("KEYTITLE", instruction_keytitle);
                    849:    INSTRUCTION("LOGSCALE", instruction_logscale);
                    850:    INSTRUCTION("NEWPLANE", instruction_newplane);
                    851:    INSTRUCTION("PSHCNTXT", instruction_pshcntxt);
                    852:    INSTRUCTION("PULCNTXT", instruction_pulcntxt);
                    853:    INSTRUCTION("SQLQUERY", instruction_sqlquery);
                    854:    INSTRUCTION("SWIQUEUE", instruction_swiqueue);
                    855:    INSTRUCTION("TOKENIZE", instruction_tokenize);
                    856:    INSTRUCTION("VARIABLE", instruction_variable);
                    857:    INSTRUCTION("VOLATILE", instruction_volatile);
                    858:    INSTRUCTION("WARRANTY", instruction_warranty);
                    859: 
                    860:    INSTRUCTION("AUTOSCALE", instruction_autoscale);
                    861:    INSTRUCTION("BACKSPACE", instruction_backspace);
1.22      bertrand  862:    INSTRUCTION("BACKTRACE", instruction_backtrace);
1.13      bertrand  863:    INSTRUCTION("CLRATEXIT", instruction_clratexit);
1.24      bertrand  864:    INSTRUCTION("CLRATPOKE", instruction_clratpoke);
1.1       bertrand  865:    INSTRUCTION("COPYRIGHT", instruction_copyright);
                    866:    //INSTRUCTION("CYLINDRIC");
                    867:    INSTRUCTION("DAEMONIZE", instruction_daemonize);
                    868:    INSTRUCTION("DROPCNTXT", instruction_dropcntxt);
                    869:    INSTRUCTION("EXTERNALS", instruction_externals);
                    870:    INSTRUCTION("HISTOGRAM", instruction_histogram);
1.15      bertrand  871:    INSTRUCTION("MEMUNLOCK", instruction_memunlock);
1.1       bertrand  872:    INSTRUCTION("MTXSTATUS", instruction_mtxstatus);
                    873:    INSTRUCTION("MTXUNLOCK", instruction_mtxunlock);
                    874:    INSTRUCTION("PARAMETER", instruction_parameter);
                    875:    //INSTRUCTION("PSCONTOUR")
                    876:    //INSTRUCTION("SCATRPLOT")
                    877:    //(trace un nuage de points de SDAT et la courbe de régression)
                    878:    INSTRUCTION("SMPHRDECR", instruction_smphrdecr);
                    879:    INSTRUCTION("SMPHRGETV", instruction_smphrgetv);
                    880:    INSTRUCTION("SMPHRINCR", instruction_smphrincr);
                    881:    INSTRUCTION("SWAPCNTXT", instruction_swapcntxt);
                    882:    INSTRUCTION("SWISTATUS", instruction_swistatus);
                    883:    INSTRUCTION("SWIUNLOCK", instruction_swiunlock);
                    884:    INSTRUCTION("UNPROTECT", instruction_unprotect);
                    885:    INSTRUCTION("WIREFRAME", instruction_wireframe);
                    886: 
                    887:    INSTRUCTION("MTXTRYLOCK", instruction_mtxtrylock);
                    888:    INSTRUCTION("PARAMETRIC", instruction_parametric);
                    889:    //INSTRUCTION("PARSURFACE")
                    890:    //Instruction HP48 (tracé PARSURFACE) Equation sous forme de liste
                    891:    INSTRUCTION("SLICESCALE", instruction_slicescale);
                    892:    INSTRUCTION("SQLCONNECT", instruction_sqlconnect);
                    893:    //INSTRUCTION("SLOPEFIELD")
                    894:    //Instruction HP48 (type de tracé)
                    895:    //Tracé 3D en courbes de niveaux.
                    896:    //Le type de tracé 'SLOPEFIELD' dessine un réseau de segments dont les
                    897:    //pentes
                    898:    //représentent la valeur de la fonction (x,y) en leur milieu.
                    899:    //=> utile pour y'=F(x,y)
                    900: 
                    901:    INSTRUCTION("LOCALIZATION", instruction_localization);
                    902:    INSTRUCTION("SMPHRTRYDECR", instruction_smphrtrydecr);
                    903: 
                    904:    INSTRUCTION("SQLDISCONNECT", instruction_sqldisconnect);
                    905: #undef INSTRUCTION
                    906: 
                    907:    return;
                    908: }
                    909: 
                    910: 
1.25      bertrand  911: void *
1.1       bertrand  912: analyse_instruction(struct_processus *s_etat_processus, unsigned char *ptr)
                    913: {
                    914:    int                             pointeur;
                    915: 
                    916:    struct_instruction              *l_instruction_courante;
                    917: 
                    918:    l_instruction_courante = (*s_etat_processus).arbre_instructions;
                    919: 
                    920:    while((*ptr) != d_code_fin_chaine)
                    921:    {
                    922:        pointeur = (*s_etat_processus).pointeurs_caracteres[*ptr];
                    923: 
                    924:        if (pointeur < 0)
                    925:        {
                    926:            // Caractère hors de l'alphabet des instructions
                    927: 
                    928:            return(NULL);
                    929:        }
                    930: 
1.41      bertrand  931:        if ((*l_instruction_courante).noeuds[pointeur] == NULL)
1.1       bertrand  932:        {
                    933:            // Le chemin de l'instruction candidate n'existe pas.
                    934: 
                    935:            return(NULL);
                    936:        }
                    937: 
1.41      bertrand  938:        l_instruction_courante = (*l_instruction_courante).noeuds[pointeur];
1.1       bertrand  939:        ptr++;
                    940: 
                    941:        if ((l_instruction_courante == NULL) && ((*ptr) != d_code_fin_chaine))
                    942:        {
                    943:            // Le chemin de l'instruction candidate est incomplet.
                    944: 
                    945:            return(NULL);
                    946:        }
                    947:    }
                    948: 
                    949:    if ((*l_instruction_courante).feuille != NULL)
                    950:    {
                    951:        return((*l_instruction_courante).feuille);
                    952:    }
                    953: 
                    954:    return(NULL);
                    955: }
                    956: 
                    957: 
                    958: void
                    959: analyse(struct_processus *s_etat_processus, void (*fonction)())
                    960: {
                    961:    static logical1                 initialisation = d_faux;
                    962: 
                    963:    real8                           attente;
                    964:    real8                           pourcentage;
                    965:    real8                           temps_cpu;
                    966:    real8                           temps_reel;
                    967: 
                    968:    static struct timeval           horodatage_initial;
                    969:    struct timeval                  horodatage_final;
                    970: 
1.61      bertrand  971: #  ifndef OS2
1.1       bertrand  972:    static struct rusage            usage_initial;
                    973:    struct rusage                   usage_final;
1.61      bertrand  974: #  else
                    975:    static clock_t                  usage_initial;
                    976:    clock_t                         usage_final;
                    977: #  endif
1.1       bertrand  978: 
                    979:    struct timespec                 temporisation;
                    980: 
                    981:    unsigned char                   *position;
                    982:    unsigned char                   *bibliotheque_candidate;
1.14      bertrand  983:    unsigned char                   instruction_majuscule
                    984:                                            [d_longueur_maximale_instruction];
1.1       bertrand  985:    unsigned char                   registre_instruction_valide;
                    986: 
                    987:    void                            (*instruction)();
                    988: 
                    989:    errno = 0;
                    990:    (*s_etat_processus).var_volatile_exception_gsl = 0;
                    991: 
                    992:    (*s_etat_processus).instruction_valide = 'Y';
                    993:    (*s_etat_processus).constante_symbolique = 'N';
                    994:    (*s_etat_processus).nombre_arguments = -2;
                    995:    (*s_etat_processus).instruction_intrinseque = 'I';
                    996: 
                    997:    /*
                    998:     * On autorise l'exécution d'un fork() dans un thread concurrent.
                    999:     */
                   1000: 
1.57      bertrand 1001: #  ifndef SEMAPHORES_NOMMES
                   1002:        if (sem_post(&((*s_etat_processus).semaphore_fork)) != 0)
                   1003: #  else
                   1004:        if (sem_post((*s_etat_processus).semaphore_fork) != 0)
                   1005: #  endif
1.1       bertrand 1006:    {
                   1007:        (*s_etat_processus).erreur_systeme = d_es_processus;
                   1008:        return;
                   1009:    }
                   1010: 
1.57      bertrand 1011: #  ifndef SEMAPHORES_NOMMES
                   1012:        while(sem_wait(&((*s_etat_processus).semaphore_fork)) != 0)
                   1013: #  else
                   1014:        while(sem_wait((*s_etat_processus).semaphore_fork) != 0)
                   1015: #  endif
1.9       bertrand 1016:    {
1.56      bertrand 1017:        if (errno != EINTR)
                   1018:        {
                   1019:            (*s_etat_processus).erreur_systeme = d_es_processus;
                   1020:            return;
                   1021:        }
1.9       bertrand 1022:    }
                   1023: 
1.1       bertrand 1024:    scrutation_injection(s_etat_processus);
                   1025: 
                   1026:    if (fonction == NULL)
                   1027:    {
1.14      bertrand 1028:        conversion_majuscule_limitee((*s_etat_processus).instruction_courante,
                   1029:                instruction_majuscule, d_longueur_maximale_instruction);
1.1       bertrand 1030:        instruction = analyse_instruction(s_etat_processus,
                   1031:                instruction_majuscule);
                   1032: 
                   1033:        if (instruction == NULL)
                   1034:        {
                   1035:            // L'instruction n'existe pas.
                   1036: 
                   1037:            (*s_etat_processus).instruction_valide = 'N';
                   1038:        }
                   1039:        else
                   1040:        {
                   1041:            // Exécution de l'instruction associée. Le drapeau
                   1042:            // (*s_etat_processus).instruction_valide peut passer à 'N'
                   1043:            // dans le cas d'instructions sensibles à la casse.
                   1044: 
                   1045:            if ((*s_etat_processus).niveau_profilage >= 2)
                   1046:            {
                   1047:                profilage(s_etat_processus, instruction_majuscule);
                   1048:            }
                   1049: 
                   1050:            (*s_etat_processus).instruction_valide = 'Y';
                   1051:            instruction(s_etat_processus);
                   1052: 
                   1053:            if ((*s_etat_processus).niveau_profilage >= 2)
                   1054:            {
                   1055:                profilage(s_etat_processus, NULL);
                   1056:            }
                   1057:        }
                   1058:    }
                   1059:    else
                   1060:    {
                   1061:        if ((*s_etat_processus).niveau_profilage >= 2)
                   1062:        {
                   1063:            profilage(s_etat_processus,
                   1064:                    (*s_etat_processus).instruction_courante);
                   1065:        }
                   1066: 
                   1067:        (*s_etat_processus).instruction_valide = 'Y';
                   1068:        fonction(s_etat_processus);
                   1069: 
                   1070:        if ((*s_etat_processus).niveau_profilage >= 2)
                   1071:        {
                   1072:            profilage(s_etat_processus, NULL);
                   1073:        }
                   1074:    }
                   1075: 
                   1076:    if ((*s_etat_processus).instruction_valide == 'Y')
                   1077:    {
                   1078:        (*s_etat_processus).instruction_intrinseque = 'Y';
                   1079:    }
                   1080: 
                   1081:    if ((*s_etat_processus).instruction_valide == 'N')
                   1082:    {
                   1083:        if ((position = index((*s_etat_processus).instruction_courante, '$'))
                   1084:                != NULL)
                   1085:        {
                   1086:            if ((bibliotheque_candidate = malloc((position + 1
                   1087:                    - (*s_etat_processus).instruction_courante)
                   1088:                    * sizeof(unsigned char))) == NULL)
                   1089:            {
                   1090:                (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1091:                return;
                   1092:            }
                   1093: 
                   1094:            (*bibliotheque_candidate) = d_code_fin_chaine;
                   1095:            strncat(bibliotheque_candidate,
                   1096:                    (*s_etat_processus).instruction_courante,
                   1097:                    position - (*s_etat_processus).instruction_courante);
                   1098: 
                   1099:            position++;
                   1100: 
                   1101:            if (execution_fonction_de_bibliotheque(s_etat_processus, position,
                   1102:                    bibliotheque_candidate) == d_vrai)
                   1103:            {
                   1104:                (*s_etat_processus).instruction_valide = 'Y';
                   1105:                (*s_etat_processus).instruction_intrinseque = 'N';
                   1106:            }
                   1107:            else
                   1108:            {
                   1109:                (*s_etat_processus).instruction_valide = 'N';
                   1110:            }
                   1111: 
                   1112:            free(bibliotheque_candidate);
                   1113:        }
                   1114:        else
                   1115:        {
                   1116:            if (execution_fonction_de_bibliotheque(s_etat_processus,
                   1117:                    (*s_etat_processus).instruction_courante, NULL)
                   1118:                    == d_vrai)
                   1119:            {
                   1120:                (*s_etat_processus).instruction_valide = 'Y';
                   1121:                (*s_etat_processus).instruction_intrinseque = 'N';
                   1122:            }
                   1123:            else
                   1124:            {
                   1125:                (*s_etat_processus).instruction_valide = 'N';
                   1126:            }
                   1127:        }
                   1128:    }
                   1129: 
                   1130: /*
                   1131: --------------------------------------------------------------------------------
                   1132:   Gestion des interruptions logicielles
                   1133: --------------------------------------------------------------------------------
                   1134: */
                   1135: 
                   1136:    if (((*s_etat_processus).erreur_systeme == d_es) &&
                   1137:            ((*s_etat_processus).erreur_execution == d_ex) &&
                   1138:            ((*s_etat_processus).exception == d_ep))
                   1139:    {
                   1140:        if ((*s_etat_processus).test_instruction == 'N')
                   1141:        {
                   1142:            if ((*s_etat_processus).nombre_interruptions_non_affectees != 0)
                   1143:            {
                   1144:                affectation_interruptions_logicielles(s_etat_processus);
                   1145:            }
                   1146: 
                   1147:            if (((*s_etat_processus).nombre_interruptions_en_queue != 0) &&
                   1148:                    ((*s_etat_processus).erreur_systeme == d_es) &&
                   1149:                    ((*s_etat_processus).erreur_execution == d_ex))
                   1150:            {
                   1151: 
                   1152:                registre_instruction_valide =
                   1153:                        (*s_etat_processus).instruction_valide;
                   1154:                traitement_interruptions_logicielles(s_etat_processus);
                   1155:                (*s_etat_processus).instruction_valide =
                   1156:                        registre_instruction_valide;
                   1157:            }
                   1158:        }
                   1159:    }
                   1160: 
                   1161: /*
                   1162: --------------------------------------------------------------------------------
                   1163:   Limitation du pourcetage de temps CPU
                   1164: --------------------------------------------------------------------------------
                   1165: */
                   1166: 
                   1167:    if ((*s_etat_processus).pourcentage_maximal_cpu < 100)
                   1168:    {
1.61      bertrand 1169: #      ifndef OS2
1.1       bertrand 1170:        getrusage(RUSAGE_SELF, &usage_final);
1.61      bertrand 1171: #      else
                   1172:        usage_final = clock();
                   1173: #      endif
                   1174: 
1.1       bertrand 1175:        gettimeofday(&horodatage_final, NULL);
                   1176: 
                   1177:        if (initialisation == d_vrai)
                   1178:        {
                   1179:            temps_reel = ((real8) (horodatage_final.tv_sec -
                   1180:                    horodatage_initial.tv_sec)) +
                   1181:                    (((real8) (horodatage_final.tv_usec -
                   1182:                    horodatage_initial.tv_usec)) / ((real8) 1E6));
                   1183: 
1.61      bertrand 1184:            // Le temps depuis la dernière limitation est de plus de un
                   1185:            // dixième de seconde.
                   1186: 
1.1       bertrand 1187:            if (temps_reel >= 0.1)
                   1188:            {
1.61      bertrand 1189: #              ifndef OS2
1.1       bertrand 1190:                temps_cpu = ((real8) ((usage_final.ru_utime.tv_sec +
                   1191:                        usage_final.ru_stime.tv_sec) -
                   1192:                        (usage_initial.ru_utime.tv_sec +
                   1193:                        usage_initial.ru_stime.tv_sec))) +
                   1194:                        (((real8) ((usage_final.ru_utime.tv_usec +
                   1195:                        usage_final.ru_stime.tv_usec) -
                   1196:                        (usage_initial.ru_utime.tv_usec +
                   1197:                        usage_initial.ru_stime.tv_usec))) / ((real8) 1E6));
1.61      bertrand 1198: #              else
                   1199:                temps_cpu = (usage_final - usage_initial) / CLOCKS_PER_SEC;
                   1200: #              endif
1.1       bertrand 1201: 
                   1202:                pourcentage = 100 * temps_cpu / temps_reel;
                   1203: 
                   1204:                if (pourcentage > 100)
                   1205:                {
                   1206:                    pourcentage = 100;
                   1207:                }
                   1208: 
                   1209:                if (pourcentage > (*s_etat_processus).pourcentage_maximal_cpu)
                   1210:                {
                   1211:                    attente = ((pourcentage * temps_cpu) /
                   1212:                            (*s_etat_processus).pourcentage_maximal_cpu)
                   1213:                            - (pourcentage * temps_cpu / 100);
                   1214: 
                   1215:                    temporisation.tv_sec = floor(attente);
                   1216:                    temporisation.tv_nsec = (attente - temporisation.tv_sec) *
                   1217:                            1E9;
                   1218: 
1.62      bertrand 1219:                    while(nanosleep(&temporisation, &temporisation) == -1)
                   1220:                    {
                   1221:                        if (errno != EINTR)
                   1222:                        {
                   1223:                            break;
                   1224:                        }
                   1225:                    }
1.1       bertrand 1226:                }
                   1227: 
                   1228:                horodatage_initial = horodatage_final;
                   1229:                usage_initial = usage_final;
                   1230:            }
                   1231:        }
                   1232:        else
                   1233:        {
                   1234:            initialisation = d_vrai;
                   1235: 
                   1236:            horodatage_initial = horodatage_final;
                   1237:            usage_initial = usage_final;
                   1238:        }
                   1239:    }
1.61      bertrand 1240:    else
                   1241:    {
                   1242:        initialisation = d_faux;
                   1243:    }
1.1       bertrand 1244: 
                   1245: /*
                   1246: --------------------------------------------------------------------------------
                   1247:   Introduction des erreurs générées
                   1248: --------------------------------------------------------------------------------
                   1249: */
                   1250: 
                   1251:    if (((*s_etat_processus).test_instruction == 'N') &&
                   1252:            ((*s_etat_processus).instruction_valide == 'Y'))
                   1253:    {
                   1254:        traitement_asynchrone_exceptions_gsl(s_etat_processus);
                   1255: 
                   1256:        if ((*s_etat_processus).erreur_processus_fils == d_vrai)
                   1257:        {
                   1258:            (*s_etat_processus).erreur_processus_fils = d_faux;
                   1259: 
                   1260:            (*s_etat_processus).erreur_systeme =
                   1261:                    (*s_etat_processus).erreur_systeme_processus_fils;
                   1262:            (*s_etat_processus).erreur_execution =
                   1263:                    (*s_etat_processus).erreur_execution_processus_fils;
                   1264:            (*s_etat_processus).arret_si_exception = d_vrai;
                   1265: 
                   1266:            if ((*s_etat_processus).pid_erreur_processus_fils == getpid())
                   1267:            {
                   1268:                (*s_etat_processus).invalidation_message_erreur = d_faux;
                   1269:            }
                   1270:            else
                   1271:            {
                   1272:                (*s_etat_processus).invalidation_message_erreur = d_vrai;
                   1273:            }
                   1274:        }
                   1275: 
                   1276:        if (((*s_etat_processus).erreur_execution != d_ex) ||
                   1277:                ((*s_etat_processus).erreur_systeme != d_es) ||
                   1278:                ((*s_etat_processus).exception != d_ep))
                   1279:        {
                   1280:            (*s_etat_processus).niveau_derniere_erreur =
                   1281:                    (*s_etat_processus).niveau_courant;
                   1282: 
                   1283:            if ((*s_etat_processus).mode_execution_programme == 'Y')
                   1284:            {
1.21      bertrand 1285:                if ((*s_etat_processus).instruction_derniere_erreur != NULL)
                   1286:                {
                   1287:                    free((*s_etat_processus).instruction_derniere_erreur);
                   1288:                    (*s_etat_processus).instruction_derniere_erreur = NULL;
                   1289:                }
                   1290: 
1.1       bertrand 1291:                if ((*s_etat_processus).instruction_courante == NULL)
                   1292:                {
                   1293:                    if (((*s_etat_processus).instruction_derniere_erreur =
                   1294:                            malloc(16 * sizeof(unsigned char))) == NULL)
                   1295:                    {
                   1296:                        (*s_etat_processus).erreur_systeme =
                   1297:                                d_es_allocation_memoire;
                   1298:                        return;
                   1299:                    }
                   1300: 
                   1301:                    strcpy((*s_etat_processus).instruction_derniere_erreur,
                   1302:                            "<not available>");
                   1303:                }
                   1304:                else
                   1305:                {
                   1306:                    if (((*s_etat_processus).instruction_derniere_erreur =
                   1307:                            malloc((strlen((*s_etat_processus)
                   1308:                            .instruction_courante) + 1) *
                   1309:                            sizeof(unsigned char))) == NULL)
                   1310:                    {
                   1311:                        (*s_etat_processus).erreur_systeme =
                   1312:                                d_es_allocation_memoire;
                   1313:                        return;
                   1314:                    }
                   1315: 
                   1316:                    strcpy((*s_etat_processus).instruction_derniere_erreur,
                   1317:                            (*s_etat_processus).instruction_courante);
                   1318:                }
                   1319:            }
                   1320:            else
                   1321:            {
1.21      bertrand 1322:                if ((*s_etat_processus).objet_courant != NULL)
1.1       bertrand 1323:                {
1.21      bertrand 1324:                    if ((*s_etat_processus).instruction_derniere_erreur != NULL)
                   1325:                    {
                   1326:                        free((*s_etat_processus).instruction_derniere_erreur);
                   1327:                        (*s_etat_processus).instruction_derniere_erreur = NULL;
                   1328:                    }
                   1329: 
                   1330:                    if (((*s_etat_processus).instruction_derniere_erreur =
                   1331:                            formateur(s_etat_processus, 0,
                   1332:                            (*s_etat_processus).objet_courant)) == NULL)
                   1333:                    {
                   1334:                        return;
                   1335:                    }
                   1336: 
                   1337:                    (*s_etat_processus).objet_courant = NULL;
1.1       bertrand 1338:                }
                   1339:            }
                   1340:        }
                   1341:    }
                   1342: 
                   1343:    return;
                   1344: }
                   1345: 
                   1346: 
                   1347: /*
                   1348: ================================================================================
                   1349:   Traitement asynchrone des erreurs de la bibliothèque GSL
                   1350: ================================================================================
                   1351:   Entrées :
                   1352: --------------------------------------------------------------------------------
                   1353:   Sorties :
                   1354: --------------------------------------------------------------------------------
                   1355:   Effets de bord : néant
                   1356: ================================================================================
                   1357: */
                   1358: 
                   1359: void
                   1360: traitement_asynchrone_exceptions_gsl(struct_processus *s_etat_processus)
                   1361: {
                   1362:    if ((*s_etat_processus).var_volatile_exception_gsl != 0)
                   1363:    {
                   1364:        switch((*s_etat_processus).var_volatile_exception_gsl)
                   1365:        {
                   1366:            case GSL_EINVAL :
                   1367:            {
                   1368:                (*s_etat_processus).erreur_execution = d_ex_argument_invalide;
                   1369:                break;
                   1370:            }
                   1371: 
                   1372:            case GSL_EDOM :
                   1373:            {
                   1374:                (*s_etat_processus).exception = d_ep_domaine_definition;
                   1375:                break;
                   1376:            }
                   1377: 
                   1378:            case GSL_ERANGE :
                   1379:            {
                   1380:                (*s_etat_processus).exception = d_ep_resultat_indefini;
                   1381:                break;
                   1382:            }
                   1383: 
                   1384:            case GSL_EZERODIV :
                   1385:            {
                   1386:                (*s_etat_processus).exception = d_ep_division_par_zero;
                   1387:                break;
                   1388:            }
                   1389: 
                   1390:            case GSL_EUNDRFLW :
                   1391:            {
                   1392:                (*s_etat_processus).exception = d_ep_underflow;
                   1393:                break;
                   1394:            }
                   1395: 
                   1396:            case GSL_EOVRFLW :
                   1397:            {
                   1398:                (*s_etat_processus).exception = d_ep_overflow;
                   1399:                break;
                   1400:            }
                   1401: 
                   1402:            case GSL_ENOMEM :
                   1403:            {
                   1404:                (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
                   1405:                break;
                   1406:            }
                   1407: 
                   1408:            case GSL_ELOSS :
                   1409:            {
                   1410:                (*s_etat_processus).exception = d_ep_perte_precision;
                   1411:                break;
                   1412:            }
                   1413: 
                   1414:            default :
                   1415:            {
                   1416:                (*s_etat_processus).erreur_execution =
                   1417:                        d_ex_routines_mathematiques;
                   1418:                break;
                   1419:            }
                   1420:        }
                   1421: 
                   1422:        (*s_etat_processus).var_volatile_exception_gsl = 0;
                   1423:    }
                   1424: 
                   1425:    return;
                   1426: }
                   1427: 
                   1428: // vim: ts=4

CVSweb interface <joel.bertrand@systella.fr>