File:  [local] / rpl / src / analyse.c
Revision 1.77: download - view: text, annotated - select for diffs - revision graph
Wed Dec 19 09:58:21 2012 UTC (11 years, 4 months ago) by bertrand
Branches: MAIN
CVS tags: HEAD
Changement des dates du copyright.

    1: /*
    2: ================================================================================
    3:   RPL/2 (R) version 4.1.12
    4:   Copyright (C) 1989-2012 Dr. BERTRAND Joël
    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: 
   23: #include "rpl-conv.h"
   24: 
   25: 
   26: /*
   27: ================================================================================
   28:   Analyseur syntaxique de l'interprète RPL/2
   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: 
   48:     BUG(strlen(instruction) >= d_longueur_maximale_instruction,
   49:             printf("%s -> %d >= %d\n", instruction, (int) strlen(instruction),
   50:             d_longueur_maximale_instruction));
   51: 
   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: 
   63:         if (((*(*s_etat_processus).arbre_instructions).noeuds =
   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:         {
   73:             (*(*s_etat_processus).arbre_instructions).noeuds[i] = NULL;
   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: 
   86:         if ((*l_instruction_courante).noeuds[(*s_etat_processus)
   87:                 .pointeurs_caracteres[*ptr]] == NULL)
   88:         {
   89:             // Le noeud suivant n'existe pas, on le crée.
   90: 
   91:             if (((*l_instruction_courante).noeuds[(*s_etat_processus)
   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: 
   99:             (*(*l_instruction_courante).noeuds[(*s_etat_processus)
  100:                     .pointeurs_caracteres[*ptr]]).feuille = NULL;
  101: 
  102:             if (((*(*l_instruction_courante).noeuds[(*s_etat_processus)
  103:                     .pointeurs_caracteres[*ptr]]).noeuds =
  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:             {
  113:                 (*(*l_instruction_courante).noeuds[(*s_etat_processus)
  114:                         .pointeurs_caracteres[*ptr]]).noeuds[i] = NULL;
  115:             }
  116:         }
  117: 
  118:         l_instruction_courante = (*l_instruction_courante).noeuds
  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:     {
  140:         if ((*arbre).noeuds[i] != NULL)
  141:         {
  142:             liberation_arbre_instructions(s_etat_processus, (*arbre).noeuds[i]);
  143:         }
  144:     }
  145: 
  146:     free((*arbre).noeuds);
  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);
  468:     INSTRUCTION("L->T", instruction_l_vers_t);
  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);
  490:     INSTRUCTION("POLL", instruction_poll);
  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");
  544:     INSTRUCTION("SREV", instruction_srev);
  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);
  570:     INSTRUCTION("T->L", instruction_t_vers_l);
  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);
  651:     INSTRUCTION("LIMIT", instruction_limit);
  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);
  680:     INSTRUCTION("REGEX", instruction_regex);
  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);
  722:     INSTRUCTION("ATEXIT", instruction_atexit);
  723:     INSTRUCTION("ATPOKE", instruction_atpoke);
  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);
  730: #   ifdef SHARED_MEMORY
  731:         INSTRUCTION("DETACH", instruction_detach);
  732: #   else
  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);
  747: #   endif
  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("FORALL", instruction_forall);
  761:     INSTRUCTION("FORMAT", instruction_format);
  762:     //INSTRUCTION("HEIGHT")
  763:     INSTRUCTION("ITRACE", instruction_itrace);
  764:     INSTRUCTION("LIST->", instruction_list_fleche);
  765:     INSTRUCTION("LOGGER", instruction_logger);
  766:     INSTRUCTION("MCLRIN", instruction_mclrin);
  767:     INSTRUCTION("NRPROC", instruction_nrproc);
  768:     INSTRUCTION("PROCID", instruction_procid);
  769:     INSTRUCTION("PROMPT", instruction_prompt);
  770:     INSTRUCTION("RCLSWI", instruction_rclswi);
  771:     INSTRUCTION("RECALL", instruction_recall);
  772:     INSTRUCTION("RECODE", instruction_recode);
  773:     INSTRUCTION("REDRAW", instruction_redraw);
  774:     INSTRUCTION("REMOVE", instruction_remove);
  775:     INSTRUCTION("REPEAT", instruction_repeat);
  776:     INSTRUCTION("RETURN", instruction_return);
  777:     INSTRUCTION("REWIND", instruction_rewind);
  778:     //INSTRUCTION("SCREEN")
  779:     INSTRUCTION("SELECT", instruction_select);
  780:     //INSTRUCTION("SPHERE")
  781:     INSTRUCTION("SHARED", instruction_shared);
  782:     INSTRUCTION("SPLASH", instruction_splash);
  783:     INSTRUCTION("STATIC", instruction_static);
  784:     INSTRUCTION("STOSWI", instruction_stoswi);
  785:     //INSTRUCTION("STREAM", instruction_stream);
  786:     //{ 1 2 3 4 5 } << * >> STREAM => 120
  787:     INSTRUCTION("TARGET", instruction_target);
  788:     INSTRUCTION("UNLOCK", instruction_unlock);
  789:     INSTRUCTION("VERIFY", instruction_verify);
  790:     INSTRUCTION("WFDATA", instruction_wfdata);
  791:     INSTRUCTION("WFLOCK", instruction_wflock);
  792:     INSTRUCTION("WFPOKE", instruction_wfpoke);
  793:     INSTRUCTION("WFPROC", instruction_wfproc);
  794:     INSTRUCTION("WFSOCK", instruction_wfsock);
  795:     INSTRUCTION("->ARRY", instruction_fleche_array);
  796:     INSTRUCTION("->DIAG", instruction_fleche_diag);
  797:     INSTRUCTION("->LIST", instruction_fleche_list);
  798: 
  799:     INSTRUCTION("ARRAY->", instruction_array_fleche);
  800:     //INSTRUCTION("BARPLOT")
  801:     //INSTRUCTION("BESTFIT")
  802:     //Instruction HP48 (choisit le meilleur modèle de régression)
  803:     INSTRUCTION("CLRFUSE", instruction_clrfuse);
  804:     INSTRUCTION("CONVERT", instruction_convert);
  805:     INSTRUCTION("CRSMPHR", instruction_crsmphr);
  806:     INSTRUCTION("CURRENC", instruction_currenc);
  807:     INSTRUCTION("DEFAULT", instruction_default);
  808:     INSTRUCTION("EPSILON", instruction_epsilon);
  809:     //INSTRUCTION("GRIDMAP")
  810:     //Instruction HP48 (sélectionne le mode de tracé GRIDMAP)
  811:     //Le tracé GRIDMAP transforme la grille d'échantillonnage rectiligne
  812:     //en appliquant la fonction en cours à valeurs complexes.
  813:     //Les coordonnées de chaque point de la grille (un nombre complexe)
  814:     //constituent
  815:     //les données d'entrée de la fonction qui les projette ensuite dans le
  816:     //grille
  817:     //de sortie.
  818:     //f(x,y)=fnct complexe évaluée sur la grille (x,y) et affichée comme une
  819:     //fonction paramétrique.
  820:     INSTRUCTION("INQUIRE", instruction_inquire);
  821:     INSTRUCTION("MEMLOCK", instruction_memlock);
  822:     INSTRUCTION("MTXLOCK", instruction_mtxlock);
  823:     INSTRUCTION("PERSIST", instruction_persist);
  824:     INSTRUCTION("PLOTTER", instruction_plotter);
  825:     INSTRUCTION("PRIVATE", instruction_private);
  826:     INSTRUCTION("PROTECT", instruction_protect);
  827:     INSTRUCTION("PSHPRFL", instruction_pshprfl);
  828:     INSTRUCTION("PULPRFL", instruction_pulprfl);
  829:     INSTRUCTION("RESTART", instruction_restart);
  830:     INSTRUCTION("REVLIST", instruction_revlist);
  831:     INSTRUCTION("SCATTER", instruction_scatter);
  832:     INSTRUCTION("SUSPEND", instruction_suspend);
  833:     INSTRUCTION("SWILOCK", instruction_swilock);
  834:     INSTRUCTION("SYSEVAL", instruction_syseval);
  835:     INSTRUCTION("TABLE->", instruction_table_fleche);
  836:     INSTRUCTION("VERSION", instruction_version);
  837:     INSTRUCTION("WORKDIR", instruction_workdir);
  838:     INSTRUCTION("->ARRAY", instruction_fleche_array);
  839:     INSTRUCTION("->TABLE", instruction_fleche_table);
  840: 
  841:     INSTRUCTION("CLRCNTXT", instruction_clrcntxt);
  842:     INSTRUCTION("CLRSMPHR", instruction_clrsmphr);
  843:     INSTRUCTION("CONTINUE", instruction_continue);
  844:     INSTRUCTION("CRITICAL", instruction_critical);
  845:     INSTRUCTION("DUPCNTXT", instruction_dupcntxt);
  846:     INSTRUCTION("FUNCTION", instruction_function);
  847:     INSTRUCTION("IMPLICIT", instruction_implicit);
  848:     INSTRUCTION("INFINITY", instruction_sensible_infinity);
  849:     INSTRUCTION("KEYLABEL", instruction_keylabel);
  850:     INSTRUCTION("KEYTITLE", instruction_keytitle);
  851:     INSTRUCTION("LOGSCALE", instruction_logscale);
  852:     INSTRUCTION("NEWPLANE", instruction_newplane);
  853:     INSTRUCTION("PSHCNTXT", instruction_pshcntxt);
  854:     INSTRUCTION("PULCNTXT", instruction_pulcntxt);
  855:     INSTRUCTION("SQLQUERY", instruction_sqlquery);
  856:     INSTRUCTION("SWIQUEUE", instruction_swiqueue);
  857:     INSTRUCTION("TOKENIZE", instruction_tokenize);
  858:     INSTRUCTION("VARIABLE", instruction_variable);
  859:     INSTRUCTION("VOLATILE", instruction_volatile);
  860:     INSTRUCTION("WARRANTY", instruction_warranty);
  861: 
  862:     INSTRUCTION("AUTOSCALE", instruction_autoscale);
  863:     INSTRUCTION("BACKSPACE", instruction_backspace);
  864:     INSTRUCTION("BACKTRACE", instruction_backtrace);
  865:     INSTRUCTION("CLRATEXIT", instruction_clratexit);
  866:     INSTRUCTION("CLRATPOKE", instruction_clratpoke);
  867:     INSTRUCTION("COPYRIGHT", instruction_copyright);
  868:     //INSTRUCTION("CYLINDRIC");
  869:     INSTRUCTION("DAEMONIZE", instruction_daemonize);
  870:     INSTRUCTION("DROPCNTXT", instruction_dropcntxt);
  871:     INSTRUCTION("EXTERNALS", instruction_externals);
  872:     INSTRUCTION("HISTOGRAM", instruction_histogram);
  873:     INSTRUCTION("MEMUNLOCK", instruction_memunlock);
  874:     INSTRUCTION("MTXSTATUS", instruction_mtxstatus);
  875:     INSTRUCTION("MTXUNLOCK", instruction_mtxunlock);
  876:     INSTRUCTION("PARAMETER", instruction_parameter);
  877:     //INSTRUCTION("PSCONTOUR")
  878:     //INSTRUCTION("SCATRPLOT")
  879:     //(trace un nuage de points de SDAT et la courbe de régression)
  880:     INSTRUCTION("SMPHRDECR", instruction_smphrdecr);
  881:     INSTRUCTION("SMPHRGETV", instruction_smphrgetv);
  882:     INSTRUCTION("SMPHRINCR", instruction_smphrincr);
  883:     INSTRUCTION("SWAPCNTXT", instruction_swapcntxt);
  884:     INSTRUCTION("SWISTATUS", instruction_swistatus);
  885:     INSTRUCTION("SWIUNLOCK", instruction_swiunlock);
  886:     INSTRUCTION("UNPROTECT", instruction_unprotect);
  887:     INSTRUCTION("WIREFRAME", instruction_wireframe);
  888: 
  889:     INSTRUCTION("MTXTRYLOCK", instruction_mtxtrylock);
  890:     INSTRUCTION("PARAMETRIC", instruction_parametric);
  891:     //INSTRUCTION("PARSURFACE")
  892:     //Instruction HP48 (tracé PARSURFACE) Equation sous forme de liste
  893:     INSTRUCTION("SLICESCALE", instruction_slicescale);
  894:     INSTRUCTION("SQLCONNECT", instruction_sqlconnect);
  895:     //INSTRUCTION("SLOPEFIELD")
  896:     //Instruction HP48 (type de tracé)
  897:     //Tracé 3D en courbes de niveaux.
  898:     //Le type de tracé 'SLOPEFIELD' dessine un réseau de segments dont les
  899:     //pentes
  900:     //représentent la valeur de la fonction (x,y) en leur milieu.
  901:     //=> utile pour y'=F(x,y)
  902: 
  903:     INSTRUCTION("LOCALIZATION", instruction_localization);
  904:     INSTRUCTION("SMPHRTRYDECR", instruction_smphrtrydecr);
  905: 
  906:     INSTRUCTION("SQLDISCONNECT", instruction_sqldisconnect);
  907: #undef INSTRUCTION
  908: 
  909:     return;
  910: }
  911: 
  912: 
  913: void *
  914: analyse_instruction(struct_processus *s_etat_processus, unsigned char *ptr)
  915: {
  916:     int                             pointeur;
  917: 
  918:     struct_instruction              *l_instruction_courante;
  919: 
  920:     l_instruction_courante = (*s_etat_processus).arbre_instructions;
  921: 
  922:     while((*ptr) != d_code_fin_chaine)
  923:     {
  924:         pointeur = (*s_etat_processus).pointeurs_caracteres[*ptr];
  925: 
  926:         if (pointeur < 0)
  927:         {
  928:             // Caractère hors de l'alphabet des instructions
  929: 
  930:             return(NULL);
  931:         }
  932: 
  933:         if ((*l_instruction_courante).noeuds[pointeur] == NULL)
  934:         {
  935:             // Le chemin de l'instruction candidate n'existe pas.
  936: 
  937:             return(NULL);
  938:         }
  939: 
  940:         l_instruction_courante = (*l_instruction_courante).noeuds[pointeur];
  941:         ptr++;
  942: 
  943:         if ((l_instruction_courante == NULL) && ((*ptr) != d_code_fin_chaine))
  944:         {
  945:             // Le chemin de l'instruction candidate est incomplet.
  946: 
  947:             return(NULL);
  948:         }
  949:     }
  950: 
  951:     if ((*l_instruction_courante).feuille != NULL)
  952:     {
  953:         return((*l_instruction_courante).feuille);
  954:     }
  955: 
  956:     return(NULL);
  957: }
  958: 
  959: 
  960: void
  961: analyse(struct_processus *s_etat_processus, void (*fonction)())
  962: {
  963:     static logical1                 initialisation = d_faux;
  964: 
  965:     real8                           attente;
  966:     real8                           pourcentage;
  967:     real8                           temps_cpu;
  968:     real8                           temps_reel;
  969: 
  970:     static struct timeval           horodatage_initial;
  971:     struct timeval                  horodatage_final;
  972: 
  973: #   ifndef OS2
  974:     static struct rusage            usage_initial;
  975:     struct rusage                   usage_final;
  976: #   else
  977:     static clock_t                  usage_initial;
  978:     clock_t                         usage_final;
  979: #   endif
  980: 
  981:     struct timespec                 temporisation;
  982: 
  983:     unsigned char                   *position;
  984:     unsigned char                   *bibliotheque_candidate;
  985:     unsigned char                   instruction_majuscule
  986:                                             [d_longueur_maximale_instruction];
  987:     unsigned char                   registre_instruction_valide;
  988: 
  989:     void                            (*instruction)();
  990: 
  991:     errno = 0;
  992:     (*s_etat_processus).var_volatile_exception_gsl = 0;
  993: 
  994:     (*s_etat_processus).instruction_valide = 'Y';
  995:     (*s_etat_processus).constante_symbolique = 'N';
  996:     (*s_etat_processus).nombre_arguments = -2;
  997:     (*s_etat_processus).instruction_intrinseque = 'I';
  998: 
  999:     /*
 1000:      * On autorise l'exécution d'un fork() dans un thread concurrent.
 1001:      */
 1002: 
 1003: #   ifndef SEMAPHORES_NOMMES
 1004:         if (sem_post(&((*s_etat_processus).semaphore_fork)) != 0)
 1005: #   else
 1006:         if (sem_post((*s_etat_processus).semaphore_fork) != 0)
 1007: #   endif
 1008:     {
 1009:         (*s_etat_processus).erreur_systeme = d_es_processus;
 1010:         return;
 1011:     }
 1012: 
 1013: #   ifndef SEMAPHORES_NOMMES
 1014:         while(sem_wait(&((*s_etat_processus).semaphore_fork)) != 0)
 1015: #   else
 1016:         while(sem_wait((*s_etat_processus).semaphore_fork) != 0)
 1017: #   endif
 1018:     {
 1019:         if (errno != EINTR)
 1020:         {
 1021:             (*s_etat_processus).erreur_systeme = d_es_processus;
 1022:             return;
 1023:         }
 1024:     }
 1025: 
 1026:     /*
 1027:      * Verrou pour les sections_critiques
 1028:      */
 1029: 
 1030:     if (pthread_mutex_lock(&mutex_sections_critiques) != 0)
 1031:     {
 1032:         (*s_etat_processus).erreur_systeme = d_es_processus;
 1033:         return;
 1034:     }
 1035: 
 1036:     if (pthread_mutex_unlock(&mutex_sections_critiques) != 0)
 1037:     {
 1038:         (*s_etat_processus).erreur_systeme = d_es_processus;
 1039:         return;
 1040:     }
 1041: 
 1042:     scrutation_injection(s_etat_processus);
 1043: 
 1044:     if (fonction == NULL)
 1045:     {
 1046:         conversion_majuscule_limitee((*s_etat_processus).instruction_courante,
 1047:                 instruction_majuscule, d_longueur_maximale_instruction);
 1048:         instruction = analyse_instruction(s_etat_processus,
 1049:                 instruction_majuscule);
 1050: 
 1051:         if (instruction == NULL)
 1052:         {
 1053:             // L'instruction n'existe pas.
 1054: 
 1055:             (*s_etat_processus).instruction_valide = 'N';
 1056:         }
 1057:         else
 1058:         {
 1059:             // Exécution de l'instruction associée. Le drapeau
 1060:             // (*s_etat_processus).instruction_valide peut passer à 'N'
 1061:             // dans le cas d'instructions sensibles à la casse.
 1062: 
 1063:             if ((*s_etat_processus).niveau_profilage >= 2)
 1064:             {
 1065:                 profilage(s_etat_processus, instruction_majuscule);
 1066:             }
 1067: 
 1068:             (*s_etat_processus).instruction_valide = 'Y';
 1069:             instruction(s_etat_processus);
 1070: 
 1071:             if ((*s_etat_processus).niveau_profilage >= 2)
 1072:             {
 1073:                 profilage(s_etat_processus, NULL);
 1074:             }
 1075:         }
 1076:     }
 1077:     else
 1078:     {
 1079:         if ((*s_etat_processus).niveau_profilage >= 2)
 1080:         {
 1081:             profilage(s_etat_processus,
 1082:                     (*s_etat_processus).instruction_courante);
 1083:         }
 1084: 
 1085:         (*s_etat_processus).instruction_valide = 'Y';
 1086:         fonction(s_etat_processus);
 1087: 
 1088:         if ((*s_etat_processus).niveau_profilage >= 2)
 1089:         {
 1090:             profilage(s_etat_processus, NULL);
 1091:         }
 1092:     }
 1093: 
 1094:     if ((*s_etat_processus).instruction_valide == 'Y')
 1095:     {
 1096:         (*s_etat_processus).instruction_intrinseque = 'Y';
 1097:     }
 1098: 
 1099:     if ((*s_etat_processus).instruction_valide == 'N')
 1100:     {
 1101:         if ((position = index((*s_etat_processus).instruction_courante, '$'))
 1102:                 != NULL)
 1103:         {
 1104:             if ((bibliotheque_candidate = malloc((position + 1
 1105:                     - (*s_etat_processus).instruction_courante)
 1106:                     * sizeof(unsigned char))) == NULL)
 1107:             {
 1108:                 (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1109:                 return;
 1110:             }
 1111: 
 1112:             (*bibliotheque_candidate) = d_code_fin_chaine;
 1113:             strncat(bibliotheque_candidate,
 1114:                     (*s_etat_processus).instruction_courante,
 1115:                     position - (*s_etat_processus).instruction_courante);
 1116: 
 1117:             position++;
 1118: 
 1119:             if (execution_fonction_de_bibliotheque(s_etat_processus, position,
 1120:                     bibliotheque_candidate) == d_vrai)
 1121:             {
 1122:                 (*s_etat_processus).instruction_valide = 'Y';
 1123:                 (*s_etat_processus).instruction_intrinseque = 'N';
 1124:             }
 1125:             else
 1126:             {
 1127:                 (*s_etat_processus).instruction_valide = 'N';
 1128:             }
 1129: 
 1130:             free(bibliotheque_candidate);
 1131:         }
 1132:         else
 1133:         {
 1134:             if (execution_fonction_de_bibliotheque(s_etat_processus,
 1135:                     (*s_etat_processus).instruction_courante, NULL)
 1136:                     == d_vrai)
 1137:             {
 1138:                 (*s_etat_processus).instruction_valide = 'Y';
 1139:                 (*s_etat_processus).instruction_intrinseque = 'N';
 1140:             }
 1141:             else
 1142:             {
 1143:                 (*s_etat_processus).instruction_valide = 'N';
 1144:             }
 1145:         }
 1146:     }
 1147: 
 1148: /*
 1149: --------------------------------------------------------------------------------
 1150:   Gestion des interruptions logicielles
 1151: --------------------------------------------------------------------------------
 1152: */
 1153: 
 1154:     if (((*s_etat_processus).erreur_systeme == d_es) &&
 1155:             ((*s_etat_processus).erreur_execution == d_ex) &&
 1156:             ((*s_etat_processus).exception == d_ep))
 1157:     {
 1158:         if ((*s_etat_processus).test_instruction == 'N')
 1159:         {
 1160:             if ((*s_etat_processus).nombre_interruptions_non_affectees != 0)
 1161:             {
 1162:                 affectation_interruptions_logicielles(s_etat_processus);
 1163:             }
 1164: 
 1165:             if (((*s_etat_processus).nombre_interruptions_en_queue != 0) &&
 1166:                     ((*s_etat_processus).erreur_systeme == d_es) &&
 1167:                     ((*s_etat_processus).erreur_execution == d_ex))
 1168:             {
 1169: 
 1170:                 registre_instruction_valide =
 1171:                         (*s_etat_processus).instruction_valide;
 1172:                 traitement_interruptions_logicielles(s_etat_processus);
 1173:                 (*s_etat_processus).instruction_valide =
 1174:                         registre_instruction_valide;
 1175:             }
 1176:         }
 1177:     }
 1178: 
 1179: /*
 1180: --------------------------------------------------------------------------------
 1181:   Limitation du pourcetage de temps CPU
 1182: --------------------------------------------------------------------------------
 1183: */
 1184: 
 1185:     if ((*s_etat_processus).pourcentage_maximal_cpu < 100)
 1186:     {
 1187: #       ifndef OS2
 1188:         getrusage(RUSAGE_SELF, &usage_final);
 1189: #       else
 1190:         usage_final = clock();
 1191: #       endif
 1192: 
 1193:         gettimeofday(&horodatage_final, NULL);
 1194: 
 1195:         if (initialisation == d_vrai)
 1196:         {
 1197:             temps_reel = ((real8) (horodatage_final.tv_sec -
 1198:                     horodatage_initial.tv_sec)) +
 1199:                     (((real8) (horodatage_final.tv_usec -
 1200:                     horodatage_initial.tv_usec)) / ((real8) 1E6));
 1201: 
 1202:             // Le temps depuis la dernière limitation est de plus de un
 1203:             // dixième de seconde.
 1204: 
 1205:             if (temps_reel >= 0.1)
 1206:             {
 1207: #               ifndef OS2
 1208:                 temps_cpu = ((real8) ((usage_final.ru_utime.tv_sec +
 1209:                         usage_final.ru_stime.tv_sec) -
 1210:                         (usage_initial.ru_utime.tv_sec +
 1211:                         usage_initial.ru_stime.tv_sec))) +
 1212:                         (((real8) ((usage_final.ru_utime.tv_usec +
 1213:                         usage_final.ru_stime.tv_usec) -
 1214:                         (usage_initial.ru_utime.tv_usec +
 1215:                         usage_initial.ru_stime.tv_usec))) / ((real8) 1E6));
 1216: #               else
 1217:                 temps_cpu = (usage_final - usage_initial) / CLOCKS_PER_SEC;
 1218: #               endif
 1219: 
 1220:                 pourcentage = 100 * temps_cpu / temps_reel;
 1221: 
 1222:                 if (pourcentage > 100)
 1223:                 {
 1224:                     pourcentage = 100;
 1225:                 }
 1226: 
 1227:                 if (pourcentage > (*s_etat_processus).pourcentage_maximal_cpu)
 1228:                 {
 1229:                     attente = ((pourcentage * temps_cpu) /
 1230:                             (*s_etat_processus).pourcentage_maximal_cpu)
 1231:                             - (pourcentage * temps_cpu / 100);
 1232: 
 1233:                     temporisation.tv_sec = floor(attente);
 1234:                     temporisation.tv_nsec = (attente - temporisation.tv_sec) *
 1235:                             1E9;
 1236: 
 1237:                     while(nanosleep(&temporisation, &temporisation) == -1)
 1238:                     {
 1239:                         if (errno != EINTR)
 1240:                         {
 1241:                             break;
 1242:                         }
 1243:                     }
 1244:                 }
 1245: 
 1246:                 horodatage_initial = horodatage_final;
 1247:                 usage_initial = usage_final;
 1248:             }
 1249:         }
 1250:         else
 1251:         {
 1252:             initialisation = d_vrai;
 1253: 
 1254:             horodatage_initial = horodatage_final;
 1255:             usage_initial = usage_final;
 1256:         }
 1257:     }
 1258:     else
 1259:     {
 1260:         initialisation = d_faux;
 1261:     }
 1262: 
 1263: /*
 1264: --------------------------------------------------------------------------------
 1265:   Introduction des erreurs générées
 1266: --------------------------------------------------------------------------------
 1267: */
 1268: 
 1269:     if (((*s_etat_processus).test_instruction == 'N') &&
 1270:             ((*s_etat_processus).instruction_valide == 'Y'))
 1271:     {
 1272:         traitement_asynchrone_exceptions_gsl(s_etat_processus);
 1273: 
 1274:         if ((*s_etat_processus).erreur_processus_fils == d_vrai)
 1275:         {
 1276:             (*s_etat_processus).erreur_processus_fils = d_faux;
 1277: 
 1278:             (*s_etat_processus).erreur_systeme =
 1279:                     (*s_etat_processus).erreur_systeme_processus_fils;
 1280:             (*s_etat_processus).erreur_execution =
 1281:                     (*s_etat_processus).erreur_execution_processus_fils;
 1282:             (*s_etat_processus).arret_si_exception = d_vrai;
 1283: 
 1284:             if ((*s_etat_processus).pid_erreur_processus_fils == getpid())
 1285:             {
 1286:                 (*s_etat_processus).invalidation_message_erreur = d_faux;
 1287:             }
 1288:             else
 1289:             {
 1290:                 (*s_etat_processus).invalidation_message_erreur = d_vrai;
 1291:             }
 1292:         }
 1293: 
 1294:         if (((*s_etat_processus).erreur_execution != d_ex) ||
 1295:                 ((*s_etat_processus).erreur_systeme != d_es) ||
 1296:                 ((*s_etat_processus).exception != d_ep))
 1297:         {
 1298:             (*s_etat_processus).niveau_derniere_erreur =
 1299:                     (*s_etat_processus).niveau_courant;
 1300: 
 1301:             if ((*s_etat_processus).mode_execution_programme == 'Y')
 1302:             {
 1303:                 if ((*s_etat_processus).instruction_derniere_erreur != NULL)
 1304:                 {
 1305:                     free((*s_etat_processus).instruction_derniere_erreur);
 1306:                     (*s_etat_processus).instruction_derniere_erreur = NULL;
 1307:                 }
 1308: 
 1309:                 if ((*s_etat_processus).instruction_courante == NULL)
 1310:                 {
 1311:                     if (((*s_etat_processus).instruction_derniere_erreur =
 1312:                             malloc(16 * sizeof(unsigned char))) == NULL)
 1313:                     {
 1314:                         (*s_etat_processus).erreur_systeme =
 1315:                                 d_es_allocation_memoire;
 1316:                         return;
 1317:                     }
 1318: 
 1319:                     strcpy((*s_etat_processus).instruction_derniere_erreur,
 1320:                             "<not available>");
 1321:                 }
 1322:                 else
 1323:                 {
 1324:                     if (((*s_etat_processus).instruction_derniere_erreur =
 1325:                             malloc((strlen((*s_etat_processus)
 1326:                             .instruction_courante) + 1) *
 1327:                             sizeof(unsigned char))) == NULL)
 1328:                     {
 1329:                         (*s_etat_processus).erreur_systeme =
 1330:                                 d_es_allocation_memoire;
 1331:                         return;
 1332:                     }
 1333: 
 1334:                     strcpy((*s_etat_processus).instruction_derniere_erreur,
 1335:                             (*s_etat_processus).instruction_courante);
 1336:                 }
 1337:             }
 1338:             else
 1339:             {
 1340:                 if ((*s_etat_processus).objet_courant != NULL)
 1341:                 {
 1342:                     if ((*s_etat_processus).instruction_derniere_erreur != NULL)
 1343:                     {
 1344:                         free((*s_etat_processus).instruction_derniere_erreur);
 1345:                         (*s_etat_processus).instruction_derniere_erreur = NULL;
 1346:                     }
 1347: 
 1348:                     if (((*s_etat_processus).instruction_derniere_erreur =
 1349:                             formateur(s_etat_processus, 0,
 1350:                             (*s_etat_processus).objet_courant)) == NULL)
 1351:                     {
 1352:                         return;
 1353:                     }
 1354: 
 1355:                     (*s_etat_processus).objet_courant = NULL;
 1356:                 }
 1357:             }
 1358:         }
 1359:     }
 1360: 
 1361:     return;
 1362: }
 1363: 
 1364: 
 1365: /*
 1366: ================================================================================
 1367:   Traitement asynchrone des erreurs de la bibliothèque GSL
 1368: ================================================================================
 1369:   Entrées :
 1370: --------------------------------------------------------------------------------
 1371:   Sorties :
 1372: --------------------------------------------------------------------------------
 1373:   Effets de bord : néant
 1374: ================================================================================
 1375: */
 1376: 
 1377: void
 1378: traitement_asynchrone_exceptions_gsl(struct_processus *s_etat_processus)
 1379: {
 1380:     if ((*s_etat_processus).var_volatile_exception_gsl != 0)
 1381:     {
 1382:         switch((*s_etat_processus).var_volatile_exception_gsl)
 1383:         {
 1384:             case GSL_EINVAL :
 1385:             {
 1386:                 (*s_etat_processus).erreur_execution = d_ex_argument_invalide;
 1387:                 break;
 1388:             }
 1389: 
 1390:             case GSL_EDOM :
 1391:             {
 1392:                 (*s_etat_processus).exception = d_ep_domaine_definition;
 1393:                 break;
 1394:             }
 1395: 
 1396:             case GSL_ERANGE :
 1397:             {
 1398:                 (*s_etat_processus).exception = d_ep_resultat_indefini;
 1399:                 break;
 1400:             }
 1401: 
 1402:             case GSL_EZERODIV :
 1403:             {
 1404:                 (*s_etat_processus).exception = d_ep_division_par_zero;
 1405:                 break;
 1406:             }
 1407: 
 1408:             case GSL_EUNDRFLW :
 1409:             {
 1410:                 (*s_etat_processus).exception = d_ep_underflow;
 1411:                 break;
 1412:             }
 1413: 
 1414:             case GSL_EOVRFLW :
 1415:             {
 1416:                 (*s_etat_processus).exception = d_ep_overflow;
 1417:                 break;
 1418:             }
 1419: 
 1420:             case GSL_ENOMEM :
 1421:             {
 1422:                 (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1423:                 break;
 1424:             }
 1425: 
 1426:             case GSL_ELOSS :
 1427:             {
 1428:                 (*s_etat_processus).exception = d_ep_perte_precision;
 1429:                 break;
 1430:             }
 1431: 
 1432:             default :
 1433:             {
 1434:                 (*s_etat_processus).erreur_execution =
 1435:                         d_ex_routines_mathematiques;
 1436:                 break;
 1437:             }
 1438:         }
 1439: 
 1440:         (*s_etat_processus).var_volatile_exception_gsl = 0;
 1441:     }
 1442: 
 1443:     return;
 1444: }
 1445: 
 1446: // vim: ts=4

CVSweb interface <joel.bertrand@systella.fr>